ref: d12702bad1f9566710e3eb4b6f50e79bc9bc1e5f
parent: 0117f1320868055b945765fde57bf2462f38e9ff
parent: 5a775ba5c21016d95a63844f21cd9727f7c69677
author: Lennart Augustsson <lennart@augustsson.net>
date: Tue Apr 9 06:53:36 EDT 2024
Merge branch 'master' of github.com:augustss/MicroHs
--- a/Makefile
+++ b/Makefile
@@ -25,12 +25,17 @@
all: bin/mhs bin/cpphs
-newmhs: ghcgen
+targets.conf:
+ echo [default] > targets.conf
+ echo cc = \"$(CC)\" >> targets.conf
+ echo conf = \"$(CONF)\" >> targets.conf
+
+newmhs: ghcgen targets.conf
$(CCEVAL) generated/mhs.c -o bin/mhs
$(CC) $(CCWARNS) -g -Isrc/runtime src/runtime/eval-$(CONF).c $(CCLIBS) generated/mhs.c -o bin/mhsgdb
# Compile mhs from distribution, with C compiler
-bin/mhs: src/runtime/*.c src/runtime/*.h #generated/mhs.c
+bin/mhs: src/runtime/*.c src/runtime/*.h targets.conf #generated/mhs.c
@mkdir -p bin
$(CCEVAL) generated/mhs.c -o bin/mhs
@@ -122,7 +127,7 @@
#
clean:
- rm -rf src/*/*.hi src/*/*.o *.comb *.tmp *~ bin/* a.out $(GHCOUTDIR) tmp/* Tools/*.o Tools/*.hi dist-newstyle generated/*-stage* .mhscache
+ rm -rf src/*/*.hi src/*/*.o *.comb *.tmp *~ bin/* a.out $(GHCOUTDIR) tmp/* Tools/*.o Tools/*.hi dist-newstyle generated/*-stage* .mhscache targets.conf
make clean -f Makefile.emscripten
cd tests; make clean
@@ -133,6 +138,7 @@
mkdir -p $(PREFIX)/lib/mhs/src/runtime
cp -r lib $(PREFIX)/lib/mhs
cp src/runtime/* $(PREFIX)/lib/mhs/src/runtime
+ cp targets.conf $(PREFIX)/lib/mhs/targets.conf
@echo "***"
@echo "*** Installation complete"
@echo "*** Set environment variable MHSDIR to $(PREFIX)/lib/mhs"
@@ -168,5 +174,5 @@
nfibtest: bin/mhs bin/mhseval
bin/mhs -itests Nfib && bin/mhseval
-emscripten: bin/mhs
+emscripten: bin/mhs targets.conf
make test -f Makefile.emscripten
--- a/Makefile.emscripten
+++ b/Makefile.emscripten
@@ -4,43 +4,50 @@
CONF=unix-64
.PHONY: test
-test:
- CC='$(CC)' $(TMHS) Hello -otests/Hello.js && $(NODE) tests/Hello.js > tests/Hello.out && diff tests/Hello.ref tests/Hello.out
- CC='$(CC)' $(TMHS) IOTest -otests/IOTest.js && (echo q | $(NODE) tests/IOTest.js a bb ccc | sed 's/^[0-9]*ms/1ms/' > tests/IOTest.out) && diff tests/IOTest.ref tests/IOTest.out
- CC='$(CC)' $(TMHS) StringTest -otests/StringTest.js && $(NODE) tests/StringTest.js > tests/StringTest.out && diff tests/StringTest.ref tests/StringTest.out
- CC='$(CC)' $(TMHS) ListTest -otests/ListTest.js && $(NODE) tests/ListTest.js > tests/ListTest.out && diff tests/ListTest.ref tests/ListTest.out
- CC='$(CC)' $(TMHS) Fac -otests/Fac.js && $(NODE) tests/Fac.js > tests/Fac.out && diff tests/Fac.ref tests/Fac.out
- CC='$(CC)' $(TMHS) Misc -otests/Misc.js && $(NODE) tests/Misc.js > tests/Misc.out && diff tests/Misc.ref tests/Misc.out
- CC='$(CC)' $(TMHS) Case -otests/Case.js && $(NODE) tests/Case.js > tests/Case.out && diff tests/Case.ref tests/Case.out
- CC='$(CC)' $(TMHS) Arith -otests/Arith.js && $(NODE) tests/Arith.js > tests/Arith.out && diff tests/Arith.ref tests/Arith.out
- CC='$(CC)' $(TMHS) Guard -otests/Guard.js && $(NODE) tests/Guard.js > tests/Guard.out && diff tests/Guard.ref tests/Guard.out
- CC='$(CC)' $(TMHS) Newtype -otests/Newtype.js && $(NODE) tests/Newtype.js > tests/Newtype.out && diff tests/Newtype.ref tests/Newtype.out
- CC='$(CC)' $(TMHS) LitMatch -otests/LitMatch.js && $(NODE) tests/LitMatch.js > tests/LitMatch.out && diff tests/LitMatch.ref tests/LitMatch.out
- CC='$(CC)' $(TMHS) Word -otests/Word.js && $(NODE) tests/Word.js > tests/Word.out && diff tests/Word.ref tests/Word.out
- CC='$(CC)' $(TMHS) Enum -otests/Enum.js && $(NODE) tests/Enum.js > tests/Enum.out && diff tests/Enum.ref tests/Enum.out
- # CC='$(CC)' $(TMHS) Foreign -otests/Foreign.js && $(NODE) tests/Foreign.js > tests/Foreign.out && diff tests/Foreign.ref tests/Foreign.out
- CC='$(CC)' $(TMHS) MutRec -otests/MutRec.js && $(NODE) tests/MutRec.js > tests/MutRec.out && diff tests/MutRec.ref tests/MutRec.out
- CC='$(CC)' $(TMHS) LocalPoly -otests/LocalPoly.js && $(NODE) tests/LocalPoly.js > tests/LocalPoly.out && diff tests/LocalPoly.ref tests/LocalPoly.out
- CC='$(CC)' $(TMHS) Rank2 -otests/Rank2.js && $(NODE) tests/Rank2.js > tests/Rank2.out && diff tests/Rank2.ref tests/Rank2.out
- CC='$(CC)' $(TMHS) Catch -otests/Catch.js && $(NODE) tests/Catch.js | sed 's/tests\/Catch.hs/.\/Catch.hs/' > tests/Catch.out && diff tests/Catch.ref tests/Catch.out
- CC='$(CC)' $(TMHS) FArith -otests/FArith.js && $(NODE) tests/FArith.js > tests/FArith.out && diff tests/FArith.ref tests/FArith.out
- CC='$(CC)' $(TMHS) Infix -otests/Infix.js && $(NODE) tests/Infix.js > tests/Infix.out && diff tests/Infix.ref tests/Infix.out
- CC='$(CC)' $(TMHS) Class -otests/Class.js && $(NODE) tests/Class.js > tests/Class.out && diff tests/Class.ref tests/Class.out
- CC='$(CC)' $(TMHS) Eq -otests/Eq.js && $(NODE) tests/Eq.js > tests/Eq.out && diff tests/Eq.ref tests/Eq.out
- # CC='$(CC)' $(TMHS) Floating -otests/Floating.js && $(NODE) tests/Floating.js > tests/Floating.out && diff tests/Floating.ref tests/Floating.out
- CC='$(CC)' $(TMHS) Default -otests/Default.js && $(NODE) tests/Default.js > tests/Default.out && diff tests/Default.ref tests/Default.out
- CC='$(CC)' $(TMHS) Multi -otests/Multi.js && $(NODE) tests/Multi.js > tests/Multi.out && diff tests/Multi.ref tests/Multi.out
- CC='$(CC)' $(TMHS) Exists -otests/Exists.js && $(NODE) tests/Exists.js > tests/Exists.out && diff tests/Exists.ref tests/Exists.out
- CC='$(CC)' $(TMHS) TypeEq -otests/TypeEq.js && $(NODE) tests/TypeEq.js > tests/TypeEq.out && diff tests/TypeEq.ref tests/TypeEq.out
- CC='$(CC)' $(TMHS) Sieve -otests/Sieve.js && $(NODE) tests/Sieve.js > tests/Sieve.out && diff tests/Sieve.ref tests/Sieve.out
- CC='$(CC)' $(TMHS) Dict -otests/Dict.js && $(NODE) tests/Dict.js > tests/Dict.out && diff tests/Dict.ref tests/Dict.out
- CC='$(CC)' $(TMHS) Symbol -otests/Symbol.js && $(NODE) tests/Symbol.js > tests/Symbol.out && diff tests/Symbol.ref tests/Symbol.out
- CC='$(CC)' $(TMHS) FunDep -otests/FunDep.js && $(NODE) tests/FunDep.js > tests/FunDep.out && diff tests/FunDep.ref tests/FunDep.out
- CC='$(CC)' $(TMHS) TypeLits -otests/TypeLits.js && $(NODE) tests/TypeLits.js > tests/TypeLits.out && diff tests/TypeLits.ref tests/TypeLits.out
- CC='$(CC)' $(TMHS) View -otests/View.js && $(NODE) tests/View.js > tests/View.out && diff tests/View.ref tests/View.out
- CC='$(CC)' $(TMHS) IOArray -otests/IOArray.js && $(NODE) tests/IOArray.js > tests/IOArray.out && diff tests/IOArray.ref tests/IOArray.out
- CC='$(CC)' $(TMHS) ST -otests/ST.js && $(NODE) tests/ST.js > tests/ST.out && diff tests/ST.ref tests/ST.out
- CC='$(CC)' $(TMHS) Info -otests/Info.js && $(NODE) tests/Info.js
+tests/emtarget : targets.conf
+ echo '' >> targets.conf
+ echo [emscripten] >> targets.conf
+ echo cc = \"$(CC)\" >> targets.conf
+ echo conf = \"$(CONF)\" >> targets.conf
+ touch tests/emtarget
+test: tests/emtarget
+ $(TMHS) -temscripten Hello -otests/Hello.js && $(NODE) tests/Hello.js > tests/Hello.out && diff tests/Hello.ref tests/Hello.out
+ $(TMHS) -temscripten IOTest -otests/IOTest.js && (echo q | $(NODE) tests/IOTest.js a bb ccc | sed 's/^[0-9]*ms/1ms/' > tests/IOTest.out) && diff tests/IOTest.ref tests/IOTest.out
+ $(TMHS) -temscripten StringTest -otests/StringTest.js && $(NODE) tests/StringTest.js > tests/StringTest.out && diff tests/StringTest.ref tests/StringTest.out
+ $(TMHS) -temscripten ListTest -otests/ListTest.js && $(NODE) tests/ListTest.js > tests/ListTest.out && diff tests/ListTest.ref tests/ListTest.out
+ $(TMHS) -temscripten Fac -otests/Fac.js && $(NODE) tests/Fac.js > tests/Fac.out && diff tests/Fac.ref tests/Fac.out
+ $(TMHS) -temscripten Misc -otests/Misc.js && $(NODE) tests/Misc.js > tests/Misc.out && diff tests/Misc.ref tests/Misc.out
+ $(TMHS) -temscripten Case -otests/Case.js && $(NODE) tests/Case.js > tests/Case.out && diff tests/Case.ref tests/Case.out
+ $(TMHS) -temscripten Arith -otests/Arith.js && $(NODE) tests/Arith.js > tests/Arith.out && diff tests/Arith.ref tests/Arith.out
+ $(TMHS) -temscripten Guard -otests/Guard.js && $(NODE) tests/Guard.js > tests/Guard.out && diff tests/Guard.ref tests/Guard.out
+ $(TMHS) -temscripten Newtype -otests/Newtype.js && $(NODE) tests/Newtype.js > tests/Newtype.out && diff tests/Newtype.ref tests/Newtype.out
+ $(TMHS) -temscripten LitMatch -otests/LitMatch.js && $(NODE) tests/LitMatch.js > tests/LitMatch.out && diff tests/LitMatch.ref tests/LitMatch.out
+ $(TMHS) -temscripten Word -otests/Word.js && $(NODE) tests/Word.js > tests/Word.out && diff tests/Word.ref tests/Word.out
+ $(TMHS) -temscripten Enum -otests/Enum.js && $(NODE) tests/Enum.js > tests/Enum.out && diff tests/Enum.ref tests/Enum.out
+ # $(TMHS) Foreign -otests/Foreign.js && $(NODE) tests/Foreign.js > tests/Foreign.out && diff tests/Foreign.ref tests/Foreign.out
+ $(TMHS) -temscripten MutRec -otests/MutRec.js && $(NODE) tests/MutRec.js > tests/MutRec.out && diff tests/MutRec.ref tests/MutRec.out
+ $(TMHS) -temscripten LocalPoly -otests/LocalPoly.js && $(NODE) tests/LocalPoly.js > tests/LocalPoly.out && diff tests/LocalPoly.ref tests/LocalPoly.out
+ $(TMHS) -temscripten Rank2 -otests/Rank2.js && $(NODE) tests/Rank2.js > tests/Rank2.out && diff tests/Rank2.ref tests/Rank2.out
+ $(TMHS) -temscripten Catch -otests/Catch.js && $(NODE) tests/Catch.js | sed 's/tests\/Catch.hs/.\/Catch.hs/' > tests/Catch.out && diff tests/Catch.ref tests/Catch.out
+ $(TMHS) -temscripten FArith -otests/FArith.js && $(NODE) tests/FArith.js > tests/FArith.out && diff tests/FArith.ref tests/FArith.out
+ $(TMHS) -temscripten Infix -otests/Infix.js && $(NODE) tests/Infix.js > tests/Infix.out && diff tests/Infix.ref tests/Infix.out
+ $(TMHS) -temscripten Class -otests/Class.js && $(NODE) tests/Class.js > tests/Class.out && diff tests/Class.ref tests/Class.out
+ $(TMHS) -temscripten Eq -otests/Eq.js && $(NODE) tests/Eq.js > tests/Eq.out && diff tests/Eq.ref tests/Eq.out
+ # $(TMHS) Floating -otests/Floating.js && $(NODE) tests/Floating.js > tests/Floating.out && diff tests/Floating.ref tests/Floating.out
+ $(TMHS) -temscripten Default -otests/Default.js && $(NODE) tests/Default.js > tests/Default.out && diff tests/Default.ref tests/Default.out
+ $(TMHS) -temscripten Multi -otests/Multi.js && $(NODE) tests/Multi.js > tests/Multi.out && diff tests/Multi.ref tests/Multi.out
+ $(TMHS) -temscripten Exists -otests/Exists.js && $(NODE) tests/Exists.js > tests/Exists.out && diff tests/Exists.ref tests/Exists.out
+ $(TMHS) -temscripten TypeEq -otests/TypeEq.js && $(NODE) tests/TypeEq.js > tests/TypeEq.out && diff tests/TypeEq.ref tests/TypeEq.out
+ $(TMHS) -temscripten Sieve -otests/Sieve.js && $(NODE) tests/Sieve.js > tests/Sieve.out && diff tests/Sieve.ref tests/Sieve.out
+ $(TMHS) -temscripten Dict -otests/Dict.js && $(NODE) tests/Dict.js > tests/Dict.out && diff tests/Dict.ref tests/Dict.out
+ $(TMHS) -temscripten Symbol -otests/Symbol.js && $(NODE) tests/Symbol.js > tests/Symbol.out && diff tests/Symbol.ref tests/Symbol.out
+ $(TMHS) -temscripten FunDep -otests/FunDep.js && $(NODE) tests/FunDep.js > tests/FunDep.out && diff tests/FunDep.ref tests/FunDep.out
+ $(TMHS) -temscripten TypeLits -otests/TypeLits.js && $(NODE) tests/TypeLits.js > tests/TypeLits.out && diff tests/TypeLits.ref tests/TypeLits.out
+ $(TMHS) -temscripten View -otests/View.js && $(NODE) tests/View.js > tests/View.out && diff tests/View.ref tests/View.out
+ $(TMHS) -temscripten IOArray -otests/IOArray.js && $(NODE) tests/IOArray.js > tests/IOArray.out && diff tests/IOArray.ref tests/IOArray.out
+ $(TMHS) -temscripten ST -otests/ST.js && $(NODE) tests/ST.js > tests/ST.out && diff tests/ST.ref tests/ST.out
+ $(TMHS) -temscripten Info -otests/Info.js && $(NODE) tests/Info.js
+
clean:
- rm -f tests/*.out tests/*.tmp tests/*.js tests/*.wasm
+ rm -f tests/*.out tests/*.tmp tests/*.js tests/*.wasm tests/emtarget
--- a/MicroHs.cabal
+++ b/MicroHs.cabal
@@ -72,6 +72,7 @@
MicroHs.TCMonad
MicroHs.Translate
MicroHs.TypeCheck
+ MicroHs.TargetConfig
Text.ParserComb
System.Console.SimpleReadline
Data.Double
--- a/README.md
+++ b/README.md
@@ -143,6 +143,7 @@
* `-z` compress combinator code generated in the `.c` file
* `-XCPP` run `cpphs` on source files
* `-Dxxx` passed to `cpphs`
+* `-tTARGET` select target
With the `-v` flag the processing time for each module is reported.
E.g.
@@ -213,6 +214,17 @@
* `:kind TYPE` Show kind of `TYPE`
* `expr` Evaluate expression.
* `defn` Add definition (can also be an `import`)
+
+## MHS as a cross compiler
+When `mhs` is built, targets.conf is generated. It will look something like this:
+```ini
+[default]
+cc = "cc"
+conf = "unix-64"
+```
+
+You can add other targets to this file, changing which compiler command is used and which runtime is
+selected and then use the `-t` argument to select which target you would like.
## Files
There is a number of subdirectories:
--- a/generated/mhs.c
+++ b/generated/mhs.c
@@ -1,5 +1,5 @@
static unsigned char data[] = {-122,2,118,55,46,2,48,10,49,2,56,50,48,2,10,65,32,2,95,48,
+122,2,118,55,46,2,48,10,49,2,56,52,56,2,10,65,32,2,95,48,
32,2,95,50,51,2,32,64,95,2,50,48,51,2,32,64,66,224,15,1,
2,49,56,32,2,95,49,48,96,24,2,52,32,95,2,49,53,49,64,4,
32,24,2,79,32,35,2,52,54,32,2,64,75,32,2,64,64,64,32,28,
@@ -18,4214 +18,4283 @@
96,23,2,83,32,95,2,50,51,53,64,41,224,23,10,33,161,129,51,33,
127,33,154,33,54,65,219,2,50,51,57,2,32,64,85,32,94,2,65,32,
64,129,85,65,156,33,146,2,95,49,55,2,50,52,32,96,73,32,2,2,
-80,32,64,96,59,32,21,2,56,54,32,2,64,95,55,2,53,54,32,2,
-95,51,52,2,54,32,102,224,204,0,33,39,2,109,97,110,2,100,45,108,
-2,105,110,101,64,199,2,35,48,32,96,3,32,0,2,75,50,32,34,51,
-64,255,2,55,56,55,192,200,65,30,2,55,57,54,96,14,64,100,98,96,
-66,113,2,64,64,85,2,32,90,32,128,240,64,153,192,250,128,36,128,143,
-32,42,2,49,54,32,160,207,32,137,2,48,57,32,64,18,32,92,2,95,
-49,54,64,24,64,13,2,56,32,64,64,46,2,79,32,64,64,107,65,168,
-225,231,17,2,47,46,109,2,99,97,98,2,97,108,47,2,109,104,115,2,
-45,34,32,129,218,96,140,96,126,2,95,49,49,97,87,64,0,2,58,49,
-56,65,209,35,41,65,43,224,1,9,33,109,33,59,2,50,32,35,67,42,
-2,49,51,54,97,132,2,79,32,79,227,37,2,224,149,5,224,133,2,2,
-108,105,98,96,124,128,243,224,24,1,2,111,117,116,2,46,99,111,2,109,
-98,34,162,184,128,226,224,6,19,96,175,224,13,0,2,54,55,32,224,20,
-6,64,197,33,32,67,239,2,51,49,48,33,100,2,85,32,66,224,1,14,
-2,90,32,64,224,0,2,224,37,15,2,66,32,67,224,39,4,98,65,35,
-150,193,50,32,129,32,108,2,66,32,89,2,32,64,83,132,7,66,103,130,
-88,65,210,64,61,32,13,193,105,99,69,162,229,226,245,0,132,45,227,86,
-25,163,71,224,69,53,2,118,34,32,224,69,58,2,113,34,32,224,69,58,
-2,114,34,32,224,69,58,2,108,34,32,224,69,58,2,67,82,34,224,70,
-60,2,87,34,32,224,70,59,224,69,60,2,84,34,32,224,69,58,2,88,
-67,80,2,80,34,32,224,72,58,2,122,34,32,224,69,58,2,81,34,32,
-197,107,101,38,230,17,3,128,66,64,14,64,98,131,144,192,25,64,10,230,
-103,0,224,10,0,231,170,9,2,49,51,50,37,226,2,52,53,32,228,24,
-3,103,218,224,52,3,231,11,4,128,50,2,49,48,53,224,51,2,64,217,
-96,41,197,212,128,130,197,212,40,107,197,212,165,237,133,202,2,50,57,52,
-64,18,69,72,231,28,0,161,49,224,206,103,2,49,49,32,224,206,18,224,
-200,0,32,89,160,200,224,170,4,224,176,1,229,92,1,224,116,3,224,171,
-26,224,41,1,160,57,229,165,2,165,189,224,75,2,71,69,224,192,4,2,
-54,56,32,224,71,0,225,135,17,71,247,225,135,10,2,51,57,51,225,135,
-11,224,219,127,2,55,51,32,224,219,72,194,6,128,115,194,106,226,94,7,
-32,2,226,94,60,2,56,48,32,226,93,18,105,149,192,198,232,255,3,225,
-212,1,160,49,225,26,8,160,139,138,12,105,160,96,12,233,35,16,2,85,
-110,107,2,110,111,119,2,110,32,102,2,108,97,103,2,58,32,34,137,185,
-233,89,14,40,237,76,42,169,60,233,246,2,228,144,3,170,82,64,63,225,
-99,4,64,20,96,221,32,93,192,218,32,205,192,218,2,54,53,32,224,38,
-16,101,12,224,38,24,108,197,224,38,26,33,17,224,38,17,33,131,192,39,
-108,125,130,62,224,20,1,108,87,224,60,2,224,105,20,224,44,7,224,38,
-14,224,104,1,224,38,18,2,55,50,51,224,77,29,229,89,1,224,38,20,
-228,183,1,2,95,54,50,64,17,64,94,2,54,52,32,160,9,32,33,33,
-236,225,223,0,224,65,0,43,7,224,65,9,98,185,35,110,128,59,37,197,
-2,55,48,32,37,65,226,225,6,74,21,138,53,32,51,234,162,3,2,75,
-32,66,234,126,31,224,38,29,224,35,26,224,32,23,224,29,20,224,26,17,
-224,23,14,224,20,11,224,17,8,224,14,5,224,11,2,228,34,2,131,237,
-235,130,0,224,0,4,65,89,33,147,225,89,3,2,90,32,66,225,89,255,
-225,89,25,225,87,14,65,86,35,83,237,83,15,205,71,225,104,215,225,29,
-8,65,23,35,237,225,23,13,231,195,6,226,125,227,226,70,9,65,41,32,
-17,239,149,17,239,139,0,225,47,192,225,4,7,65,2,38,15,240,152,19,
-240,144,1,225,5,166,224,235,6,64,234,38,254,241,131,23,241,127,3,224,
-240,105,224,179,4,32,177,73,98,242,53,27,242,55,7,224,72,2,64,69,
-242,123,28,224,65,4,224,250,70,224,215,3,64,144,146,159,224,144,18,224,
-140,2,226,118,137,226,89,5,64,207,233,57,6,224,195,2,231,232,255,224,
-14,2,231,208,11,65,68,233,36,6,193,66,225,65,255,233,42,13,233,29,
-12,65,77,137,27,241,160,5,53,239,120,231,248,157,0,248,154,1,54,180,
-50,222,204,52,2,52,49,32,2,95,54,49,236,51,1,143,21,206,188,78,
-208,247,222,18,2,66,117,105,2,108,100,105,2,110,103,32,2,112,97,99,
-2,107,97,103,2,101,32,34,243,26,1,143,115,246,147,2,218,182,248,151,
-1,2,55,57,55,82,113,141,36,239,253,3,79,189,80,193,96,63,175,243,
-176,22,128,8,112,3,224,229,5,192,105,224,231,38,224,233,4,160,84,224,
-238,15,2,87,114,105,2,116,105,110,224,237,8,65,159,143,110,239,231,20,
-2,32,116,111,160,49,32,249,32,142,239,181,5,32,189,122,64,2,49,55,
-51,111,30,192,33,208,99,148,171,112,218,64,206,2,55,57,56,96,229,2,
-51,52,56,154,104,121,213,154,109,224,14,6,160,225,2,49,57,52,184,25,
-78,51,128,99,2,57,53,32,128,143,2,54,53,56,128,143,79,236,96,120,
-162,52,2,54,56,51,143,147,142,187,2,52,49,55,32,77,2,56,52,32,
-64,42,2,51,51,51,130,151,2,56,48,50,160,71,32,99,128,146,130,153,
-138,157,88,156,91,123,64,149,224,198,4,129,111,195,249,128,7,65,74,75,
-237,187,252,160,192,2,51,51,54,116,155,65,181,64,88,137,204,92,232,154,
-168,32,165,65,22,2,50,54,56,64,215,64,128,241,147,4,49,148,148,31,
-2,95,51,54,242,166,1,33,10,194,52,242,31,10,177,198,64,25,242,117,
-3,2,85,32,64,32,8,32,152,96,4,128,127,65,83,128,88,65,11,178,
-87,65,60,129,117,32,144,34,9,32,5,2,55,55,32,64,131,32,22,2,
-53,49,54,64,168,32,28,82,170,224,171,11,2,73,32,64,2,64,35,51,
-163,239,160,93,242,86,36,194,164,2,110,97,109,32,4,2,111,116,32,2,
-111,102,32,2,116,104,101,2,32,102,111,2,114,109,32,64,20,221,29,2,
-58,34,32,129,188,35,44,32,4,80,90,2,53,48,32,228,93,0,170,52,
-34,44,2,57,32,58,128,222,32,15,2,85,32,58,96,17,129,223,237,220,
-22,112,119,64,47,136,157,128,33,254,247,1,2,51,51,52,227,140,2,2,
-55,50,32,128,229,2,50,48,32,34,106,64,137,65,31,2,54,53,54,115,
-14,64,67,160,77,250,250,2,250,235,1,243,254,2,222,49,182,176,96,133,
-64,28,133,35,115,26,188,50,125,177,66,58,2,51,57,57,32,20,179,48,
-129,220,253,169,1,245,124,1,228,119,3,253,252,10,228,121,1,64,207,67,
-106,241,224,28,228,138,35,2,73,110,115,2,116,97,108,62,20,228,141,8,
-243,252,1,228,138,18,2,105,110,32,229,170,0,133,157,133,59,197,162,2,
-95,50,53,65,8,193,87,152,225,160,13,229,146,0,225,8,5,66,33,69,
-99,246,96,2,225,25,0,128,50,225,53,11,64,53,129,240,229,67,0,244,
-243,10,2,52,55,32,246,41,3,246,40,5,194,42,224,87,2,163,207,217,
-158,231,12,28,161,170,2,35,50,32,231,0,34,2,99,114,101,2,97,116,
-101,225,75,1,224,110,7,101,208,225,22,0,64,11,2,51,32,67,83,192,
-32,176,195,237,181,195,64,22,2,53,52,32,225,195,6,226,3,9,225,14,
-4,97,85,160,39,2,50,57,54,99,76,97,140,2,52,49,50,207,13,2,
-52,48,51,96,248,246,82,17,224,79,0,32,43,131,94,96,197,224,87,0,
-180,103,228,113,13,64,63,32,32,224,143,9,32,236,96,110,134,101,67,193,
-98,82,165,216,161,206,100,200,246,201,0,67,213,139,96,70,195,2,90,32,
-90,160,38,64,23,138,51,74,44,35,165,65,62,224,129,4,32,53,128,42,
-165,113,100,203,165,244,64,61,137,35,118,92,2,51,48,32,228,47,2,130,
-219,226,208,0,160,225,127,215,2,51,55,48,159,222,130,149,191,229,64,6,
-64,81,134,219,162,78,194,127,66,69,69,60,2,95,50,52,96,208,224,30,
-15,2,51,53,51,224,30,10,38,199,64,113,227,45,9,34,225,68,49,2,
-50,52,57,224,208,0,135,1,2,67,32,67,96,181,64,47,224,100,0,103,
-8,32,46,66,206,116,172,2,56,56,32,2,64,35,53,78,97,68,219,32,
-88,128,41,36,129,162,123,229,110,0,96,21,98,176,2,49,51,54,128,121,
-35,5,70,199,2,55,57,48,96,236,226,68,25,32,0,71,239,133,113,248,
-128,1,133,57,197,162,253,108,4,167,112,128,140,248,195,20,131,217,161,146,
-2,85,32,95,129,148,97,246,192,9,65,28,134,179,71,152,225,182,0,2,
-55,56,57,129,183,134,191,102,53,252,201,1,200,115,134,154,224,54,0,224,
-141,0,128,87,64,66,32,59,2,94,109,107,2,100,105,114,71,0,65,88,
-32,16,249,203,2,2,115,97,103,2,101,58,32,2,109,104,115,2,32,91,
-45,199,96,2,93,32,91,2,45,45,110,2,117,109,101,2,114,105,99,224,
-19,3,2,118,93,32,2,91,45,113,64,4,2,108,93,32,2,91,45,114,
-64,4,2,67,91,82,2,124,87,93,64,9,94,245,64,7,2,68,100,101,
-2,102,93,32,2,91,45,84,64,4,2,122,93,32,2,91,45,105,2,80,
-65,84,2,72,93,32,2,91,45,111,2,70,73,76,2,69,93,32,2,91,
-45,80,2,80,75,71,64,7,2,81,32,80,96,8,2,77,111,100,2,117,
-108,101,2,78,97,109,2,101,46,46,2,46,93,34,96,248,65,235,140,38,
-226,44,3,235,54,1,226,132,1,2,51,57,32,255,33,2,224,42,1,100,
-4,32,69,65,17,137,6,137,180,229,142,7,229,230,3,160,94,231,30,13,
-76,209,225,102,2,138,255,224,60,0,194,199,229,166,13,104,161,229,163,1,
-229,162,17,2,83,97,118,71,37,2,99,97,99,40,252,101,168,232,233,8,
-32,70,231,135,0,227,177,7,32,132,2,52,51,57,150,155,124,7,227,60,
-7,97,11,75,182,64,183,224,71,1,224,40,0,198,24,32,37,168,248,195,
-104,2,52,50,50,226,99,2,163,28,235,237,0,129,128,227,45,0,236,246,
-15,230,207,24,237,208,10,232,88,19,2,116,111,112,2,32,108,101,2,118,
-101,108,2,32,100,101,2,102,110,115,220,144,64,50,229,83,1,32,252,255,
-111,1,238,120,4,128,161,224,167,43,172,66,228,135,0,144,22,233,17,3,
-254,67,5,81,137,237,111,21,2,61,32,34,253,76,0,2,55,51,55,254,
-108,5,232,218,0,64,184,226,165,2,65,115,64,46,103,7,190,127,226,211,
-4,226,17,2,65,4,229,77,10,239,194,0,225,233,8,236,111,5,227,47,
-11,234,76,26,161,209,234,48,38,2,102,105,110,2,97,108,32,2,112,97,
-115,2,115,32,32,224,0,1,234,51,0,128,136,174,195,64,71,2,54,54,
-52,2,32,35,54,224,87,1,231,80,2,108,174,2,53,32,95,156,107,32,
-0,224,101,1,2,109,115,34,226,23,3,143,250,239,197,0,191,87,96,245,
-74,80,143,234,44,220,76,9,131,197,224,185,10,2,46,99,111,2,109,98,
-34,160,86,132,147,224,60,35,192,57,225,146,6,2,51,56,53,229,183,2,
-37,176,2,99,46,99,224,42,5,68,226,234,196,6,226,208,4,71,51,161,
-0,172,243,235,15,5,199,173,226,11,14,226,36,8,2,50,49,50,224,145,
-2,2,77,72,83,2,67,67,34,242,57,9,224,46,0,237,62,0,2,50,
-48,52,234,156,14,160,208,224,89,6,224,86,2,242,146,5,224,90,15,226,
-82,15,2,117,110,105,2,120,45,34,229,81,2,66,30,2,95,55,55,224,
-116,11,64,206,2,79,78,70,224,121,2,241,218,1,110,43,229,4,1,164,
-247,225,84,1,224,11,11,64,9,227,181,2,235,228,39,229,20,38,2,69,
-120,101,2,99,117,116,39,216,239,42,17,226,5,15,2,51,56,55,241,199,
-0,229,19,6,42,199,227,96,1,226,30,6,228,7,80,2,67,32,99,2,
-111,109,112,2,105,108,97,2,116,105,111,2,110,32,32,228,7,90,238,13,
-7,210,233,106,163,37,105,65,69,227,191,16,2,36,73,78,224,73,2,224,
-66,4,224,59,25,2,79,85,84,244,144,5,142,45,85,48,238,128,2,224,
-236,2,230,74,16,2,45,119,32,2,45,87,97,2,108,108,32,2,45,79,
-51,2,32,45,73,243,248,0,36,128,224,63,27,2,47,115,114,2,99,47,
-114,2,117,110,116,2,105,109,101,244,53,38,224,58,3,2,47,101,118,2,
-97,108,45,230,212,1,239,228,21,2,46,99,32,163,156,224,209,11,33,88,
-2,32,45,108,2,109,32,45,2,111,32,36,225,39,3,248,249,2,2,52,
-48,32,231,47,3,238,159,3,224,11,0,244,168,0,230,217,1,239,199,1,
-2,55,53,56,171,123,233,7,0,64,12,128,68,64,9,105,252,115,63,32,
-81,2,54,56,55,32,86,2,55,52,32,67,25,51,194,226,77,2,2,97,
-105,110,224,160,1,74,203,206,36,129,210,225,124,1,2,50,51,52,132,24,
-238,133,1,226,176,1,78,83,2,85,32,90,206,122,238,203,13,68,247,128,
-32,84,176,64,50,149,69,225,58,2,2,125,34,32,232,68,7,76,77,241,
-45,13,177,48,207,29,241,66,4,232,19,0,224,24,0,224,48,6,224,51,
-10,224,57,3,241,145,2,224,29,18,224,65,3,140,202,248,137,13,224,45,
-5,128,41,224,37,8,231,13,3,211,83,231,211,0,2,95,54,57,68,236,
-140,27,2,67,32,80,32,16,242,237,5,203,180,173,107,169,150,65,100,2,
-75,52,32,129,103,230,238,10,2,55,48,50,70,87,131,182,224,29,4,103,
-162,224,231,8,225,2,2,192,40,248,134,2,102,68,52,88,208,140,224,34,
-2,228,35,1,101,164,96,119,231,170,4,2,55,48,53,244,227,9,64,254,
-65,7,36,11,2,52,48,49,115,226,183,76,192,42,128,144,136,246,150,71,
-224,98,6,230,175,2,139,0,160,23,2,95,54,55,131,57,225,12,15,232,
-169,4,225,53,2,192,168,230,119,1,213,12,224,187,5,193,23,131,129,2,
-49,48,54,197,205,244,167,15,111,126,96,230,166,116,128,236,160,12,151,250,
-227,87,12,81,191,209,161,241,156,3,229,216,5,64,151,34,14,2,50,32,
-90,241,253,2,132,113,98,106,225,84,0,2,82,32,64,33,65,204,133,176,
-212,129,27,235,135,1,128,236,206,170,152,207,229,106,18,2,65,32,34,227,
-216,2,192,144,152,251,226,173,1,217,147,64,21,243,165,20,68,252,243,21,
-6,224,250,3,228,80,2,2,64,92,49,2,48,38,34,193,97,96,89,224,
-79,10,67,53,236,193,10,187,43,235,82,0,129,41,246,251,1,33,161,67,
-118,88,79,211,118,96,4,120,216,227,124,0,192,88,2,80,32,90,224,1,
-0,192,19,133,6,192,13,65,78,32,15,2,52,32,90,192,18,32,13,2,
-51,32,90,224,48,2,211,188,225,194,5,224,88,9,251,179,9,66,214,153,
-200,154,221,56,12,230,18,0,2,55,53,32,32,4,97,129,231,48,19,2,
-78,111,32,46,185,2,105,110,105,104,224,2,102,111,117,2,110,100,32,56,
-243,233,187,0,142,56,100,135,132,3,70,79,148,92,219,41,2,54,57,32,
-102,159,67,68,64,29,148,60,2,75,32,66,33,98,133,155,115,117,154,19,
-64,5,250,123,0,64,65,65,110,96,187,32,7,250,248,10,196,3,228,26,
-1,189,39,33,182,225,28,0,97,173,251,13,6,128,19,131,107,224,99,32,
-230,80,5,248,207,1,176,90,33,204,225,144,3,224,112,4,96,111,192,116,
-228,130,0,99,243,2,49,57,32,241,181,6,195,5,53,104,225,156,19,2,
-35,105,110,2,99,108,117,2,100,101,32,2,92,51,52,162,241,232,200,1,
-226,236,3,64,17,231,167,3,32,147,224,80,12,45,184,2,102,102,105,2,
-46,104,34,240,165,0,72,70,225,119,25,146,185,225,30,10,67,60,252,149,
-22,129,19,225,25,1,226,198,1,160,200,118,129,2,55,55,50,229,99,0,
-224,24,6,101,211,232,180,0,2,79,32,95,224,217,11,57,223,2,116,105,
-99,2,32,115,116,2,114,117,99,2,116,32,102,2,102,105,95,2,101,110,
-116,2,114,121,32,2,116,97,98,2,108,101,91,2,93,32,61,2,32,123,
-34,227,204,0,241,27,5,96,103,117,180,67,58,34,241,133,189,228,134,2,
-224,32,1,87,219,160,32,2,79,32,102,224,125,0,2,123,32,48,2,44,
-48,32,104,233,224,22,3,2,125,59,34,224,17,6,224,159,8,2,42,120,
-102,32,11,96,165,32,163,96,7,96,52,228,186,4,151,247,245,55,2,2,
-110,105,109,2,112,108,101,2,109,101,110,2,116,101,100,2,32,70,70,2,
-73,32,102,57,88,2,117,114,101,225,215,1,2,55,55,55,226,235,32,233,
-112,5,225,222,3,65,202,142,70,226,6,3,218,50,177,152,136,86,195,42,
-161,249,230,129,2,65,250,227,29,4,224,159,93,224,37,12,243,125,4,230,
-2,0,99,84,56,35,46,49,164,203,2,55,56,32,232,15,0,224,213,13,
-224,215,10,227,70,24,195,37,128,30,224,5,0,32,83,32,52,164,87,228,
-94,0,232,172,6,196,250,64,173,2,61,61,32,2,64,35,57,224,38,1,
-170,66,224,169,4,234,112,0,96,19,2,55,56,50,66,185,70,20,2,55,
-53,51,228,170,5,224,11,0,69,188,153,167,65,26,159,202,190,32,103,46,
-222,42,129,58,233,158,1,216,152,97,61,227,157,12,2,100,121,110,2,97,
-109,105,210,49,64,85,88,141,2,55,55,57,32,16,229,79,3,224,87,39,
-2,119,114,97,2,112,112,101,2,114,34,32,224,87,5,122,23,224,87,1,
-225,58,1,224,79,23,132,69,237,221,2,97,25,2,95,53,49,71,4,225,
-4,7,236,35,1,77,224,243,88,22,165,114,64,43,164,252,2,55,56,49,
-124,40,162,105,128,184,64,57,88,52,226,171,1,193,112,255,165,1,227,18,
-2,235,139,0,250,29,1,224,220,7,70,29,233,90,0,193,100,161,16,226,
-92,0,245,104,4,193,38,154,103,149,218,254,70,7,224,148,0,131,87,225,
-97,1,96,85,190,214,250,138,3,225,141,2,224,35,4,224,15,1,187,66,
-236,4,7,169,177,96,17,66,206,225,214,3,236,6,1,232,250,2,232,238,
-20,2,98,97,100,72,222,2,101,105,103,2,110,32,105,2,109,112,111,2,
-114,116,32,242,164,18,67,16,156,57,228,93,6,228,104,3,32,8,100,20,
-64,44,155,73,111,4,64,14,155,60,106,12,32,14,66,237,32,14,230,14,
-3,2,71,69,84,2,82,65,87,230,36,7,32,21,2,84,73,77,2,69,
-77,73,2,76,76,73,224,27,7,2,97,99,111,114,44,224,19,4,2,100,
-100,95,90,219,224,23,11,2,117,116,102,2,56,34,32,224,23,6,2,115,
-105,110,224,19,8,2,116,97,110,224,19,11,2,50,34,32,224,20,5,2,
-99,97,108,2,108,111,99,224,21,8,2,108,111,115,2,101,98,34,224,21,
-7,224,171,9,2,101,120,112,224,18,7,2,102,108,117,2,115,104,98,224,
-21,8,2,111,112,101,224,145,8,2,102,114,101,102,227,224,19,3,2,103,
-101,116,224,60,8,32,19,2,101,110,118,224,21,7,2,105,115,119,2,105,
-110,100,2,111,119,115,224,24,7,2,108,111,103,224,18,8,2,122,55,55,
-224,229,8,2,109,97,108,224,251,10,2,109,100,53,2,65,114,114,2,97,
-121,34,224,23,9,2,66,70,73,225,150,9,32,23,2,83,116,114,59,101,
-224,24,8,2,101,109,99,2,112,121,34,224,21,9,2,109,111,118,224,246,
-8,2,112,117,116,224,246,8,225,215,10,2,115,113,114,2,116,34,32,224,
-19,6,2,121,115,116,2,101,109,34,224,21,6,226,0,10,2,116,109,112,
-37,183,224,122,8,2,117,110,103,225,115,10,2,117,110,108,2,105,110,107,
-224,166,8,2,101,101,107,2,80,116,114,224,22,8,2,111,107,101,224,22,
-14,2,87,111,114,2,100,34,32,224,69,9,224,23,11,66,225,65,169,2,
-95,99,111,2,109,112,114,2,101,115,115,2,111,114,34,224,34,15,2,100,
-101,99,224,36,16,64,95,2,95,117,105,2,110,116,56,224,145,11,224,25,
-14,192,51,2,49,54,34,224,52,15,224,26,10,192,53,2,51,50,34,224,
-53,15,224,26,10,192,53,2,54,52,34,224,53,15,224,26,10,64,53,224,
-212,16,224,211,16,224,210,17,224,209,17,224,208,17,224,207,17,224,206,17,
-224,205,17,36,41,37,179,225,3,13,224,26,13,64,53,224,52,17,224,51,
-17,65,82,225,107,16,224,207,15,224,205,15,224,97,13,2,108,111,110,228,
-3,8,128,98,224,25,12,64,51,224,50,16,224,49,16,2,117,108,108,224,
-102,17,224,103,17,224,104,17,224,51,16,2,102,108,116,224,49,12,224,23,
-10,2,115,105,122,2,101,111,102,225,25,11,160,25,224,100,11,192,26,224,
-27,11,70,44,2,100,105,114,230,150,12,224,23,10,2,114,101,97,2,100,
-100,105,224,46,9,2,95,100,95,228,240,11,2,99,104,100,224,44,9,2,
-109,107,100,128,20,237,170,5,224,0,62,72,47,41,121,40,47,110,121,78,
-129,2,50,51,56,116,106,107,57,32,5,2,56,53,48,234,208,3,238,152,
-0,32,24,192,29,2,54,51,32,49,183,73,87,238,214,0,64,88,42,96,
-104,211,55,134,143,196,44,52,184,92,234,212,1,192,11,236,80,0,176,88,
-114,175,233,184,2,182,136,81,95,184,184,64,98,152,114,233,138,19,2,123,
-32,92,48,213,176,214,218,25,224,48,19,64,46,2,44,32,109,2,104,115,
-95,33,188,2,114,95,34,241,15,4,239,116,2,2,44,34,32,225,66,0,
-242,169,0,224,134,22,224,133,43,224,128,28,147,12,89,122,235,101,1,33,
-191,2,54,48,32,250,139,18,224,223,2,109,7,64,99,2,55,54,55,220,
-196,250,54,2,78,13,64,181,2,55,54,57,96,5,65,128,224,17,5,174,
-12,244,35,16,174,14,233,120,3,139,30,2,38,32,109,2,117,115,116,2,
-32,98,101,2,32,80,116,2,114,47,70,2,117,110,80,135,175,74,238,224,
-181,12,2,40,72,115,128,37,2,41,34,32,213,30,224,40,2,130,52,96,
-5,245,174,10,236,163,4,66,224,66,173,65,64,142,144,2,85,32,66,129,
-5,2,53,57,32,236,110,2,240,13,0,129,90,179,169,148,101,156,243,65,
-104,97,18,248,76,2,64,95,2,54,50,32,96,103,109,108,252,92,30,2,
-59,32,109,33,246,64,15,2,95,85,110,2,105,116,40,2,115,44,32,162,
-3,246,177,11,32,212,91,235,224,212,0,131,64,246,255,16,84,163,246,255,
-6,65,174,2,57,48,32,224,139,12,224,122,0,2,32,95,53,67,238,32,
-201,100,29,2,53,53,55,32,17,2,54,49,32,248,147,8,204,212,224,151,
-6,32,28,100,31,161,114,97,115,140,243,226,71,4,85,58,246,107,20,162,
-71,225,63,19,194,89,2,114,101,116,2,117,114,110,2,32,116,121,2,112,
-101,32,194,99,2,73,79,58,237,137,0,245,82,2,64,141,141,84,252,228,
-6,2,80,114,105,2,109,105,116,2,105,118,101,2,115,46,73,2,79,34,
-32,128,183,141,111,113,15,142,203,241,44,0,64,218,207,89,192,31,242,6,
-0,224,41,4,64,231,239,131,0,209,92,209,7,98,97,239,105,0,125,154,
-192,43,239,201,1,96,139,87,20,174,55,225,16,17,66,78,2,116,111,95,
-240,190,2,244,148,1,2,55,54,54,226,142,22,226,127,36,64,146,134,79,
-182,153,224,148,20,98,227,240,177,0,246,183,5,192,154,255,196,22,224,157,
-1,224,216,6,250,206,2,224,63,19,226,224,2,96,56,227,78,7,64,208,
-134,199,69,31,152,19,112,49,163,233,2,67,32,60,161,247,249,221,0,226,
-13,4,194,6,47,200,96,9,224,36,8,165,106,32,26,208,139,133,136,225,
-250,3,133,112,160,32,148,71,224,30,5,98,200,224,212,1,229,69,3,226,
-203,2,192,18,208,254,224,115,0,113,95,2,95,56,52,35,95,167,227,2,
-50,57,53,129,130,103,175,179,184,227,151,54,2,78,111,116,2,32,97,32,
-2,118,97,108,2,105,100,32,2,67,32,116,35,150,227,139,8,65,109,135,
-210,183,132,230,3,14,227,150,2,2,70,108,111,2,97,116,87,96,71,224,
-42,12,224,31,2,33,220,224,79,25,2,73,110,116,224,76,17,192,28,224,
-73,28,206,73,224,74,13,224,29,0,224,75,17,2,68,97,116,2,97,46,
-87,32,39,96,4,109,69,224,75,17,128,30,224,152,28,2,40,41,34,224,
-74,16,70,113,224,73,22,2,83,121,115,47,215,37,15,2,46,72,97,2,
-110,100,108,152,13,224,115,13,194,113,231,114,2,42,98,150,49,226,40,17,
-2,70,111,114,69,192,2,46,67,46,2,84,121,112,32,175,128,67,66,132,
-249,149,14,2,67,67,104,2,97,114,34,153,45,224,32,13,2,83,67,104,
-224,33,22,2,85,67,104,224,67,23,205,196,224,67,17,224,34,25,194,65,
-224,66,16,224,32,23,2,76,111,110,108,150,224,65,17,224,33,24,33,150,
-2,100,105,102,2,102,34,32,224,236,19,45,5,224,32,21,224,33,24,2,
-76,76,111,224,170,24,224,34,0,236,221,9,68,11,139,87,231,147,17,228,
-232,1,64,45,139,4,224,45,17,224,42,2,201,238,231,147,10,118,31,32,
-25,229,100,8,236,216,0,73,212,224,104,20,131,96,64,41,136,84,230,194,
-21,2,118,111,105,2,100,32,109,235,233,0,233,193,20,230,248,2,46,213,
-2,32,115,41,2,32,123,32,236,32,15,2,59,32,125,236,33,1,74,160,
-233,108,0,2,48,51,54,2,32,64,80,237,142,0,129,6,32,108,2,57,
-48,52,67,151,101,139,203,4,64,60,64,8,96,60,185,52,32,27,2,52,
-50,32,96,6,64,64,108,106,64,9,173,186,2,35,49,50,170,246,42,37,
-160,65,200,20,159,203,2,55,52,54,172,47,42,119,2,50,51,32,96,44,
-2,52,55,32,32,138,96,136,160,21,64,20,106,22,2,53,50,32,92,156,
-154,139,152,152,70,140,192,60,193,51,102,132,38,143,174,86,224,74,3,78,
-174,192,73,238,129,2,224,66,1,129,163,2,55,53,53,171,168,87,108,64,
-15,152,45,232,156,2,2,49,50,32,160,81,106,172,232,118,0,224,23,6,
-32,16,224,157,0,226,208,0,65,15,66,57,2,56,50,49,2,32,58,49,
-96,92,98,134,64,104,33,116,64,18,130,242,80,233,2,67,65,83,117,191,
-2,76,101,110,96,44,130,222,2,94,108,122,54,50,96,16,130,196,2,95,
-55,50,47,41,2,95,55,56,112,35,128,7,32,96,224,236,0,39,215,224,
-11,2,90,62,160,11,107,243,128,11,65,137,162,111,2,55,53,48,65,67,
-65,106,32,14,126,136,97,118,192,230,2,55,53,49,192,19,128,5,64,137,
-131,16,2,94,112,111,117,110,96,156,130,249,2,94,112,101,117,152,96,18,
-130,130,238,158,0,225,250,3,64,180,253,119,0,225,75,2,129,139,32,183,
-157,48,225,82,0,32,78,34,25,162,82,76,211,34,254,89,7,2,95,56,
-49,128,146,64,81,112,213,2,55,32,58,130,90,99,177,2,51,32,58,130,
-124,226,140,1,2,54,49,57,235,1,1,255,246,21,2,117,110,115,38,151,
-63,11,2,99,104,97,2,114,32,100,39,158,255,242,7,96,189,195,186,81,
-77,32,109,192,227,35,24,2,50,48,32,96,210,255,189,9,224,20,6,224,
-105,5,2,42,99,111,2,109,98,101,2,120,112,114,32,108,64,117,128,49,
-33,44,58,248,228,35,19,68,34,192,58,2,108,101,110,32,61,235,200,6,
-64,60,235,40,1,173,163,43,2,67,240,239,72,2,161,112,208,229,177,207,
-2,83,32,85,228,66,0,254,119,4,128,7,130,48,241,217,0,177,206,241,
-205,5,2,95,53,56,174,47,64,95,165,191,2,54,49,56,240,121,1,224,
-161,7,65,201,107,164,32,27,96,80,64,56,197,205,2,75,51,32,2,75,
-52,32,32,2,2,90,32,90,251,191,0,64,32,130,159,32,32,128,26,224,
-1,5,230,122,4,64,45,130,186,32,45,2,50,32,90,224,1,12,230,172,
-6,64,51,206,19,64,1,33,31,219,191,225,37,6,252,222,5,176,84,252,
-242,5,144,91,192,63,128,11,77,244,227,132,0,165,159,32,33,193,35,128,
-130,67,140,128,182,224,181,14,224,183,8,96,53,131,39,71,3,2,80,32,
-67,32,81,139,223,141,68,2,51,48,54,131,118,34,186,93,165,228,5,0,
-93,11,32,59,65,139,160,51,160,14,240,113,10,71,150,224,120,0,33,82,
-131,162,51,4,205,78,126,237,237,78,4,157,214,237,104,11,173,207,255,190,
-0,173,126,66,68,70,58,116,181,96,173,205,48,224,207,4,32,163,131,140,
-224,208,1,255,184,5,168,8,96,101,71,21,224,62,28,2,85,32,83,128,
-144,34,157,32,247,104,39,131,74,110,1,101,52,129,27,2,55,48,51,205,
-36,96,17,64,176,34,57,32,4,64,55,34,165,252,130,3,128,9,243,158,
-0,96,36,160,58,160,140,222,200,191,175,225,44,8,238,52,0,224,220,4,
-96,21,66,37,161,136,224,34,10,96,23,224,34,4,225,75,9,2,53,56,
-55,225,11,7,66,78,165,104,67,195,64,162,33,201,64,21,133,112,97,38,
-38,83,64,26,2,52,51,55,110,103,38,58,40,46,177,48,160,32,35,227,
-129,69,37,47,102,25,224,23,8,2,54,53,53,96,253,64,22,224,24,4,
-78,72,70,61,64,90,54,137,229,80,2,62,160,75,225,2,58,32,98,63,
-155,235,235,0,226,75,2,32,2,133,78,64,147,133,34,34,254,146,218,164,
-189,2,35,50,52,164,174,163,155,224,48,19,68,226,32,218,177,173,224,46,
-37,224,43,34,243,204,2,2,48,55,32,32,4,68,40,160,174,144,23,224,
-27,20,224,26,4,160,20,97,21,225,16,30,2,50,52,32,224,222,89,224,
-193,47,224,190,24,2,49,57,50,231,73,4,224,143,31,224,115,12,166,156,
-32,29,32,76,64,39,66,249,199,51,2,80,32,35,140,87,96,21,134,233,
-203,46,101,195,243,92,1,67,59,66,241,145,110,32,117,204,138,2,49,51,
-50,64,110,96,46,224,28,15,96,208,224,28,3,67,27,163,109,131,167,64,
-48,68,111,192,20,2,49,50,54,164,6,192,183,235,199,0,96,76,231,138,
-24,247,83,3,64,14,231,153,2,69,47,113,204,2,55,51,49,73,121,64,
-128,70,109,235,154,5,32,145,2,50,53,48,70,111,210,68,234,4,5,64,
-31,76,81,172,87,184,152,192,61,64,150,68,81,64,64,2,50,50,53,137,
-108,129,172,234,78,9,119,220,2,51,48,32,68,31,74,64,160,166,181,251,
-32,55,2,57,32,58,128,32,32,15,48,225,2,115,101,114,2,105,97,108,
-46,233,64,22,32,28,106,211,255,235,0,255,233,1,96,30,170,114,32,9,
-2,54,32,58,32,5,133,11,2,114,110,102,36,226,97,247,65,105,232,168,
-2,231,154,14,64,40,250,80,1,192,187,32,4,230,31,3,2,87,101,108,
-32,125,2,101,32,116,2,111,32,105,2,110,116,101,2,114,97,99,78,122,
-2,32,77,105,2,99,114,111,2,72,115,33,228,220,0,237,98,3,2,51,
-51,57,216,188,236,247,6,75,7,2,50,55,50,96,187,133,241,182,129,2,
-51,52,49,64,20,2,48,56,32,97,86,141,129,38,23,203,137,33,122,150,
-194,65,89,2,51,48,57,96,65,96,23,117,188,2,95,54,53,162,9,68,
-39,107,129,33,167,2,75,32,85,169,28,138,43,233,44,1,224,1,9,105,
-32,244,180,3,224,38,27,224,35,26,224,32,23,224,29,20,224,26,17,224,
-23,14,224,20,11,224,17,8,65,58,232,84,0,226,10,1,131,66,225,33,
-17,225,35,8,225,77,253,224,14,5,224,11,2,192,8,79,224,225,106,6,
-177,215,131,115,110,78,57,117,98,205,224,17,1,99,42,69,24,227,144,6,
-84,170,2,32,39,58,2,113,117,105,2,116,39,32,35,149,64,8,2,44,
-32,39,2,58,104,101,2,108,112,39,2,32,102,111,2,114,32,104,32,9,
-246,239,0,224,79,5,46,165,35,127,107,70,2,54,55,52,100,157,224,102,
-14,2,87,65,82,2,78,73,78,2,71,58,32,2,67,111,109,2,112,105,
-108,46,33,2,119,105,116,2,104,32,71,2,72,67,44,2,32,115,111,2,
-32,108,105,50,131,32,20,2,102,117,110,36,16,2,111,110,97,2,108,105,
-116,2,121,46,34,226,96,1,104,191,64,235,164,242,68,7,96,135,2,51,
-48,50,32,249,2,54,55,53,241,152,2,109,156,196,30,134,12,138,231,2,
-54,56,53,138,189,228,9,1,108,165,96,35,224,172,1,2,46,109,104,2,
-115,105,34,248,155,5,2,62,32,34,253,221,0,96,142,141,32,128,153,237,
-9,1,230,214,4,2,35,53,56,232,6,0,225,57,0,100,143,139,86,128,
-213,224,181,4,32,21,79,215,32,101,225,73,15,2,66,121,101,193,141,160,
-64,194,6,211,42,74,171,2,49,54,32,176,119,97,37,132,207,146,61,141,
-216,226,24,24,2,85,110,114,2,101,99,111,2,103,110,105,2,122,101,100,
-79,141,2,109,97,110,183,248,224,87,8,194,156,92,49,239,73,0,252,20,
-0,116,169,78,15,121,185,49,124,133,169,70,61,225,25,6,225,178,4,192,
-12,103,252,240,45,19,2,65,109,98,2,105,103,117,2,111,117,115,192,165,
-217,158,126,32,81,245,112,209,2,51,48,49,253,211,0,224,191,8,236,41,
-0,70,234,206,26,2,53,57,49,200,159,160,61,65,157,97,210,33,110,65,
-166,33,110,248,110,16,67,72,152,98,64,198,32,53,224,118,2,149,172,248,
-171,18,2,99,108,101,171,233,224,61,2,227,221,2,2,57,54,32,32,20,
-198,225,227,152,8,2,51,48,56,128,198,102,218,2,51,52,50,230,217,0,
-230,238,0,2,54,54,56,230,238,1,167,33,32,59,97,15,225,32,11,224,
-170,16,2,114,101,108,2,111,97,100,224,171,5,227,157,5,2,51,53,49,
-129,194,224,22,6,114,97,231,216,3,145,84,231,217,1,138,229,39,255,179,
-102,226,43,10,96,233,224,213,0,224,233,3,225,21,5,229,16,0,225,249,
-11,224,219,16,2,100,101,108,2,101,116,101,210,181,224,126,6,97,133,164,
-77,147,140,238,107,1,98,71,128,26,141,123,226,76,3,159,21,224,163,0,
-224,145,6,224,140,16,92,121,224,138,11,66,148,96,246,224,73,32,2,107,
-105,110,129,176,224,73,10,228,55,11,224,73,17,230,27,0,105,91,228,83,
-14,64,86,105,109,225,126,10,254,176,3,67,90,35,81,249,104,2,131,207,
-2,115,58,92,2,49,48,38,102,162,2,32,32,32,32,0,96,9,170,50,
-96,26,130,131,64,26,160,9,2,109,111,100,2,117,108,101,128,28,99,75,
-96,55,128,9,2,97,108,108,2,32,100,101,2,102,105,110,56,245,2,111,
-110,115,96,35,129,232,2,32,100,32,32,25,128,9,224,32,0,2,40,115,
-41,2,32,100,92,64,36,65,128,2,32,101,32,32,0,2,115,104,111,2,
-119,32,116,64,14,2,111,102,32,2,101,92,49,32,28,65,83,2,32,116,
-32,224,28,7,2,116,92,49,32,28,65,38,128,186,2,116,104,105,2,115,
-32,116,2,101,120,116,64,23,117,26,128,0,2,101,118,97,2,108,117,97,
-32,120,64,19,43,154,32,120,64,33,32,134,2,110,32,32,96,0,43,189,
-39,159,2,112,32,108,2,101,118,101,224,192,3,64,38,33,130,65,63,139,
-184,227,104,10,198,103,227,104,10,34,137,130,207,217,136,229,107,10,45,29,
-76,166,129,171,65,205,142,56,2,80,32,66,227,168,3,64,74,64,7,34,
-10,227,232,11,229,220,21,116,28,108,229,84,114,122,162,64,11,248,135,6,
-66,157,173,135,64,29,32,97,70,69,102,111,224,4,13,224,103,0,101,38,
-246,2,0,2,80,32,79,146,35,128,210,230,189,6,235,223,9,38,183,224,
-13,0,96,25,241,122,0,103,246,116,211,151,240,251,123,2,193,84,161,45,
-244,194,8,64,232,173,44,230,218,15,98,69,230,204,0,128,38,129,20,224,
-53,19,247,47,1,161,210,225,191,4,96,122,140,213,234,5,5,2,95,105,
-116,162,71,203,186,226,71,86,2,54,57,57,226,71,83,121,239,98,71,2,
-54,57,56,226,71,6,239,207,1,226,71,2,192,1,226,59,55,226,45,72,
-64,177,138,247,105,220,2,51,48,53,71,84,101,177,116,232,2,73,32,64,
-64,34,137,255,37,169,2,52,49,48,32,92,96,5,32,23,71,218,108,30,
-226,47,15,133,44,130,51,128,37,2,51,52,57,247,19,9,253,195,2,224,
-49,14,224,33,1,2,41,32,119,2,104,101,114,101,25,2,105,109,112,2,
-111,114,116,2,32,80,114,2,101,108,117,2,100,101,92,224,17,1,2,83,
-121,115,2,116,101,109,2,46,73,79,2,46,80,114,48,11,2,79,114,82,
-2,117,110,92,132,243,2,97,117,108,2,116,32,40,2,73,110,116,2,101,
-103,101,2,114,44,32,2,68,111,117,2,98,108,101,2,44,32,83,124,87,
-2,44,32,40,2,41,41,92,132,245,161,29,72,4,226,177,18,193,124,97,
-208,43,184,66,17,2,51,32,95,2,54,48,57,137,76,210,152,235,133,2,
-98,205,65,236,226,154,12,34,46,232,0,0,72,240,237,224,0,33,238,163,
-30,114,157,156,51,160,110,2,56,51,50,128,11,184,126,229,140,62,170,214,
-224,169,14,64,32,168,105,231,147,0,32,26,128,51,224,103,2,228,42,16,
-76,170,97,90,237,92,17,75,103,63,167,32,4,97,72,34,127,81,176,254,
-72,4,224,47,4,72,75,96,157,255,72,4,224,66,2,224,32,0,241,177,
-12,165,12,2,54,57,32,152,86,35,13,64,49,131,234,226,189,16,91,123,
-33,8,96,216,64,52,237,57,3,65,33,114,223,146,61,249,193,0,2,32,
-73,32,129,152,91,25,131,207,32,143,124,108,161,192,224,24,1,2,80,32,
-75,239,177,4,99,232,64,13,44,249,251,32,1,251,4,1,96,18,64,54,
-217,88,2,48,52,32,240,189,5,149,13,149,223,64,28,193,67,97,240,230,
-53,20,2,114,97,110,2,115,108,97,2,116,101,58,2,32,110,111,2,116,
-32,102,2,111,117,110,2,100,32,34,130,4,155,26,134,27,2,50,56,57,
-212,73,65,67,221,35,190,207,130,164,187,235,128,19,186,188,141,219,32,185,
-196,209,193,142,68,136,67,27,181,140,133,9,131,124,64,78,188,59,251,47,
-6,224,32,19,129,241,165,62,224,32,11,128,192,161,93,250,10,3,192,24,
-32,129,131,149,191,188,250,183,15,2,100,121,110,2,115,121,109,250,181,6,
-2,95,56,54,128,71,250,109,12,96,156,59,68,225,166,19,225,164,22,65,
-160,2,32,112,114,2,105,109,111,2,112,32,34,221,105,36,41,62,178,2,
-95,50,49,109,146,33,155,243,92,0,224,231,10,222,197,32,231,96,226,251,
-172,0,226,162,0,65,190,225,55,8,227,255,0,252,172,11,216,91,224,105,
-5,96,21,80,58,193,19,224,116,2,2,56,50,54,128,19,224,31,3,226,
-176,38,2,58,32,105,38,23,42,249,37,234,207,193,151,184,2,54,50,49,
-228,142,1,223,108,2,32,95,55,72,14,143,219,77,129,97,176,78,127,76,
-70,216,211,96,50,136,206,236,195,6,93,225,196,15,67,171,224,30,9,2,
-55,57,32,128,30,56,94,224,30,11,33,122,96,30,64,4,237,32,16,2,
-67,39,34,161,77,224,67,11,51,63,217,153,224,30,12,192,98,89,201,224,
-98,16,2,83,39,34,166,228,224,67,11,69,174,96,67,68,105,224,197,10,
-32,6,96,30,67,186,224,61,10,192,30,67,125,224,30,10,192,160,67,232,
-224,30,10,193,65,69,38,224,191,16,2,66,39,34,169,20,224,67,11,2,
-57,48,32,128,67,73,73,224,98,10,102,37,32,30,2,82,32,64,224,98,
-17,2,75,50,34,97,169,66,195,224,36,17,2,51,34,32,64,36,67,62,
-224,36,17,2,52,34,32,64,36,69,172,225,244,18,2,66,34,32,165,38,
-224,180,11,66,184,96,180,2,43,32,64,224,30,11,193,85,2,45,32,64,
-224,30,11,192,242,2,42,32,64,224,131,17,2,113,117,111,146,126,64,8,
-224,40,19,2,114,101,109,96,39,32,7,224,38,19,2,117,113,117,160,80,
-96,9,224,42,20,192,82,64,8,224,40,19,2,110,101,103,96,39,32,7,
-224,38,19,212,120,32,7,224,38,19,2,111,114,34,64,37,54,177,224,36,
-18,2,120,111,114,96,37,32,7,224,38,19,2,105,110,118,96,38,32,7,
-224,38,19,2,115,104,108,96,38,32,7,224,38,21,128,116,32,7,224,231,
-20,192,39,64,8,224,79,20,2,117,98,116,91,57,128,84,160,12,224,48,
-19,2,61,61,34,64,42,69,199,224,36,17,2,47,61,34,64,36,2,47,
-61,32,228,139,12,195,135,38,33,224,67,17,2,60,61,34,96,35,224,67,
-14,194,185,2,62,32,64,224,67,17,2,62,61,34,96,35,224,172,20,2,
-117,60,34,98,97,224,141,20,2,117,60,61,160,37,224,75,21,2,62,34,
-32,64,37,224,149,20,2,117,62,61,160,37,224,75,20,2,111,114,100,162,
-133,226,171,20,2,99,104,114,96,38,32,7,224,38,19,2,102,43,34,120,
-133,228,39,10,224,36,2,2,45,34,32,64,36,228,45,10,224,36,2,2,
-42,34,32,64,36,228,51,20,2,102,47,34,96,36,2,47,32,64,224,36,
-18,162,76,32,7,224,75,21,160,38,226,79,11,224,38,2,129,199,2,102,
-60,32,224,36,20,160,75,225,199,21,2,102,62,34,96,37,225,199,20,2,
-102,62,61,160,37,224,75,21,196,155,64,8,224,40,20,83,238,128,41,115,
-248,224,42,19,2,114,101,97,130,29,96,9,228,127,20,2,116,111,102,132,
-128,32,8,228,10,20,2,101,113,34,100,5,2,101,113,32,224,38,21,2,
-117,97,108,192,41,32,10,224,44,19,224,43,1,224,42,24,2,115,99,109,
-149,255,64,8,224,208,20,192,40,64,8,230,142,20,2,110,102,34,102,142,
-2,110,102,32,224,38,18,48,53,2,62,62,61,96,41,128,10,224,44,24,
-224,43,1,224,42,22,2,114,101,116,2,117,114,110,192,46,128,13,224,50,
-22,43,194,2,110,116,34,160,49,96,12,224,48,22,2,115,101,114,2,105,
-97,108,59,90,192,52,224,16,0,224,56,22,2,100,101,115,224,58,7,224,
-18,2,224,117,23,2,116,100,105,224,216,0,96,12,224,48,25,2,111,117,
-116,224,49,2,32,13,224,50,25,2,101,114,114,224,50,2,32,13,224,50,
-22,2,103,101,116,2,65,114,103,2,82,101,102,192,53,224,16,0,225,118,
-23,2,101,114,102,2,111,114,109,2,73,79,34,193,122,192,16,224,113,23,
-2,99,34,32,160,106,2,99,32,64,226,140,18,2,97,105,115,129,103,96,
-9,229,209,20,2,97,116,99,2,104,34,32,69,211,64,9,224,42,19,238,
-107,2,128,10,233,35,21,2,119,67,65,146,248,2,76,101,110,169,46,224,
-18,3,224,60,19,2,112,101,101,2,107,67,65,128,42,96,58,224,16,3,
-224,56,31,192,118,224,19,6,224,62,19,2,116,111,73,163,15,96,9,224,
-42,21,2,80,116,114,160,42,32,9,224,42,21,2,68,98,108,160,42,32,
-9,224,191,20,166,164,32,7,224,38,20,2,110,117,108,128,81,96,9,224,
-42,20,135,138,2,112,43,32,224,36,19,135,138,2,112,45,32,224,36,18,
-2,65,46,97,2,108,108,111,130,129,160,11,224,46,21,2,115,105,122,130,
-132,128,10,224,44,21,230,99,0,128,10,224,44,21,2,119,114,105,188,222,
-160,11,224,46,21,161,84,64,8,119,159,248,214,9,224,0,70,79,189,215,
-170,180,160,184,54,217,12,83,199,249,9,20,101,141,118,91,246,174,3,152,
-18,244,236,9,151,101,224,64,1,57,19,100,93,64,27,151,94,240,199,0,
-152,84,249,135,49,2,58,49,54,64,200,224,110,7,96,108,96,91,119,179,
-2,52,56,57,64,87,128,230,2,53,53,49,64,120,2,51,48,32,117,224,
-88,1,64,43,251,246,0,255,16,1,84,188,223,232,2,57,53,32,255,19,
-0,145,174,183,22,64,59,148,249,2,95,51,49,2,48,32,75,49,207,2,
-75,32,66,152,154,118,27,127,87,81,87,193,141,96,75,224,151,9,2,54,
-52,55,96,6,192,144,145,163,212,51,79,3,213,21,178,88,113,160,85,207,
-209,64,64,53,145,166,96,161,64,52,115,175,153,64,128,61,2,83,32,85,
-85,63,82,241,114,184,48,208,32,5,37,234,225,94,2,87,98,241,148,0,
-121,212,2,83,32,67,116,59,48,161,64,14,2,67,32,79,225,240,0,32,
-177,53,203,255,148,0,178,179,249,248,0,95,195,32,28,54,178,128,34,2,
-35,51,54,242,216,0,224,36,0,32,66,146,104,181,227,114,143,149,16,97,
-33,218,152,97,154,97,131,2,95,53,53,32,24,2,52,56,48,243,165,4,
-247,238,0,192,87,82,214,2,50,57,53,181,0,150,122,194,255,148,89,128,
-7,66,22,225,162,1,97,72,131,49,65,204,2,90,32,95,32,15,225,236,
-0,130,221,83,36,96,94,2,51,48,49,119,120,2,51,53,32,96,30,226,
-224,1,2,54,56,56,186,157,64,24,81,198,214,28,129,198,2,67,32,83,
-49,173,64,39,246,204,4,49,194,116,0,183,168,128,20,224,29,0,66,125,
-180,143,224,35,1,96,95,130,236,2,89,32,66,183,69,150,116,128,100,251,
-22,6,64,46,194,239,251,144,0,162,21,224,105,0,226,39,0,193,58,150,
-65,119,146,245,20,3,65,119,2,54,49,50,32,45,2,48,57,52,192,64,
-152,124,224,42,2,128,186,224,54,0,129,22,160,35,225,2,0,224,130,1,
-161,8,192,178,162,202,251,216,2,64,194,131,118,117,119,150,151,217,6,87,
-150,88,167,32,5,226,87,1,249,124,1,64,34,96,239,217,20,96,117,249,
-71,5,66,89,152,61,185,135,64,109,249,141,2,64,186,194,201,225,186,1,
-64,84,92,140,96,67,32,33,215,122,224,125,7,163,191,129,202,162,4,93,
-114,99,143,130,226,193,11,65,202,181,95,86,41,248,44,0,224,107,4,194,
-220,86,65,60,212,65,36,33,147,118,66,250,65,4,129,55,216,166,249,140,
-0,160,70,64,177,35,85,2,50,51,49,227,162,4,225,88,1,64,166,160,
-27,64,10,64,84,64,79,132,169,217,226,184,239,224,2,0,128,47,252,61,
-0,224,8,0,160,24,224,25,11,152,167,247,126,3,224,29,5,224,61,2,
-224,33,2,224,42,3,224,69,6,224,37,11,224,2,4,231,133,2,224,113,
-16,224,85,10,131,101,224,2,23,224,48,4,225,31,8,224,178,5,224,143,
-9,224,49,30,218,85,250,252,3,224,1,15,224,94,5,225,27,23,224,151,
-16,224,57,5,225,9,24,225,6,5,225,249,16,224,61,15,224,125,9,224,
-65,42,224,68,11,225,40,2,225,3,43,224,134,9,156,181,224,86,2,224,
-145,22,224,151,25,224,1,15,95,133,95,162,135,90,252,251,5,225,220,41,
-225,103,17,224,138,40,232,12,2,224,138,19,227,61,25,224,138,57,229,165,
-0,225,177,15,230,161,3,224,96,9,225,178,36,224,153,37,232,112,1,226,
-209,22,225,32,36,224,131,37,135,224,226,50,47,227,82,15,224,131,37,135,
-252,224,65,33,224,114,11,225,119,36,2,50,55,32,224,244,29,225,129,16,
-224,126,52,231,140,0,224,63,15,224,115,28,224,112,34,203,37,225,226,31,
-226,228,19,224,118,34,228,143,9,224,115,31,224,118,52,227,240,9,227,75,
-14,195,240,224,92,8,225,121,21,229,3,32,227,223,8,227,220,11,228,117,
-28,224,129,5,225,7,30,224,126,7,230,156,1,166,147,225,19,5,225,13,
-16,227,228,9,224,124,25,106,122,232,38,15,231,31,7,136,183,224,14,15,
-224,154,1,232,194,11,225,126,18,227,228,1,224,73,3,64,38,141,21,32,
-39,32,34,76,43,45,12,47,74,64,13,46,159,70,186,32,20,44,57,224,
-19,0,228,48,4,224,129,1,96,67,235,131,1,224,233,0,237,174,0,172,
-219,67,7,237,126,3,224,184,6,235,93,10,234,86,8,225,0,7,78,61,
-46,122,32,57,143,28,2,35,57,49,225,190,9,224,88,11,226,92,2,225,
-102,4,231,51,6,198,22,229,110,3,224,40,12,163,108,224,37,0,224,34,
-10,205,130,145,10,224,25,3,229,248,5,2,73,32,64,224,252,0,65,66,
-64,5,233,80,2,226,27,0,224,220,5,238,29,1,45,58,226,231,16,130,
-65,226,96,3,224,248,1,225,6,3,45,98,172,220,161,171,225,208,3,224,
-74,10,233,238,12,141,198,226,121,6,226,45,7,2,95,50,50,224,193,1,
-226,56,19,243,179,0,144,249,224,107,6,81,217,224,16,21,77,147,227,40,
-6,78,252,46,189,243,50,1,2,92,51,52,2,38,46,47,2,108,105,98,
-2,47,83,121,2,115,116,101,2,109,47,67,2,111,110,115,2,111,108,101,
-2,47,83,105,2,109,112,108,2,101,82,101,2,97,100,108,2,105,110,101,
-2,46,104,115,64,41,2,44,49,54,2,50,58,53,147,149,227,95,11,225,
-124,1,224,240,18,228,69,7,238,134,18,224,43,9,226,216,10,225,237,0,
-230,78,3,172,114,227,55,19,227,185,3,175,242,65,127,96,8,130,214,66,
-80,227,231,6,226,161,1,224,2,0,239,250,13,236,5,6,224,35,2,242,
-250,0,96,41,68,112,2,50,53,32,164,126,226,18,8,96,138,160,5,146,
-232,224,142,2,64,213,129,112,99,94,64,84,111,154,176,180,160,75,180,11,
-211,230,32,113,243,195,1,224,43,4,64,42,64,245,226,120,12,228,191,7,
-241,122,0,224,252,12,230,203,3,224,178,3,243,248,2,128,42,96,151,80,
-188,224,179,5,242,233,2,67,11,242,143,0,196,152,225,7,5,177,83,181,
-25,224,49,3,224,56,1,100,99,164,104,224,6,3,225,161,11,241,192,3,
-192,89,130,28,227,165,26,224,171,2,227,25,1,225,6,8,36,110,225,120,
-3,224,185,9,224,178,5,231,173,7,231,199,4,224,149,2,244,234,0,86,
-81,2,51,55,48,114,209,96,6,225,148,1,231,86,0,228,54,2,226,169,
-13,225,208,8,227,174,8,2,56,50,32,226,184,2,228,241,15,182,148,226,
-163,4,128,253,237,9,0,229,120,2,2,64,64,85,245,5,4,129,67,224,
-248,2,244,36,0,226,125,4,2,85,32,35,228,17,0,227,64,8,226,76,
-3,231,146,6,224,96,12,225,20,2,226,232,10,224,106,2,224,33,2,228,
-10,17,225,60,32,97,207,243,228,10,212,1,225,64,18,224,228,8,231,198,
-4,224,151,5,32,120,228,202,1,224,179,11,226,159,6,118,211,64,24,228,
-172,0,167,191,164,92,161,142,70,250,244,216,0,133,70,226,157,0,128,27,
-225,118,0,163,129,224,63,3,128,249,71,134,224,67,15,2,67,32,80,225,
-189,6,160,70,246,53,3,229,29,3,226,207,16,227,214,8,195,123,131,195,
-165,28,228,228,21,248,197,4,161,233,164,155,100,207,227,139,0,225,178,7,
-228,233,3,216,218,87,195,225,93,0,251,13,12,2,92,56,38,2,32,92,
-56,2,38,34,32,162,225,151,21,137,72,248,220,0,164,130,128,154,2,82,
-32,64,229,172,21,130,6,227,45,7,234,183,12,192,20,226,195,12,174,101,
-231,203,20,98,133,96,31,193,159,132,187,65,209,138,55,134,155,248,126,3,
-250,179,4,32,13,35,148,96,4,215,66,133,0,128,253,33,127,65,75,91,
-153,196,240,167,21,64,143,183,16,2,53,49,52,130,64,199,0,230,87,3,
-98,75,140,28,154,130,151,140,249,229,0,248,127,3,155,107,40,215,96,236,
-32,32,64,20,154,55,232,161,3,32,134,226,128,5,67,137,66,28,97,246,
-44,102,110,40,172,114,2,54,49,32,40,149,96,185,2,95,50,48,2,49,
-32,102,225,250,0,2,103,101,116,2,82,97,119,2,32,102,97,2,105,108,
-101,158,156,129,202,193,201,2,50,53,50,186,162,73,19,32,131,2,94,71,
-69,2,84,82,65,2,87,32,58,128,131,124,113,2,54,55,56,64,15,33,
-147,96,33,2,102,108,117,2,115,104,98,96,17,189,43,2,50,50,51,224,
-204,1,66,207,32,20,225,127,2,155,253,34,169,32,37,34,177,97,105,235,
-212,4,240,109,0,32,242,92,91,193,100,32,54,33,212,130,75,249,59,4,
-64,102,153,200,59,107,2,50,32,65,152,83,2,55,53,32,128,176,60,46,
-64,14,152,98,97,85,64,203,33,143,32,112,157,129,217,87,124,11,64,90,
-32,7,2,80,32,66,131,82,2,50,57,50,160,21,64,7,2,75,32,95,
-97,47,96,66,2,49,56,55,251,13,0,2,55,51,32,253,253,2,32,15,
-129,237,2,54,51,32,32,4,65,242,64,35,129,217,192,88,96,236,254,182,
-17,2,69,120,99,2,101,112,116,2,105,111,110,2,58,32,34,222,169,64,
-85,188,27,98,11,128,201,2,52,52,32,2,95,51,50,35,36,2,51,53,
-48,193,213,224,231,6,32,95,195,89,225,1,7,237,1,2,230,121,2,97,
-11,225,2,5,90,21,128,174,2,51,52,57,224,169,3,43,212,235,202,0,
-169,170,225,78,0,233,169,1,128,69,224,15,1,2,51,54,48,193,27,132,
-36,2,54,54,55,122,123,128,195,97,128,225,107,0,64,23,67,123,2,85,
-32,67,202,135,99,197,251,51,4,192,179,65,16,2,64,95,56,253,179,4,
-224,32,1,64,104,64,74,224,94,7,238,74,5,65,108,253,136,0,255,208,
-1,107,251,127,206,69,49,223,206,32,44,64,82,255,193,3,199,252,255,184,
-0,64,35,131,33,236,97,0,238,128,2,64,73,99,207,2,83,32,73,165,
-30,223,113,192,7,70,209,164,182,234,9,10,251,190,2,228,20,7,2,50,
-55,49,247,218,0,226,123,4,165,238,226,125,12,2,99,111,109,2,98,105,
-110,2,97,116,111,2,114,115,58,2,92,49,48,166,47,63,140,172,192,252,
-20,6,96,222,163,235,224,222,10,128,155,99,65,128,30,226,32,2,97,250,
-2,53,54,32,67,10,2,57,56,32,232,79,8,161,213,190,101,226,190,6,
-32,57,231,49,1,221,145,227,156,4,193,66,192,85,229,72,1,160,126,225,
-56,10,100,91,225,57,0,227,83,0,226,197,1,225,70,35,2,112,105,108,
-2,105,110,103,2,32,117,115,2,101,100,32,2,98,111,111,2,116,32,109,
-2,111,100,117,2,108,101,32,161,81,2,51,48,54,237,97,4,225,28,22,
-237,112,2,226,218,13,135,147,226,216,0,128,186,34,59,205,227,195,232,65,
-14,226,67,39,225,9,5,224,252,24,2,116,111,116,2,97,108,32,47,255,
-2,111,114,116,2,32,116,105,2,109,101,32,64,0,128,247,236,238,0,106,
-19,36,5,121,101,2,95,49,50,64,70,95,121,2,64,64,102,224,72,0,
-2,109,115,34,239,200,7,226,127,3,242,234,1,196,96,136,13,223,12,2,
-51,51,32,224,181,0,2,54,49,56,64,4,98,27,64,120,135,182,210,56,
-66,197,134,74,70,155,2,49,57,52,67,238,159,11,32,9,38,73,39,36,
-2,57,48,32,128,40,134,96,204,165,168,118,97,83,105,125,97,78,38,215,
-2,53,32,95,233,181,4,139,170,32,113,64,67,222,248,226,214,9,97,236,
-175,73,144,86,32,129,104,144,163,65,226,196,3,64,220,113,27,226,6,0,
-226,14,3,226,15,2,195,22,32,67,163,80,2,80,32,75,193,53,130,32,
-236,185,3,246,104,0,113,6,130,51,240,3,0,35,9,32,84,100,87,129,
-42,32,110,172,69,175,89,236,63,0,129,118,32,31,138,41,64,249,135,47,
-39,177,2,51,32,65,161,80,135,30,2,85,32,90,96,1,130,232,64,23,
-134,244,128,136,230,89,18,194,190,2,57,51,32,33,70,2,57,57,32,226,
-157,1,2,52,48,56,226,171,12,2,79,32,35,41,50,163,83,239,129,1,
-2,50,57,53,101,220,102,114,234,117,0,34,75,192,112,105,203,226,250,19,
-2,67,97,110,2,110,111,116,2,32,102,105,2,110,100,32,2,112,97,99,
-2,107,97,103,227,240,8,163,149,227,133,3,231,116,10,2,50,52,57,128,
-54,2,52,48,54,225,16,0,134,152,231,128,2,2,112,107,103,32,93,32,
-26,64,177,66,189,2,52,48,52,72,245,66,69,137,181,32,158,64,15,133,
-162,243,3,2,98,20,2,50,56,49,227,72,2,221,191,206,72,98,148,99,
-39,128,13,182,184,213,38,229,77,38,203,198,229,77,43,132,74,69,77,229,
-60,7,226,28,14,96,94,71,179,69,59,232,176,10,128,54,68,45,2,95,
-52,49,32,106,231,103,1,239,139,9,225,156,3,136,12,35,231,165,98,133,
-166,32,108,229,166,0,204,237,2,53,53,32,245,155,6,225,47,108,2,99,
-97,99,2,104,101,100,230,115,9,233,4,4,205,15,69,52,2,52,49,49,
-100,246,64,89,68,189,32,5,2,49,32,35,252,6,0,66,75,133,40,226,
-4,44,231,82,51,224,212,1,103,77,226,9,56,2,45,98,111,2,111,116,
-34,160,144,130,13,227,230,32,231,207,3,99,239,2,111,117,110,2,100,58,
-32,227,233,8,226,85,36,33,90,216,58,226,86,0,2,53,57,57,230,162,
-1,66,83,99,197,70,18,74,141,2,54,50,52,234,140,1,237,37,4,64,
-174,96,50,134,104,37,110,197,89,64,20,204,179,247,21,4,132,17,69,220,
-2,52,50,50,243,145,5,224,190,3,225,96,0,193,93,32,46,250,196,5,
-179,9,249,117,6,250,55,0,253,189,7,240,67,2,250,182,8,247,45,7,
-164,166,96,83,179,152,226,129,38,235,14,5,226,129,37,2,112,97,114,41,
-204,235,22,3,104,182,2,54,48,57,253,100,8,224,184,4,231,182,8,162,
-171,113,230,160,176,224,169,0,235,6,2,176,148,2,54,49,48,113,154,144,
-131,120,130,167,126,231,10,2,98,178,161,16,224,191,15,194,176,2,97,109,
-101,2,32,100,111,2,101,115,32,66,186,2,97,103,114,2,101,101,32,2,
-119,105,116,2,104,32,102,48,31,96,29,194,201,246,14,1,114,28,98,214,
-231,76,12,65,58,135,76,228,99,2,225,215,11,225,237,14,187,30,226,135,
-17,249,57,13,187,231,250,51,0,232,35,10,97,87,71,213,2,54,49,49,
-193,250,2,54,49,50,227,129,6,2,54,49,51,163,129,224,188,4,254,171,
-9,155,229,224,28,14,187,64,255,104,17,224,223,20,233,118,0,255,86,5,
-254,220,18,255,122,2,224,103,5,255,116,4,103,180,149,13,224,5,33,147,
-23,229,224,41,205,246,227,94,43,2,116,121,112,2,101,32,99,2,104,101,
-99,2,107,101,100,227,100,2,233,158,1,2,54,49,52,67,109,69,44,224,
-53,1,2,45,45,45,2,45,45,92,224,45,0,224,0,3,255,10,7,224,
-2,4,193,57,225,172,14,230,75,4,209,221,237,93,1,226,55,0,108,189,
-172,87,226,56,19,226,60,6,226,33,50,224,2,18,233,199,0,224,186,50,
-224,153,15,224,192,8,224,40,19,224,198,23,224,200,16,225,149,0,224,81,
-7,224,224,3,226,219,1,224,73,4,193,238,255,85,8,192,61,230,96,10,
-225,86,24,226,38,1,228,127,13,165,222,248,99,0,198,157,251,87,6,230,
-175,108,2,100,101,115,2,117,103,97,2,114,101,100,241,201,4,99,68,241,
-193,2,229,97,8,229,82,2,254,61,3,224,5,15,225,45,1,224,218,4,
-244,91,2,222,230,234,24,24,225,181,2,237,224,3,224,21,7,218,243,251,
-20,1,234,51,25,2,100,111,110,205,137,224,153,5,230,221,5,240,102,1,
-224,82,15,2,44,32,34,255,202,1,203,4,151,220,192,58,240,203,2,161,
-242,255,90,2,255,105,6,224,112,25,2,109,115,32,2,40,34,32,238,143,
-1,231,145,2,224,105,10,224,69,15,2,32,43,32,231,211,11,224,65,3,
-224,62,28,229,141,1,224,58,2,79,78,33,197,242,162,1,227,236,8,251,
-159,0,226,84,31,227,38,6,233,47,32,32,26,144,0,128,168,156,115,233,
-51,2,53,151,2,56,32,102,224,215,0,2,73,110,116,2,101,114,97,2,
-99,116,105,2,118,101,34,252,171,0,216,155,226,154,5,227,131,45,2,108,
-111,97,2,100,101,100,237,128,9,225,25,6,235,51,13,163,136,226,233,3,
-227,97,4,252,232,2,64,5,228,114,0,236,87,4,224,18,0,2,54,50,
-55,186,214,229,1,0,221,19,178,242,186,163,42,77,32,13,176,27,242,69,
-11,254,147,8,244,117,5,224,208,1,222,84,192,103,2,85,32,65,244,244,
-8,227,28,8,243,56,0,118,119,82,63,195,42,205,27,224,34,3,224,16,
-26,123,68,2,54,51,48,64,143,2,89,32,66,178,250,210,247,193,15,178,
-183,64,152,79,8,119,181,242,197,0,64,246,212,44,2,95,56,55,107,138,
-77,84,224,204,1,225,137,4,80,14,98,109,2,55,57,50,81,48,87,220,
-242,219,1,128,0,224,137,11,247,245,1,170,77,224,10,4,224,167,4,126,
-202,225,139,0,224,76,9,132,154,194,86,34,41,2,32,61,61,34,205,238,
-153,7,243,175,5,96,211,193,162,32,12,192,177,64,207,178,143,2,49,52,
-56,85,73,76,243,75,47,248,228,0,78,174,114,114,2,52,56,57,67,5,
-35,114,94,136,44,151,32,38,83,108,64,6,206,231,32,27,64,50,147,224,
-72,44,2,49,52,57,96,80,2,53,49,56,96,60,249,243,1,224,185,0,
-124,29,32,172,35,223,64,74,128,100,64,39,227,108,1,2,101,111,102,131,
-104,60,117,2,50,54,54,224,134,1,251,176,2,64,123,219,74,53,86,160,
-121,236,48,1,32,15,236,65,0,64,36,2,52,57,50,254,66,0,194,181,
-125,150,101,248,2,52,57,52,96,149,2,53,48,51,128,238,145,246,254,32,
-0,96,114,83,202,224,231,7,123,83,2,54,52,54,228,75,2,224,176,1,
-129,112,34,194,228,172,5,2,77,97,105,2,110,34,32,32,29,2,79,32,
-95,96,170,2,53,52,48,124,7,224,36,3,2,109,97,105,128,36,160,128,
-64,127,212,13,68,60,225,105,1,2,48,32,102,238,26,6,96,55,225,142,
-5,32,214,170,79,225,40,0,193,213,225,232,3,2,50,55,55,225,244,2,
-34,80,2,35,52,48,129,24,42,102,64,168,98,0,128,24,164,100,160,13,
-242,231,2,224,255,1,34,230,33,65,64,34,245,165,0,228,254,1,224,193,
-13,2,119,104,101,2,114,101,34,231,82,1,225,109,15,229,33,4,225,115,
-4,193,117,241,111,0,64,180,97,55,128,239,224,5,51,62,14,193,29,224,
-10,2,66,235,2,52,57,51,103,76,2,56,53,32,225,70,8,224,223,3,
-2,100,97,116,2,97,34,32,129,56,95,114,130,117,69,121,224,51,4,2,
-51,53,32,39,141,87,58,97,54,64,17,96,226,88,130,224,30,0,2,49,
-50,52,226,159,0,227,40,5,162,231,64,48,67,50,224,184,28,82,3,224,
-184,18,2,110,101,119,77,217,224,187,6,224,181,22,224,107,15,64,23,64,
-163,160,169,64,167,116,175,225,236,3,65,73,238,185,0,226,181,1,131,49,
-38,5,64,5,129,153,132,210,134,132,32,43,68,194,69,221,64,153,129,47,
-153,184,98,162,226,43,7,225,36,1,224,174,18,227,26,10,225,26,3,225,
-23,41,2,53,55,53,161,160,224,103,1,80,188,2,95,53,48,96,188,2,
-49,54,51,224,146,21,70,186,229,163,7,130,33,88,93,227,162,4,226,193,
-0,32,133,224,179,1,2,58,58,34,194,88,96,156,2,56,55,53,32,82,
-198,216,224,161,0,224,117,4,2,51,57,54,225,8,21,139,167,160,88,2,
-54,52,51,198,116,226,124,24,65,53,224,88,4,224,11,15,224,112,6,2,
-102,111,114,2,101,105,103,133,40,224,140,18,224,27,8,2,99,99,97,2,
-108,108,34,192,26,41,234,32,174,114,59,128,15,102,223,225,194,8,225,60,
-11,225,199,0,224,216,13,2,54,52,52,224,245,15,72,156,228,91,4,68,
-219,160,54,32,130,225,92,10,2,110,102,105,2,120,108,34,199,190,225,150,
-2,75,42,224,45,12,2,114,34,32,161,206,224,92,4,224,46,15,204,158,
-64,28,227,89,0,228,186,2,2,105,103,105,97,79,231,209,6,179,115,66,
-176,72,119,86,215,114,172,171,201,33,77,34,219,66,224,248,140,11,40,184,
-192,32,224,33,8,181,143,160,91,32,6,97,151,224,36,0,224,0,0,226,
-251,1,133,29,230,158,2,226,125,16,226,136,15,229,190,22,2,99,108,97,
-2,115,115,34,193,252,149,202,163,244,229,199,18,229,168,1,192,170,226,17,
-17,109,142,130,130,224,137,7,94,110,224,33,6,231,141,7,230,5,13,2,
-54,49,57,66,225,100,91,228,84,19,65,165,227,222,19,2,110,115,116,2,
-97,110,99,228,235,1,164,34,224,94,7,224,83,4,227,193,22,2,100,101,
-102,2,97,117,108,196,51,2,53,50,54,96,219,69,241,96,94,225,205,6,
-227,105,19,225,185,22,229,164,3,93,71,227,225,32,104,109,72,70,155,48,
-159,116,2,35,53,32,32,21,33,177,64,24,217,207,96,24,97,150,160,24,
-153,181,226,130,26,224,211,13,2,51,57,55,228,36,1,227,193,1,122,76,
-70,34,234,47,3,2,83,79,85,2,82,67,69,164,29,226,5,4,220,209,
-224,72,9,2,54,53,32,225,38,8,2,113,117,97,2,108,105,102,2,105,
-101,100,224,74,12,137,121,170,80,197,58,225,116,18,2,97,115,34,193,216,
-229,93,1,64,236,226,255,16,2,48,57,55,231,217,6,224,177,23,2,104,
-105,100,50,25,224,174,21,130,86,106,195,2,54,52,50,226,86,9,65,172,
-155,77,233,239,16,224,166,0,156,99,65,127,129,134,203,33,111,117,235,78,
-31,64,59,235,59,6,226,217,17,162,159,96,95,227,224,13,224,46,4,67,
-197,43,170,64,252,64,215,141,208,78,182,78,42,64,17,141,175,238,166,3,
-64,7,78,137,64,29,141,88,2,90,32,66,64,21,160,50,64,174,173,109,
-230,73,2,105,54,60,196,32,142,128,148,137,162,32,51,146,37,230,33,0,
-128,236,129,142,96,31,2,90,32,95,105,170,2,50,49,57,254,146,2,34,
-208,237,96,7,2,54,51,54,2,32,75,50,38,31,96,233,2,85,32,66,
-38,92,79,192,243,180,0,118,0,240,171,3,111,80,246,73,1,238,3,1,
-113,101,236,56,1,119,4,177,157,96,56,224,16,0,175,168,246,141,3,143,
-165,241,14,3,64,17,172,127,234,79,2,176,117,238,56,3,175,123,240,52,
-2,192,10,210,241,74,184,237,152,1,173,33,2,53,50,48,224,97,0,226,
-69,8,71,193,224,41,0,65,34,243,155,7,167,123,145,67,114,106,162,233,
-144,41,235,37,0,203,27,244,193,3,235,32,5,181,98,64,238,254,153,3,
-242,103,3,225,190,0,141,103,237,179,5,2,54,51,53,226,20,1,237,208,
-7,2,54,50,48,170,152,235,30,3,251,66,1,211,56,243,53,3,193,38,
-224,20,0,236,11,11,115,82,32,58,224,222,0,224,219,23,2,95,55,50,
-211,39,64,201,133,234,104,195,68,8,228,151,14,231,196,17,75,132,100,119,
-64,154,2,54,51,52,245,115,2,224,127,0,64,187,224,54,0,113,236,129,
-191,97,106,246,140,0,196,190,224,78,8,230,63,24,224,77,2,32,7,34,
-144,226,149,2,32,45,75,203,237,112,5,2,54,51,32,237,112,11,225,96,
-11,213,93,2,95,56,48,97,95,239,129,9,128,95,65,75,135,29,239,101,
-34,224,147,4,32,80,225,134,1,97,65,224,224,0,33,180,107,39,237,107,
-12,233,112,1,161,47,225,253,6,39,69,128,171,229,228,20,96,36,130,245,
-64,31,160,51,229,236,1,2,53,56,56,226,21,8,2,54,51,51,193,99,
-118,195,229,157,4,2,53,55,48,237,184,7,230,36,18,96,174,209,37,241,
-115,15,238,68,5,59,165,2,55,52,32,2,64,95,52,105,156,224,105,23,
-2,57,49,32,224,105,27,97,109,230,162,17,2,56,54,54,224,199,19,2,
-54,49,53,129,53,224,139,17,138,217,129,169,224,221,18,2,55,53,52,166,
-10,224,109,10,2,49,50,54,161,127,192,187,224,56,6,134,128,224,57,10,
-97,176,224,56,0,66,179,201,184,225,61,21,2,49,50,51,169,5,106,175,
-226,187,6,231,205,13,133,62,196,32,2,49,48,49,226,63,8,2,53,56,
-57,185,15,226,245,14,2,57,55,54,226,245,15,240,97,1,119,39,226,245,
-9,32,23,200,109,231,200,2,2,54,51,50,235,2,9,2,46,46,34,227,
-204,0,226,18,9,2,49,50,53,163,223,137,55,118,111,64,14,200,110,232,
-62,4,182,33,37,240,2,57,32,58,128,155,132,19,2,54,50,32,164,121,
-64,28,39,255,32,29,32,35,228,49,2,224,231,11,75,113,160,231,227,91,
-3,67,157,64,70,177,58,96,8,64,79,213,55,228,123,21,127,73,64,6,
-174,108,126,236,64,7,162,29,77,195,96,7,32,38,64,85,212,85,225,231,
-14,68,247,192,90,233,158,3,80,233,32,61,163,157,224,24,2,181,90,237,
-28,4,2,111,34,32,238,226,0,148,252,57,210,97,82,64,133,128,212,239,
-170,11,2,81,117,97,2,108,68,111,239,171,10,162,4,143,171,218,153,55,
-102,128,18,248,186,4,192,7,64,59,233,173,2,254,162,13,160,168,192,71,
-200,154,76,121,104,54,2,55,53,54,86,226,33,161,224,63,2,65,201,32,
-22,252,111,6,64,220,198,51,237,34,23,2,55,51,57,238,178,22,152,73,
-227,15,0,238,33,20,2,104,101,110,224,45,18,224,57,5,108,197,233,140,
-2,224,76,7,2,101,108,115,182,198,192,77,64,215,238,16,10,224,204,2,
-97,94,224,160,18,2,108,101,116,238,193,0,130,12,166,105,239,179,20,224,
-210,4,64,132,204,232,229,203,13,121,1,241,1,19,2,97,115,101,225,83,
-33,185,201,224,177,0,137,101,64,133,218,103,233,68,17,104,128,234,36,0,
-70,34,96,56,132,75,235,52,5,67,182,34,107,234,93,6,176,150,97,36,
-233,254,9,41,242,107,2,64,83,132,143,101,104,101,114,235,117,9,248,163,
-14,128,216,237,151,12,32,87,65,208,234,71,4,139,217,160,8,224,249,15,
-242,65,29,100,9,238,199,7,126,237,224,61,0,225,162,1,234,108,6,121,
-150,2,80,32,95,128,168,96,86,224,57,15,64,197,197,63,226,48,12,2,
-57,55,49,224,179,14,93,51,192,178,114,179,231,153,0,231,252,13,162,159,
-69,127,238,5,7,64,167,250,11,6,139,11,136,90,250,40,9,240,150,8,
-245,191,21,206,65,250,79,12,52,204,41,85,96,89,2,57,55,50,167,19,
-98,207,167,170,128,182,165,144,224,182,4,32,217,224,153,5,231,240,11,170,
-48,224,196,7,232,27,18,250,251,18,197,177,141,61,37,114,74,112,32,42,
-96,57,64,146,96,192,159,3,128,196,138,219,224,198,0,235,174,40,230,227,
-8,167,135,144,129,224,24,11,204,192,235,31,60,98,55,235,31,32,139,28,
-235,21,29,2,54,48,55,234,142,1,235,2,22,32,44,248,194,7,235,3,
-5,200,148,249,178,4,191,126,224,173,6,224,96,14,95,56,235,100,19,154,
-222,224,96,6,64,118,225,14,18,130,15,225,111,31,150,120,130,130,236,131,
-21,90,76,62,208,97,63,114,129,230,36,20,2,112,114,105,2,109,105,116,
-2,105,118,101,198,87,153,138,66,141,199,48,232,229,12,2,115,116,114,179,
-249,232,229,6,161,191,216,145,168,136,160,82,134,254,117,171,67,179,74,163,
-64,22,166,143,227,190,3,64,109,239,16,30,37,62,2,51,48,48,209,104,
-127,203,234,167,3,239,33,7,64,112,243,133,1,64,137,97,71,150,54,65,
-232,227,130,3,139,29,232,50,13,105,86,33,29,245,40,7,233,100,5,230,
-59,2,227,38,2,32,106,64,188,224,132,2,96,155,128,132,66,206,243,139,
-8,239,140,4,224,9,21,242,183,12,128,120,242,32,7,64,117,132,174,160,
-59,224,13,20,147,150,237,16,3,197,13,142,242,209,213,141,106,173,113,226,
-190,0,224,147,14,231,40,1,224,94,10,72,138,230,227,12,237,43,8,224,
-70,9,225,145,0,128,70,237,102,19,232,161,9,224,213,2,241,194,9,242,
-81,0,241,15,3,85,65,232,63,52,224,80,6,32,37,241,97,12,224,249,
-21,224,246,3,64,66,130,163,224,245,15,224,243,4,192,240,224,232,3,66,
-141,212,90,34,165,68,77,131,179,64,88,226,189,1,97,100,162,188,230,196,
-11,237,167,14,126,122,255,73,6,195,255,177,237,128,218,224,54,5,121,154,
-235,171,42,224,125,7,227,3,2,64,184,228,239,0,224,178,17,2,56,54,
-53,224,177,8,2,54,48,49,240,6,11,224,188,3,123,158,64,98,248,231,
-5,229,182,2,64,110,2,55,50,48,163,14,134,251,252,41,15,102,86,225,
-52,5,80,210,233,104,14,233,106,1,64,128,229,105,9,97,112,229,105,30,
-64,45,146,1,229,80,6,65,2,225,244,3,224,136,4,2,60,45,34,194,
-252,97,34,2,56,53,57,202,157,64,58,229,113,0,59,43,2,58,49,53,
-64,127,240,159,3,208,95,112,79,64,35,240,159,51,2,53,57,52,192,199,
-112,73,96,86,229,106,8,234,57,8,245,252,4,197,18,247,16,3,247,13,
-17,152,98,2,50,54,56,202,15,225,68,0,235,57,121,97,0,131,199,39,
-196,202,182,2,67,32,60,167,198,2,83,32,83,224,18,4,120,213,231,235,
-4,136,100,64,141,135,235,160,217,224,38,7,224,37,2,90,125,224,37,0,
-80,253,182,197,64,138,164,57,246,131,4,226,156,13,156,83,225,110,10,232,
-140,6,134,95,116,123,64,160,2,85,32,83,224,210,5,68,23,224,48,4,
-133,54,224,48,0,186,251,224,207,11,224,36,10,210,46,125,233,130,24,64,
-214,228,87,5,2,53,51,51,235,5,26,216,116,180,228,224,19,0,96,80,
-201,69,101,122,98,147,101,122,99,86,160,24,255,39,1,172,149,220,99,103,
-78,233,131,0,64,60,101,207,99,31,64,165,231,164,10,160,139,2,53,56,
-32,64,40,66,60,79,87,187,157,185,158,198,189,132,57,141,66,164,205,105,
-254,131,4,102,140,96,24,170,33,64,79,227,209,18,243,144,5,2,101,114,
-105,2,118,105,110,158,109,225,77,0,130,9,150,4,67,22,236,141,7,249,
-229,2,214,0,110,183,227,69,1,240,62,12,2,53,56,55,230,13,15,243,
-23,23,2,49,50,56,132,114,70,10,96,103,206,63,160,15,2,56,53,32,
-250,66,17,224,93,22,253,6,3,96,8,192,111,132,77,2,51,53,57,232,
-176,13,224,142,11,162,91,2,56,48,32,224,15,1,64,249,212,221,251,118,
-11,224,230,1,96,106,197,26,128,60,224,31,6,237,148,13,215,184,230,192,
-4,231,9,3,2,56,32,85,66,88,2,89,32,64,130,198,96,193,253,94,
-4,98,182,2,67,32,80,227,117,0,194,1,242,207,16,231,45,5,153,113,
-167,51,226,45,1,231,64,19,140,90,247,140,17,131,153,65,217,243,88,22,
-2,56,50,32,226,124,0,64,49,244,149,19,224,49,6,33,191,64,49,232,
-67,5,236,118,1,136,154,249,84,1,226,216,6,100,174,64,63,211,252,163,
-64,172,197,131,71,98,11,64,36,167,207,229,138,3,74,223,232,39,33,88,
-139,232,39,8,96,95,224,188,3,225,150,4,227,208,3,130,85,131,161,227,
-196,21,191,74,2,53,54,53,244,10,15,98,241,233,217,22,129,106,2,53,
-55,32,253,235,1,2,53,55,55,253,235,59,96,69,161,62,224,15,0,64,
-148,249,25,5,224,226,3,2,57,54,54,177,177,2,95,54,55,176,90,254,
-214,1,64,224,244,13,13,133,95,160,41,232,72,29,159,161,64,142,228,239,
-0,33,116,64,15,243,82,9,100,65,232,178,6,81,210,205,61,232,129,10,
-243,8,3,32,159,65,2,146,254,64,97,236,40,0,186,136,128,189,2,55,
-51,32,96,29,231,53,0,33,225,64,15,162,246,224,124,4,224,143,9,161,
-185,97,52,244,153,122,98,158,243,210,20,243,186,111,231,44,12,254,218,25,
-96,8,110,35,227,136,4,254,237,33,191,26,243,215,3,65,38,132,111,2,
-83,32,85,33,102,33,23,249,203,2,2,84,117,112,2,108,101,34,203,75,
-99,103,2,90,32,90,64,134,226,187,1,228,85,0,242,169,11,2,108,105,
-116,2,101,114,97,2,108,34,32,72,234,233,255,11,224,18,5,102,91,234,
-67,9,251,182,0,251,91,7,163,26,155,122,224,34,20,179,7,43,86,34,
-83,224,112,1,143,83,224,53,13,2,55,54,48,234,127,16,224,145,20,2,
-56,54,57,231,29,0,33,33,64,13,233,244,0,233,243,0,64,52,192,21,
-65,9,160,21,232,249,5,243,8,4,230,109,1,83,101,225,99,1,2,45,
-62,34,194,155,162,164,224,41,15,2,61,62,34,229,176,3,64,111,253,77,
-0,238,59,10,224,46,1,174,59,2,54,53,56,238,59,0,96,66,224,58,
-16,224,147,1,238,118,0,209,135,64,58,235,149,6,94,248,235,149,31,175,
-159,235,149,5,65,32,97,76,103,35,229,160,0,227,70,3,66,103,137,194,
-102,53,98,3,64,20,32,14,245,68,7,98,116,237,88,2,103,189,216,60,
-2,90,32,75,128,217,2,48,48,48,253,241,2,68,252,135,146,224,125,12,
-137,46,64,169,228,147,5,224,243,17,129,25,235,132,4,2,102,111,114,2,
-97,108,108,225,88,6,2,55,48,52,230,240,2,150,169,199,60,207,149,254,
-107,0,231,162,13,70,90,232,149,4,114,25,203,221,66,203,64,36,163,231,
-232,149,46,69,198,69,3,200,157,232,158,9,64,104,228,72,17,2,76,73,
-100,2,101,110,116,255,216,23,225,222,1,77,29,32,8,35,238,162,19,32,
-32,115,99,107,24,104,15,192,146,37,78,2,52,49,55,191,229,102,4,133,
-132,223,211,227,228,2,150,119,32,0,2,75,50,32,255,242,0,128,189,232,
-81,5,233,217,5,96,110,64,36,227,221,6,2,53,53,32,96,36,114,160,
-96,50,225,0,17,2,85,73,100,225,0,46,32,254,2,52,55,57,192,246,
-224,213,37,131,227,97,211,55,88,180,227,226,179,1,102,138,75,254,226,123,
-1,67,151,98,51,140,25,99,13,224,19,2,64,84,131,253,254,116,1,249,
-152,5,96,145,226,167,4,206,173,87,213,128,56,224,59,1,167,83,226,217,
-14,64,153,222,135,237,81,9,98,171,226,186,1,237,35,4,64,217,255,102,
-1,224,40,14,139,33,252,136,8,224,43,10,134,74,224,83,7,227,75,3,
-97,3,224,151,0,96,224,227,85,2,65,237,45,130,111,246,32,7,225,252,
-0,178,203,38,60,2,90,32,67,97,251,65,145,52,105,34,241,32,251,2,
-35,54,50,248,254,2,128,12,161,153,38,24,65,159,128,180,224,195,7,97,
-59,208,171,2,95,51,51,33,177,40,28,32,52,164,12,64,54,32,27,2,
-75,32,65,98,185,64,22,162,38,2,52,57,48,175,40,96,12,64,113,128,
-13,43,150,32,168,95,123,79,221,159,124,64,33,173,25,32,142,233,171,15,
-233,106,3,82,244,240,167,19,2,109,111,100,2,117,108,101,197,34,129,201,
-235,177,13,33,74,140,119,88,32,64,6,169,27,105,232,233,205,32,164,49,
-252,199,27,96,97,224,96,0,226,174,9,234,85,7,165,45,106,145,65,32,
-228,59,6,92,92,228,96,0,85,119,96,36,231,206,6,2,52,51,32,96,
-67,32,114,64,29,231,177,0,228,96,11,135,178,228,92,19,137,170,39,69,
-100,60,43,129,98,104,101,54,251,119,2,232,4,8,164,108,69,138,224,49,
-13,232,31,5,228,161,0,218,222,178,197,64,48,130,192,224,23,15,129,2,
-168,91,236,152,4,247,101,33,230,167,25,65,83,230,167,18,2,81,73,100,
-229,167,26,193,16,230,155,55,225,11,22,132,254,2,79,32,102,224,159,0,
-2,99,97,115,99,30,224,19,4,2,108,97,115,2,115,34,32,224,20,5,
-2,100,97,116,2,97,34,32,224,19,6,2,101,102,97,2,117,108,116,224,
-22,9,244,28,1,224,23,4,2,111,34,32,224,17,5,2,101,108,115,224,
-125,8,232,213,1,224,21,6,2,101,105,103,2,110,34,32,224,22,5,2,
-105,102,34,224,17,7,2,109,112,111,2,114,116,34,224,21,7,224,57,9,
-2,110,102,105,2,120,34,32,224,20,10,224,123,8,96,21,2,114,34,32,
-224,21,7,2,115,116,97,2,110,99,101,224,23,7,186,240,224,18,3,228,
-133,1,224,21,3,2,110,101,119,2,116,121,112,224,22,8,2,111,102,34,
-224,17,6,2,112,114,105,2,109,105,116,2,105,118,101,224,24,7,2,116,
-104,101,224,215,8,224,82,11,2,119,104,101,2,114,101,34,32,20,253,49,
-1,224,0,7,66,29,133,224,77,208,2,90,32,85,194,221,242,36,6,231,
-152,2,122,250,252,205,13,231,193,8,206,233,244,198,11,107,194,233,27,5,
-255,160,8,101,89,227,101,17,2,83,121,109,2,79,112,101,97,162,234,14,
-52,99,99,139,190,102,88,128,140,227,124,16,2,50,56,32,234,24,40,64,
-82,224,200,17,228,45,36,104,244,224,168,1,228,3,29,64,233,137,2,117,
-194,236,159,14,181,215,236,204,4,32,254,230,249,2,160,77,222,121,226,26,
-4,103,209,70,15,2,53,48,54,225,232,0,104,149,147,159,224,213,6,141,
-79,232,181,4,225,163,0,230,35,4,193,79,205,128,160,131,238,120,6,71,
-229,226,78,1,183,72,71,101,230,6,50,245,68,16,64,95,64,87,2,54,
-32,67,233,104,3,41,137,98,6,82,169,97,155,2,50,57,53,160,136,170,
-130,193,192,2,48,57,57,255,244,3,96,181,105,52,161,123,73,51,200,17,
-129,27,220,243,2,52,57,52,130,134,94,201,64,6,64,35,229,93,4,2,
-109,112,116,2,121,34,32,227,246,0,244,26,0,160,96,112,163,66,73,105,
-120,70,72,248,209,2,122,77,192,21,248,225,0,224,147,1,97,184,208,95,
-90,116,234,236,1,94,216,129,63,224,17,0,137,83,96,17,65,3,178,97,
-169,114,2,48,57,54,140,74,250,148,5,98,69,64,45,242,81,20,2,81,
-83,121,227,251,28,231,97,11,227,238,53,227,103,21,66,92,103,107,40,205,
-79,80,65,131,96,12,2,49,50,52,192,13,244,238,7,224,17,3,159,168,
-128,62,224,48,10,133,105,224,17,3,137,93,96,48,2,56,55,53,32,125,
-224,113,0,233,76,1,229,255,2,64,162,132,138,65,17,159,19,136,113,110,
-28,64,30,132,41,237,227,8,234,255,15,234,248,4,64,63,196,27,2,90,
-32,64,65,40,32,6,224,7,0,112,255,64,35,131,187,70,113,96,24,198,
-118,65,35,227,211,3,36,165,239,25,2,67,225,227,204,7,65,164,177,239,
-110,8,224,9,1,189,13,164,157,65,214,98,101,33,19,2,95,56,32,245,
-111,1,235,225,29,238,212,1,245,168,12,129,44,224,107,0,2,85,32,102,
-225,159,0,2,40,41,34,138,63,224,91,16,236,53,3,224,72,18,2,91,
-93,34,224,72,14,213,215,245,207,2,198,137,65,53,238,252,2,229,244,19,
-165,239,64,49,131,167,239,153,3,96,19,239,92,13,64,52,225,149,8,238,
-197,1,100,123,229,60,1,100,71,68,178,249,161,2,32,68,65,198,134,80,
-228,168,2,85,162,132,226,32,159,98,39,238,81,15,150,147,238,75,3,128,
-85,213,92,98,138,192,4,194,108,78,68,240,71,11,127,59,224,234,12,2,
-49,54,32,231,68,34,224,88,5,109,41,231,72,4,64,106,116,205,238,4,
-10,64,108,241,116,1,231,99,8,128,86,231,100,3,161,55,190,215,2,52,
-48,51,47,175,46,6,33,18,69,15,101,19,231,139,13,191,8,231,139,3,
-230,208,3,196,52,64,210,242,149,18,232,192,39,242,137,10,229,87,21,68,
-9,97,172,102,163,162,221,159,111,91,163,238,69,4,244,232,1,151,142,102,
-176,226,111,6,131,20,160,114,231,28,3,65,92,65,221,64,5,226,125,1,
-193,205,192,2,95,245,218,155,64,237,224,190,2,231,185,3,199,67,231,189,
-22,224,156,3,226,227,40,241,159,0,233,138,78,233,136,4,233,135,10,49,
-120,197,179,2,55,32,85,99,222,64,124,81,226,2,53,48,56,64,80,247,
-88,7,99,103,94,222,34,18,156,138,96,72,64,163,114,77,32,227,64,14,
-131,188,2,80,32,58,96,89,225,174,18,129,35,112,147,160,78,128,40,198,
-117,225,189,5,97,186,192,30,97,185,225,199,77,165,203,65,197,224,22,0,
-225,185,1,194,87,64,220,132,85,129,118,160,23,33,133,224,74,0,64,34,
-132,11,88,135,96,14,131,140,32,165,65,9,2,56,54,32,128,79,135,37,
-64,144,96,43,147,148,64,21,161,58,225,56,4,116,92,225,51,1,234,2,
-2,97,6,128,7,98,0,224,27,0,170,24,129,43,234,14,1,234,6,0,
-185,19,234,64,0,64,125,184,83,139,105,127,169,229,225,6,226,235,12,34,
-233,225,46,4,2,95,49,50,245,3,1,64,124,245,63,1,128,39,232,166,
-3,100,14,96,11,64,128,194,157,192,20,235,13,14,97,122,128,182,190,113,
-161,230,32,152,2,89,32,66,34,134,64,104,64,39,66,63,232,215,3,2,
-89,32,64,225,61,2,67,163,129,30,134,4,242,248,1,64,76,252,33,0,
-189,184,34,68,97,167,235,69,1,66,86,163,167,192,143,180,78,2,48,57,
-51,224,244,0,231,82,4,2,58,49,52,64,20,64,229,87,169,161,144,64,
-21,169,232,134,173,228,215,2,227,33,22,227,21,0,229,10,3,96,24,32,
-121,52,128,2,95,54,49,224,51,7,64,15,224,45,2,128,21,105,116,224,
-47,8,236,103,4,131,68,140,80,164,7,96,189,97,178,64,30,64,5,117,
-48,103,149,96,5,64,34,131,50,2,35,49,48,192,0,36,37,96,40,162,
-234,64,144,33,138,64,20,166,184,2,51,32,66,227,2,12,225,248,6,194,
-139,97,215,64,16,129,248,163,15,129,58,224,225,1,239,47,1,155,217,161,
-171,66,141,137,192,64,128,131,143,68,199,96,90,99,155,35,115,64,14,131,
-29,2,85,32,58,128,146,131,226,2,52,32,75,128,57,42,153,232,160,1,
-193,101,224,13,5,71,242,108,195,104,99,128,85,2,56,56,32,129,6,224,
-39,1,99,201,65,145,96,20,104,32,133,248,2,52,56,52,232,62,1,2,
-51,53,57,160,20,132,163,173,57,160,53,77,179,2,51,53,56,127,251,238,
-89,7,128,57,161,64,33,205,246,7,12,2,65,109,98,2,105,103,117,2,
-111,117,115,108,244,192,46,2,54,49,57,170,22,65,169,35,232,194,242,64,
-201,130,9,68,246,233,115,2,99,33,2,95,51,55,106,152,106,75,224,121,
-23,2,58,92,49,2,48,38,34,224,116,2,224,41,16,2,32,32,102,2,
-111,117,110,2,100,58,32,32,0,160,48,132,31,224,119,0,104,179,97,250,
-64,16,140,79,169,119,237,150,3,2,69,79,70,239,130,4,224,114,7,78,
-17,33,130,128,31,224,145,21,2,101,120,112,2,101,99,116,2,101,100,58,
-160,145,104,243,96,252,2,50,54,49,241,34,1,225,53,1,131,28,55,168,
-183,170,33,254,2,60,32,64,2,35,54,32,72,18,224,18,4,154,83,224,
-18,4,64,149,130,47,224,19,2,135,171,2,75,32,102,224,150,0,2,84,
-82,97,2,119,34,32,96,114,236,164,3,160,246,96,21,2,75,32,66,224,
-215,18,2,123,45,35,160,207,81,65,65,75,224,243,2,2,35,45,125,216,
-51,224,160,8,70,108,224,159,6,66,148,224,158,6,2,73,110,100,170,144,
-160,139,224,27,2,2,66,114,97,149,191,128,27,165,127,225,26,6,142,51,
-224,18,4,67,42,224,121,6,65,246,64,93,67,38,242,9,6,123,235,224,
-23,11,102,234,231,221,0,224,151,1,2,125,32,108,2,97,121,111,2,117,
-116,34,96,143,225,41,2,224,23,4,128,111,99,39,2,95,53,49,44,116,
-2,53,56,52,193,42,224,25,2,224,20,0,225,222,7,224,195,9,64,143,
-224,57,1,38,84,225,52,1,160,18,48,212,224,23,1,193,218,235,122,44,
-226,163,0,229,170,1,165,146,100,192,232,16,1,98,114,224,30,2,75,255,
-174,61,2,56,51,32,124,249,108,224,128,209,96,4,68,186,173,169,100,214,
-96,95,165,197,2,83,32,85,233,204,1,234,50,0,233,239,2,161,36,253,
-52,3,204,255,224,46,30,99,56,230,85,2,128,119,224,39,10,143,161,160,
-85,224,39,17,131,213,196,247,197,133,64,37,172,152,224,82,2,156,225,104,
-158,155,151,199,105,254,6,5,124,31,161,69,69,103,64,29,2,52,49,54,
-162,3,192,236,224,111,25,224,71,0,192,110,254,144,1,224,38,10,236,79,
-0,224,77,2,102,79,2,95,54,53,74,233,251,107,0,2,52,55,51,96,
-48,227,146,0,191,0,2,52,50,50,244,142,0,66,14,69,246,111,57,64,
-200,108,223,66,18,2,95,54,52,192,9,2,49,56,49,2,32,35,50,224,
-235,0,69,16,107,58,167,158,2,51,56,51,227,148,7,160,170,225,152,1,
-252,222,0,161,152,115,35,96,28,64,31,224,28,1,103,78,110,205,225,59,
-31,148,77,193,59,226,6,12,150,33,224,157,0,65,1,32,214,33,230,236,
-242,4,224,51,29,99,72,226,18,5,224,42,14,106,157,128,14,107,208,64,
-8,183,5,2,52,51,49,227,11,0,96,226,97,208,192,254,35,110,128,201,
-224,248,21,232,84,1,193,92,170,124,171,112,32,83,106,47,128,134,231,240,
-1,73,98,98,169,76,217,160,70,228,8,2,194,194,235,42,0,161,164,254,
-160,1,64,9,234,240,0,138,238,234,219,0,233,33,0,201,31,150,37,245,
-28,0,226,39,6,120,87,224,19,6,39,134,192,177,224,51,12,147,231,2,
-52,56,48,228,78,2,247,83,0,179,122,96,219,224,213,20,193,94,226,144,
-1,64,49,224,21,7,33,169,64,115,130,163,228,213,13,102,24,224,132,1,
-223,191,160,29,97,240,240,116,2,227,116,4,210,107,231,212,16,2,85,110,
-114,2,101,99,111,2,103,110,105,2,122,101,100,2,32,105,110,2,112,117,
-116,200,180,230,92,5,99,139,193,242,138,100,32,94,85,4,192,185,131,29,
-216,130,107,94,64,33,64,220,202,126,130,19,242,135,4,2,73,108,108,2,
-101,103,97,2,108,32,67,2,104,97,114,2,32,108,105,2,116,101,114,2,
-97,108,34,129,65,128,218,225,88,6,166,18,210,85,225,141,0,65,131,228,
-186,1,224,162,6,64,6,64,31,129,74,224,81,38,225,253,45,140,125,100,
-184,229,37,0,164,167,237,207,4,244,122,1,96,126,96,72,86,176,198,250,
-251,223,5,128,148,229,87,39,199,106,172,36,238,159,0,165,4,97,45,64,
-91,32,39,80,89,231,117,0,224,195,4,163,12,224,195,5,224,181,3,64,
-32,224,181,6,224,180,72,224,78,0,64,66,250,202,1,128,22,142,4,224,
-32,2,132,150,225,165,18,72,118,141,235,68,114,99,150,240,37,1,86,116,
-229,131,4,147,11,198,12,32,30,198,159,156,154,140,108,34,25,117,33,140,
-229,65,78,64,100,244,187,3,225,81,7,196,252,229,2,0,242,235,3,128,
-15,224,16,0,231,181,14,225,34,0,224,39,2,32,57,119,54,240,56,3,
-240,58,0,224,115,4,129,207,144,65,224,123,2,209,100,231,52,7,200,28,
-228,214,1,107,223,224,153,1,130,238,41,189,232,29,1,224,236,1,240,84,
-6,232,252,1,162,128,226,39,56,65,26,177,200,224,202,1,166,169,65,119,
-192,229,244,130,1,162,203,228,1,1,128,172,139,47,92,232,224,83,3,244,
-108,1,128,75,160,52,224,177,6,238,130,0,224,182,0,224,196,35,227,169,
-7,224,172,2,228,57,14,196,52,128,174,227,120,24,224,96,1,66,156,214,
-142,129,232,168,110,168,16,108,114,253,93,3,239,49,3,2,108,101,116,252,
-219,7,2,119,104,101,2,114,101,34,224,20,6,2,100,111,34,224,17,6,
-2,111,102,34,252,228,3,225,95,1,99,30,128,11,227,146,2,177,198,226,
-174,1,235,214,8,238,85,1,161,47,255,8,0,227,184,6,227,218,2,154,
-157,137,1,232,123,0,227,253,5,227,111,1,249,123,2,224,67,9,130,93,
-235,222,10,228,31,11,88,200,228,31,3,160,149,224,106,96,162,43,65,249,
-146,192,228,146,1,138,22,233,141,9,254,119,0,2,51,55,48,233,105,2,
-255,127,0,234,157,6,113,112,164,149,224,27,0,191,156,88,106,107,232,255,
-33,7,231,53,1,32,49,224,141,2,51,40,108,23,227,104,0,204,153,135,
-230,226,169,3,88,192,90,153,206,60,154,165,237,31,37,234,234,8,232,208,
-0,234,115,1,152,145,234,127,6,235,205,15,143,37,160,204,219,44,32,131,
-41,31,163,195,160,35,192,13,96,138,204,252,246,107,1,225,161,4,237,247,
-11,128,140,224,215,7,206,102,224,215,122,134,21,224,215,24,230,120,0,236,
-254,4,224,146,40,161,254,224,153,19,160,140,224,139,18,187,194,232,15,3,
-100,138,247,0,1,230,64,1,229,147,2,197,146,119,0,173,30,229,146,32,
-241,135,3,161,57,192,25,224,108,19,2,50,52,32,64,76,43,221,64,114,
-222,61,230,6,33,71,219,86,186,236,94,0,99,176,236,51,2,97,43,131,
-88,2,55,54,32,227,190,1,2,92,51,52,2,38,115,114,2,99,47,77,
-2,105,99,114,2,111,72,115,2,47,76,101,2,120,46,104,2,115,92,51,
-2,52,38,44,2,51,52,52,32,89,180,51,246,218,1,226,108,8,224,11,
-2,205,225,166,121,239,241,9,129,134,178,101,51,153,44,166,33,31,35,250,
-2,53,56,51,32,175,2,53,51,57,243,116,0,198,79,225,213,3,252,22,
-4,224,107,2,195,29,241,134,14,161,39,233,191,3,194,38,228,152,3,241,
-56,6,241,217,7,226,184,21,32,0,133,164,129,209,104,44,224,219,12,69,
-128,44,214,224,29,14,130,122,115,130,2,52,57,32,96,101,226,20,3,96,
-30,2,55,52,32,66,217,64,9,224,65,9,90,184,64,55,122,3,136,169,
-224,104,11,168,185,194,105,225,143,1,137,24,232,196,5,225,24,61,224,218,
-22,230,186,8,171,63,232,55,0,244,14,21,165,43,226,6,19,178,115,129,
-160,70,230,225,65,13,224,35,0,225,165,17,224,33,28,129,171,82,250,65,
-171,225,132,13,225,171,41,225,53,1,205,65,127,218,68,3,154,135,64,32,
-121,35,37,65,192,96,32,12,123,35,96,51,64,42,153,232,105,164,65,188,
-2,50,50,50,120,223,67,41,253,115,1,131,109,239,67,4,65,253,241,200,
-1,96,226,2,50,52,53,197,160,133,139,243,250,0,129,32,109,109,64,23,
-99,22,32,214,244,26,2,224,33,25,173,172,130,22,235,242,0,241,113,1,
-92,239,198,3,66,135,33,68,224,78,16,129,71,129,70,66,26,2,50,51,
-50,232,98,3,98,198,128,19,91,39,32,7,224,151,17,224,32,24,224,184,
-2,97,59,243,94,1,2,52,55,53,225,47,1,64,46,198,193,64,83,224,
-189,18,224,32,26,97,218,154,141,225,153,19,64,37,152,15,227,112,1,232,
-143,2,225,90,0,2,50,56,55,128,93,128,159,225,94,19,160,129,225,97,
-3,254,159,3,64,245,33,231,2,85,32,90,192,41,226,83,1,131,36,160,
-117,231,232,1,2,50,51,57,224,48,3,224,100,1,224,144,1,225,133,19,
-225,135,4,224,98,50,65,43,152,219,231,2,1,225,43,11,130,134,225,42,
-47,121,55,248,247,5,225,61,2,224,103,3,68,207,96,86,64,70,224,240,
-11,224,122,39,240,76,2,224,118,9,129,58,32,113,224,97,3,224,254,0,
-200,204,99,195,225,219,7,168,22,196,77,205,171,224,43,6,102,25,224,220,
-0,94,145,224,105,1,224,201,32,249,76,3,224,120,109,192,49,224,95,0,
-240,24,3,109,5,2,49,32,102,233,115,0,2,68,97,116,2,97,46,73,
-2,110,116,101,2,103,114,97,2,108,46,94,2,58,32,110,53,68,2,116,
-105,118,2,101,32,101,2,120,112,111,2,110,101,110,156,122,66,122,242,223,
-0,235,67,1,226,0,3,128,151,192,200,32,13,173,207,224,189,3,160,35,
-224,177,4,224,35,20,98,24,64,124,146,247,32,105,2,50,32,75,166,55,
-144,109,230,98,4,102,170,230,98,2,64,62,64,42,206,158,64,44,64,25,
-2,51,54,32,201,192,188,36,2,80,32,75,248,142,0,209,27,199,237,193,
-194,234,205,13,60,249,95,145,230,71,2,242,149,3,32,94,234,142,2,76,
-2,135,242,210,4,134,70,224,37,5,128,39,194,218,224,160,18,234,243,3,
-136,140,64,72,224,73,3,97,167,236,120,0,192,56,106,99,189,109,246,20,
-1,151,103,192,152,196,9,242,48,0,224,90,1,224,113,4,96,92,224,241,
-7,192,26,129,20,212,130,147,28,233,51,1,225,89,26,80,95,229,62,1,
-224,241,16,225,115,3,224,237,7,225,36,86,169,7,78,25,192,11,2,53,
-56,32,172,48,168,177,226,69,30,205,26,252,253,1,64,103,73,176,183,70,
-224,94,3,224,119,4,224,107,93,96,12,35,78,35,92,141,224,64,19,35,
-90,67,165,64,22,137,243,2,90,32,83,116,250,2,54,48,32,227,211,7,
-99,234,237,48,2,231,237,7,253,57,32,235,86,15,221,37,99,233,231,142,
-3,196,156,254,230,33,224,112,29,2,56,56,32,224,111,100,253,210,1,64,
-112,32,98,224,112,87,185,216,224,111,96,190,136,128,111,34,137,224,111,11,
-248,189,16,192,59,2,83,32,80,224,98,18,246,217,0,224,98,18,233,172,
-1,64,45,224,33,8,66,248,97,136,66,246,140,191,85,109,122,252,77,64,
-32,112,70,210,237,44,7,146,77,2,52,50,53,131,47,139,29,224,56,17,
-135,32,64,25,188,42,192,56,235,48,0,254,115,13,64,102,224,19,7,65,
-198,64,58,170,63,224,115,16,129,66,64,107,224,172,6,135,253,224,229,18,
-129,85,94,133,126,243,224,57,1,250,178,3,213,80,228,100,0,250,80,8,
-166,30,201,248,40,74,2,82,32,95,224,47,1,234,152,1,166,145,229,223,
-0,249,135,2,224,91,8,251,0,2,207,149,145,106,165,228,252,133,0,224,
-57,4,206,115,253,185,5,133,93,224,162,0,113,94,130,215,54,147,163,157,
-108,103,2,53,50,49,133,81,110,247,250,176,2,127,93,34,161,159,9,225,
-68,3,203,7,65,54,249,76,1,232,181,4,149,129,64,119,148,56,231,122,
-81,33,114,231,122,8,231,119,34,231,64,19,66,19,231,63,5,134,104,64,
-247,137,171,64,84,98,108,36,75,174,148,174,49,169,17,141,58,233,195,65,
-88,126,233,195,32,235,208,2,232,91,44,224,150,34,234,90,4,161,82,161,
-79,96,86,231,168,7,246,131,1,224,22,1,64,103,226,50,1,239,163,0,
-33,109,34,87,65,109,2,80,32,79,114,24,67,102,163,108,64,35,249,21,
-0,229,62,3,114,7,224,25,13,150,68,247,113,0,149,163,249,89,1,140,
-53,126,0,2,53,49,53,150,4,224,28,10,220,38,132,186,236,170,1,2,
-44,59,40,2,41,91,93,2,123,125,95,2,96,34,32,238,45,2,219,197,
-227,145,0,107,60,224,88,5,32,75,2,51,53,32,224,35,2,104,187,127,
-94,128,136,248,195,0,227,66,23,248,236,1,193,190,228,102,0,132,142,226,
-58,4,225,253,1,227,137,9,96,27,227,33,7,235,84,5,190,69,96,26,
-248,40,1,192,250,252,110,3,255,206,20,231,16,4,164,234,193,0,246,117,
-2,227,69,16,235,65,73,248,116,0,160,162,224,220,5,248,112,2,2,53,
-53,32,235,111,5,220,124,133,69,247,63,3,162,212,228,17,23,235,214,29,
-224,94,2,252,179,1,32,142,138,189,231,118,12,2,57,53,32,231,118,8,
-213,128,224,155,3,225,106,20,236,117,31,230,71,1,184,68,224,99,2,192,
-25,96,54,2,67,32,79,164,64,212,119,132,19,227,100,15,2,33,64,35,
-2,36,37,38,2,63,43,46,2,47,60,61,2,62,63,92,2,57,50,38,
-2,94,124,58,2,45,126,34,135,6,130,111,226,69,3,225,13,15,151,112,
-224,20,6,76,56,238,243,4,231,87,3,207,27,225,29,57,194,55,163,23,
-189,221,229,119,2,199,238,99,63,233,69,15,225,206,10,215,215,232,115,3,
-228,2,100,226,1,2,224,228,0,64,165,193,227,194,184,237,199,0,246,253,
-0,2,89,32,66,161,80,247,83,3,224,119,2,96,113,131,147,227,139,2,
-64,54,225,245,1,228,98,10,232,132,0,96,117,38,176,64,16,226,111,2,
-225,210,23,239,157,75,228,75,5,160,190,96,199,236,155,14,2,57,50,32,
-97,70,224,229,17,165,41,128,229,252,177,2,35,31,2,38,34,32,224,237,
-1,226,209,0,236,213,6,151,220,136,177,224,32,0,135,4,225,155,3,212,
-4,252,74,28,128,84,239,191,6,224,155,11,252,15,3,100,214,140,189,233,
-220,1,64,16,217,193,224,144,20,193,165,131,64,225,148,1,167,20,225,55,
-9,202,249,227,119,9,68,183,52,34,136,243,72,233,64,43,226,174,0,226,
-154,9,198,48,168,126,129,229,224,54,5,224,233,3,224,210,0,72,228,144,
-152,195,20,232,187,12,97,76,229,59,21,228,182,0,226,201,4,228,191,0,
-160,172,2,85,32,35,193,152,149,239,236,238,1,172,160,225,67,1,190,154,
-229,136,12,2,97,98,102,2,110,114,116,2,118,92,57,2,50,38,92,63,
-1,2,39,34,32,237,30,1,226,200,17,131,141,229,164,11,2,49,51,55,
-96,108,89,72,77,164,65,28,2,35,54,52,129,76,33,33,224,19,0,102,
-199,225,11,8,2,66,32,79,32,216,128,46,228,109,0,225,119,0,253,20,
-1,253,17,14,240,183,1,227,217,1,78,71,241,186,8,162,26,233,156,6,
-231,235,16,231,5,0,32,82,33,121,128,68,192,41,110,136,160,43,224,42,
-9,96,145,192,42,110,237,231,66,30,123,75,230,119,9,66,104,188,202,232,
-49,1,106,118,128,180,64,31,219,15,229,141,9,227,32,7,32,98,165,15,
-111,23,224,10,4,227,28,4,236,4,0,225,39,15,64,119,144,48,2,80,
-32,58,119,44,218,65,132,140,132,15,93,115,248,25,5,2,114,101,97,2,
-100,58,32,2,102,97,105,2,108,101,100,130,124,35,89,64,64,176,9,224,
-64,2,244,9,4,32,78,81,18,32,20,223,144,107,212,128,3,132,76,96,
-46,97,126,2,49,54,56,64,166,66,5,96,52,224,11,5,64,109,144,61,
-227,70,2,226,64,1,229,66,0,2,95,54,53,32,29,60,109,228,253,2,
-35,51,2,46,47,108,2,105,98,47,2,84,101,120,2,116,47,82,32,204,
-2,47,76,101,2,120,46,104,2,115,92,51,2,52,38,44,2,54,57,58,
-2,49,34,32,228,252,0,64,139,64,108,143,115,109,32,64,14,142,138,32,
-32,59,81,2,95,53,54,138,3,161,203,81,81,181,4,125,167,249,101,1,
-64,28,196,113,64,11,130,20,109,151,64,14,194,3,66,1,2,35,52,32,
-32,129,33,194,64,24,129,164,199,253,176,11,134,243,129,230,64,36,129,189,
-160,34,99,83,160,61,129,149,160,24,100,128,160,24,241,126,3,103,91,251,
-51,8,224,10,0,247,210,8,252,1,0,233,160,3,33,3,80,209,64,8,
-37,131,238,174,2,225,125,1,2,85,110,109,2,97,116,99,2,104,101,100,
-2,32,34,32,232,161,7,241,204,1,194,201,226,251,0,177,126,241,181,1,
-229,168,15,224,62,10,128,59,241,215,3,223,158,233,194,3,232,90,8,162,
-165,32,211,82,192,187,37,64,15,195,214,201,180,237,251,3,97,9,64,56,
-2,95,51,54,108,191,224,64,7,230,45,0,252,205,2,224,214,0,46,155,
-249,251,3,238,197,0,234,78,1,242,187,6,229,40,5,136,139,224,36,6,
-227,135,0,175,88,242,231,1,209,168,234,162,5,249,74,2,239,67,3,224,
-82,4,243,49,0,225,102,4,226,19,1,224,165,7,240,16,10,241,230,1,
-224,67,48,181,61,224,41,3,224,60,1,224,57,21,245,205,0,241,204,3,
-230,170,1,225,145,2,226,102,10,244,9,6,233,128,19,132,229,226,4,10,
-130,35,32,20,201,92,224,16,0,129,195,226,124,12,227,243,1,166,125,163,
-111,227,93,1,2,66,97,100,2,32,115,116,2,114,105,110,2,103,32,103,
-2,97,112,34,232,252,2,224,80,6,234,32,0,128,81,68,188,129,77,227,
-3,6,83,107,96,255,96,54,226,255,5,132,118,133,24,69,133,2,67,32,
-80,54,37,69,10,40,60,36,244,33,100,244,187,3,232,235,3,164,100,232,
-11,9,96,42,224,33,18,2,57,55,32,224,32,22,203,143,224,99,16,94,
-153,224,133,22,245,62,0,224,33,16,129,12,224,33,19,224,135,24,136,213,
-224,67,20,97,246,233,213,51,233,190,2,233,209,19,98,84,132,189,37,187,
-2,50,53,50,159,159,2,49,48,53,161,199,66,0,64,78,64,5,128,72,
-71,90,225,229,5,245,184,2,175,61,162,57,33,9,251,215,14,234,242,1,
-164,82,239,61,11,116,42,192,23,2,95,56,52,32,147,140,25,229,211,0,
-201,187,32,7,230,78,2,64,228,225,132,2,66,157,224,179,8,249,213,1,
-238,109,5,244,167,0,224,111,4,224,99,8,224,98,27,225,22,1,128,86,
-224,35,11,230,26,0,96,81,2,57,32,35,67,7,67,54,215,246,160,22,
-32,107,64,43,227,80,0,128,43,164,32,160,21,99,133,66,57,224,100,16,
-96,33,86,78,224,32,20,69,35,224,33,22,72,219,224,33,20,228,11,10,
-224,32,5,66,83,224,99,21,32,212,224,33,15,68,125,137,135,102,187,232,
-49,4,229,196,4,230,175,0,224,16,1,229,227,6,150,98,99,92,172,27,
-241,202,18,230,100,1,250,141,1,250,48,2,226,64,0,45,190,42,28,89,
-173,248,59,12,64,115,229,150,1,58,42,163,106,192,223,142,57,224,23,1,
-142,15,224,13,0,219,140,233,49,0,227,41,0,66,96,99,195,129,35,79,
-6,33,35,151,198,233,145,10,2,78,85,76,102,40,98,63,224,37,16,2,
-83,79,72,128,37,64,157,224,37,17,2,84,88,34,96,37,64,125,224,37,
-16,2,69,84,88,128,37,64,200,224,37,17,2,79,84,34,96,37,68,110,
-224,37,17,2,78,81,34,96,37,65,7,224,37,16,2,65,67,75,128,37,
-69,183,224,37,16,2,66,69,76,128,37,69,27,224,37,17,2,83,34,32,
-64,36,67,248,224,36,16,2,72,84,34,96,36,144,193,224,36,14,2,76,
-70,34,129,82,225,121,20,2,86,84,34,128,37,225,121,20,2,70,70,34,
-128,37,225,121,20,2,67,82,34,128,37,225,121,20,2,83,79,34,128,37,
-225,121,20,2,83,73,34,128,37,225,121,20,2,68,76,69,160,38,225,122,
-20,2,68,67,49,160,38,225,123,20,2,68,67,50,160,38,225,125,20,2,
-68,67,51,160,38,225,127,20,2,68,67,52,162,173,225,128,20,2,78,65,
-75,160,38,226,251,21,2,89,78,34,128,38,226,252,22,2,66,34,32,96,
-38,225,131,20,2,67,65,78,160,38,226,254,21,2,77,34,32,96,37,225,
-132,20,2,83,85,66,160,38,225,132,20,2,69,83,67,160,38,225,132,20,
-2,70,83,34,128,37,225,131,20,2,71,83,34,128,37,225,130,20,2,82,
-83,34,132,9,225,129,20,2,85,83,34,128,37,225,128,21,2,80,34,32,
-96,37,225,127,20,2,68,69,76,195,41,64,229,244,32,4,224,0,14,69,
-68,143,182,2,95,52,56,169,122,70,40,102,145,2,52,51,52,113,206,144,
-2,177,212,95,143,2,95,53,57,233,104,0,2,95,54,48,224,11,0,64,
-77,143,248,2,62,61,32,64,12,143,246,2,62,32,58,128,62,32,11,2,
-60,32,58,128,87,32,11,2,105,99,109,2,112,32,58,128,109,144,85,244,
-20,12,93,0,2,44,123,125,2,96,59,34,160,98,207,220,186,5,230,216,
-0,242,75,1,244,154,2,175,188,66,107,64,6,102,115,71,105,156,37,219,
-114,102,120,142,234,50,197,236,21,1,138,43,230,168,0,32,6,236,98,2,
-64,139,172,35,251,46,2,138,19,128,14,234,173,1,65,69,139,226,117,198,
-104,238,139,174,224,35,6,2,55,48,32,224,35,2,96,13,128,105,200,15,
-224,245,1,147,191,224,245,35,175,69,224,244,54,66,247,160,244,224,184,2,
-115,123,224,184,0,121,166,64,43,130,93,224,182,0,250,121,16,192,61,224,
-19,3,174,143,224,225,35,237,253,2,224,225,51,130,197,64,38,2,53,53,
-52,248,191,1,232,184,1,115,24,232,184,0,160,13,76,98,2,53,50,48,
-64,34,64,186,232,195,0,238,43,1,64,91,131,20,81,16,225,65,21,110,
-15,224,38,10,226,69,13,187,213,224,39,2,52,31,226,73,8,244,238,6,
-2,100,105,103,2,105,116,84,2,111,73,110,2,116,34,32,170,23,237,26,
-11,224,17,0,173,37,64,88,240,163,0,224,51,29,96,180,224,51,23,64,
-40,159,159,65,39,244,26,1,43,45,106,24,147,220,65,242,225,64,13,224,
-241,5,2,57,48,32,109,203,245,38,18,2,68,97,116,2,97,47,67,2,
-104,97,114,213,34,2,57,51,58,213,34,238,46,5,226,43,0,238,61,19,
-161,236,224,239,0,128,199,212,164,185,68,249,28,3,185,74,237,149,2,242,
-6,12,194,201,96,78,182,27,238,118,4,241,172,15,69,116,171,76,143,146,
-113,37,34,155,213,179,71,247,97,75,239,134,0,239,178,0,224,75,1,110,
-35,233,78,14,2,85,82,67,137,5,251,147,5,99,105,221,217,67,122,2,
-95,49,57,76,234,2,52,49,53,140,111,96,19,2,53,53,57,64,169,128,
-165,38,128,67,73,211,202,113,159,224,174,4,187,10,96,31,64,186,197,16,
-147,222,219,180,236,242,1,225,76,0,119,231,241,184,12,236,231,3,188,167,
-111,5,242,125,8,2,85,110,99,2,108,111,115,53,218,2,123,45,32,2,
-99,111,109,2,109,101,110,131,49,135,99,228,160,5,252,192,2,240,217,12,
-55,58,236,216,3,109,192,243,111,17,127,146,245,135,0,161,15,242,237,6,
-237,101,13,224,151,39,192,105,224,150,28,2,49,50,53,224,151,30,227,42,
-0,224,151,7,247,102,3,245,5,20,224,46,30,166,45,244,72,1,224,234,
-0,245,32,10,224,178,10,244,137,1,160,26,244,196,1,224,18,4,246,138,
-0,195,150,34,140,64,27,120,239,122,175,250,0,0,2,95,51,52,32,89,
-225,158,11,128,5,64,57,135,32,52,99,161,103,160,51,35,73,239,18,1,
-64,13,99,63,102,87,224,79,6,101,89,64,148,135,222,64,83,166,190,146,
-139,224,88,5,224,61,6,128,47,230,146,16,230,107,5,132,212,229,81,38,
-2,55,58,49,229,81,48,160,112,229,93,2,96,174,230,25,4,97,246,134,
-25,68,113,128,199,229,29,6,156,69,64,7,92,98,241,72,1,254,146,4,
-2,60,32,64,111,106,116,151,226,244,0,2,67,32,61,2,61,32,64,224,
-24,0,220,164,65,229,252,6,0,227,219,10,224,69,13,250,222,1,224,69,
-3,185,200,130,184,113,59,224,91,6,229,128,17,2,109,111,100,2,117,108,
-101,247,13,0,2,90,32,75,235,244,2,201,43,130,189,139,217,33,103,99,
-82,32,254,60,217,32,2,253,140,0,217,232,224,175,3,200,213,32,173,160,
-88,65,101,198,208,146,229,63,252,96,21,203,149,37,140,250,219,5,224,13,
-0,187,98,181,66,33,179,76,199,2,52,48,50,81,212,66,13,2,52,48,
-49,131,97,64,231,65,228,231,38,0,2,75,32,66,160,44,106,248,2,48,
-52,32,48,239,100,98,198,93,96,59,224,60,4,250,145,4,225,235,5,114,
-243,246,85,1,224,25,1,250,179,6,226,25,3,248,205,0,249,208,3,224,
-46,17,196,36,249,74,7,225,88,4,192,30,66,12,96,88,247,46,2,147,
-69,246,58,4,192,171,250,198,0,229,129,3,251,78,2,250,40,5,246,146,
-0,226,79,1,179,65,229,224,6,246,145,3,243,227,10,200,170,135,38,129,
-139,194,81,161,140,225,141,6,227,5,1,224,51,12,39,252,203,169,224,52,
-3,133,144,192,63,64,22,248,145,2,224,28,1,64,24,193,147,227,216,9,
-248,87,3,65,70,116,144,201,105,212,204,65,141,64,78,160,229,163,157,193,
-47,224,231,13,96,35,224,179,9,140,140,64,152,253,245,3,224,190,2,194,
-36,68,135,251,155,5,230,215,3,181,232,225,132,3,224,159,1,225,77,0,
-224,158,23,160,108,225,138,5,129,190,193,61,250,236,5,224,165,0,224,95,
-50,184,84,160,95,192,69,128,101,226,47,15,234,46,0,64,22,253,225,1,
-226,186,3,229,133,11,225,77,1,99,56,228,96,1,246,203,1,65,239,222,
-71,227,133,3,233,138,8,232,197,3,249,179,2,232,243,6,234,65,19,192,
-59,68,221,225,22,8,226,202,3,247,118,18,255,42,6,224,162,12,227,250,
-2,230,117,17,129,229,224,138,12,203,78,235,74,0,224,208,16,128,169,253,
-134,13,2,108,97,121,2,111,117,116,2,32,101,114,2,114,111,114,2,32,
-125,34,142,83,229,188,21,224,153,24,227,241,5,161,78,96,43,64,23,163,
-113,228,88,6,229,128,1,230,183,4,102,98,226,56,1,135,101,192,13,130,
-23,98,51,227,140,2,224,10,4,229,168,3,2,95,51,48,47,202,101,43,
-231,184,2,230,179,0,228,237,12,225,58,1,130,242,138,50,66,242,225,66,
-1,2,115,121,110,2,116,97,120,129,66,225,64,30,71,95,141,169,103,117,
-97,43,167,118,237,5,1,32,24,99,196,137,11,64,122,192,47,67,90,128,
-46,67,101,32,21,104,39,64,14,138,40,2,85,32,75,2,32,65,32,96,
-102,68,7,32,17,128,229,35,153,2,90,32,85,169,79,233,35,4,224,18,
-6,138,37,231,0,8,224,18,6,106,187,103,254,163,206,177,36,64,103,32,
-159,133,52,2,85,32,73,224,7,4,105,17,224,67,1,64,225,160,42,192,
-49,224,140,7,65,155,224,121,6,106,102,224,72,5,224,115,2,224,122,1,
-128,7,224,41,6,129,108,160,41,233,97,3,65,46,138,138,107,90,32,24,
-2,95,54,50,195,82,251,217,12,66,71,64,53,138,167,161,180,97,228,161,
-180,137,90,188,29,33,0,64,19,137,88,2,73,32,58,130,34,203,216,98,
-236,81,246,140,104,103,77,2,90,32,90,67,92,2,51,53,56,2,32,64,
-89,96,93,64,173,201,225,235,7,1,229,254,5,224,204,0,130,75,140,138,
-208,144,106,143,197,72,224,24,13,160,8,109,104,2,51,57,53,199,16,176,
-14,85,236,232,220,0,34,133,143,99,195,59,2,51,57,54,129,155,96,11,
-117,253,2,57,56,32,64,72,64,23,2,95,49,54,118,99,128,6,135,86,
-192,205,198,98,230,33,5,198,198,203,97,224,7,1,163,227,228,56,1,231,
-112,1,169,108,139,122,224,33,13,128,27,224,26,6,171,172,128,137,33,141,
-232,135,2,224,38,13,132,27,103,93,163,221,162,79,194,86,130,243,128,232,
-96,11,160,16,130,158,67,163,226,166,2,33,93,2,54,56,51,161,86,129,
-8,225,7,4,161,68,192,31,32,4,130,31,33,7,174,166,172,94,2,56,
-52,32,248,21,4,34,206,2,56,32,102,228,176,0,2,80,114,101,2,108,
-117,100,172,101,2,58,49,51,2,57,57,32,66,39,2,75,32,58,129,172,
-162,202,230,201,7,232,213,1,32,8,101,152,64,47,132,113,228,173,0,100,
-150,98,4,160,69,160,44,64,20,237,230,1,65,84,226,82,0,201,48,234,
-238,5,235,206,5,163,192,224,53,5,166,122,2,56,56,48,161,28,149,194,
-138,11,224,5,15,240,67,1,2,51,55,57,70,61,65,67,128,1,228,9,
-1,65,146,224,21,12,2,50,32,90,224,20,5,32,19,2,51,32,90,224,
-17,2,32,16,2,52,32,90,192,14,64,72,32,15,224,13,5,129,246,194,
-65,170,54,204,173,224,224,0,224,16,1,160,13,128,8,97,120,230,218,0,
-225,57,6,192,48,236,206,2,224,27,7,244,157,4,159,216,106,71,2,51,
-56,48,99,197,2,56,57,56,32,4,2,53,48,32,226,75,3,39,58,168,
-115,55,244,33,101,78,21,228,141,9,98,135,239,154,1,224,7,29,228,186,
-10,32,110,130,232,224,112,1,229,168,3,64,19,154,188,2,48,49,48,224,
-149,3,97,94,224,55,1,160,35,151,40,224,35,3,193,127,140,200,32,241,
-71,168,2,56,57,48,235,11,7,2,54,49,49,235,10,4,49,177,212,151,
-224,5,3,128,195,2,51,56,55,65,40,96,76,192,77,2,95,49,50,2,
-54,51,32,64,7,2,48,54,50,234,234,6,32,245,88,164,224,17,2,225,
-82,11,192,122,97,33,161,250,238,35,1,224,29,4,234,183,3,64,142,99,
-12,230,52,13,128,9,225,148,12,236,211,1,226,97,0,224,97,3,194,129,
-56,119,225,179,6,107,28,2,51,57,48,139,37,114,220,2,51,57,51,196,
-37,209,200,36,254,70,121,230,189,5,224,7,13,235,134,6,133,246,128,247,
-235,121,4,224,2,11,233,190,5,227,62,3,224,44,21,224,45,26,224,48,
-6,224,49,42,237,147,0,32,5,64,8,228,230,1,102,185,160,5,236,255,
-5,196,16,134,209,225,169,0,173,14,168,226,230,249,1,224,5,3,231,5,
-4,196,113,226,135,2,226,132,1,164,8,98,193,162,39,2,95,57,56,51,
-200,198,80,232,1,2,97,226,198,185,35,41,2,56,32,85,69,29,224,22,
-4,236,40,3,192,87,224,84,8,160,49,229,103,3,40,30,225,147,5,140,
-64,224,2,23,227,30,2,225,35,5,230,204,0,225,140,9,225,183,14,97,
-33,224,68,11,242,39,3,224,33,11,224,98,8,224,28,19,241,172,8,198,
-210,224,8,5,42,132,183,10,242,172,1,225,199,1,225,30,3,229,253,5,
-2,39,32,89,228,190,2,242,110,2,239,76,1,173,94,160,42,192,19,129,
-137,199,244,192,101,225,37,7,128,92,237,100,3,226,193,6,96,5,193,148,
-224,57,3,162,138,224,25,10,225,33,5,227,75,12,195,2,225,90,3,192,
-164,227,91,5,225,39,5,96,17,32,89,233,34,8,160,68,96,86,225,169,
-2,230,149,1,224,224,7,69,92,207,129,73,178,94,0,234,153,4,228,189,
-0,255,29,1,158,88,43,14,192,120,224,15,7,192,0,65,123,64,3,234,
-39,2,224,225,2,225,255,3,128,242,224,189,4,160,226,224,91,9,229,203,
-10,224,197,0,202,148,244,54,10,226,72,11,232,174,1,228,70,2,226,71,
-255,226,71,45,226,69,1,226,2,19,225,67,3,246,225,2,226,8,22,37,
-118,224,166,6,96,27,226,13,7,250,86,3,160,150,70,26,64,148,254,221,
-2,226,44,1,226,238,17,122,108,224,121,9,224,138,11,254,100,2,227,68,
-13,234,169,2,145,188,2,52,52,54,158,90,227,58,10,130,74,178,148,226,
-26,1,226,10,1,225,250,6,239,69,21,225,132,6,233,71,1,224,89,8,
-162,129,237,175,0,32,92,198,204,224,82,4,224,77,16,214,192,223,174,77,
-243,64,12,160,69,224,74,10,160,70,250,65,12,2,110,111,116,2,32,101,
-120,2,112,111,114,2,116,101,100,250,71,0,176,17,105,144,237,221,0,2,
-95,50,52,137,173,124,95,64,29,217,242,2,82,32,64,171,205,132,192,108,
-24,2,51,55,50,64,4,140,14,2,55,53,32,32,4,151,175,167,222,186,
-152,32,7,224,151,12,2,58,32,34,136,43,2,51,48,54,218,122,104,18,
-74,23,235,83,8,224,5,6,111,139,171,49,200,108,96,3,237,188,11,167,
-215,2,95,57,48,113,183,96,45,97,234,239,43,3,175,48,96,21,224,23,
-8,224,33,3,129,209,235,71,13,244,102,5,193,159,162,130,248,56,5,97,
-174,245,64,4,192,21,224,160,4,224,140,0,189,235,237,82,38,229,125,23,
-228,234,1,139,227,234,110,2,228,15,6,250,163,9,165,227,68,22,44,234,
-162,9,67,215,204,10,224,240,8,224,0,6,225,193,12,143,60,225,190,6,
-210,76,141,33,224,46,3,79,90,253,20,8,64,43,2,56,57,54,78,177,
-2,55,51,32,234,143,2,96,3,239,142,3,226,27,60,164,241,242,73,3,
-97,121,251,78,0,239,27,16,160,62,65,165,230,10,1,140,224,237,240,12,
-226,73,15,196,16,179,54,249,44,4,64,61,99,216,69,199,187,145,226,158,
-49,226,157,36,247,128,4,238,70,1,234,248,3,160,13,103,243,229,140,0,
-232,72,7,232,23,1,248,59,3,227,130,15,247,255,0,238,202,9,248,15,
-7,232,226,7,225,25,6,77,77,64,128,128,20,33,30,103,153,2,57,50,
-48,33,76,2,53,57,48,166,17,129,22,143,94,233,163,11,224,138,13,96,
-241,232,1,3,227,78,0,192,54,231,151,1,239,110,4,160,174,111,116,227,
-120,5,226,20,12,224,79,65,227,217,2,227,198,7,227,156,9,228,190,61,
-99,83,33,41,228,192,2,225,88,6,193,211,224,220,9,243,75,3,224,220,
-8,97,127,224,85,32,160,82,224,65,4,224,0,5,225,27,15,102,211,217,
-193,34,51,71,6,91,209,167,22,2,51,52,49,106,56,135,1,2,95,50,
-57,35,112,32,49,67,166,88,5,244,166,0,232,95,0,170,121,245,29,5,
-202,216,239,209,2,160,17,240,136,4,234,42,2,224,17,2,128,91,224,37,
-0,238,111,4,60,168,142,106,225,133,21,235,14,3,246,161,2,163,16,227,
-148,6,226,251,0,235,223,10,139,211,251,237,0,211,122,161,208,96,47,225,
-201,8,239,187,11,196,77,254,52,7,128,96,224,38,50,241,150,4,196,26,
-225,25,41,179,250,225,25,8,228,158,2,224,21,8,226,138,5,129,189,94,
-72,139,155,229,171,10,231,232,9,224,141,14,208,75,255,115,5,229,191,20,
-224,13,9,224,52,3,224,27,2,232,75,1,225,197,1,66,110,224,184,0,
-224,0,3,236,72,0,224,182,28,192,61,224,129,22,224,171,77,224,170,37,
-223,120,224,170,113,226,166,68,224,241,0,238,57,13,255,175,2,229,123,12,
-69,44,2,57,54,56,243,156,7,247,159,0,151,25,247,176,8,224,194,44,
-239,105,0,224,194,7,208,102,228,132,41,101,22,33,102,160,165,232,17,0,
-139,10,136,22,230,41,16,2,95,54,57,39,42,199,97,136,204,143,36,126,
-73,120,37,216,36,225,53,7,238,183,7,232,175,6,186,84,224,52,4,184,
-125,2,75,32,95,224,119,3,130,18,59,38,32,194,70,109,155,225,246,183,
-7,182,71,242,96,2,198,121,245,129,7,106,61,222,56,123,82,47,138,68,
-85,238,44,26,238,33,19,2,117,110,100,2,101,102,105,2,110,101,100,2,
-32,109,111,2,100,117,108,2,101,58,32,238,49,6,187,127,232,86,8,252,
-143,0,247,148,6,245,205,5,65,116,32,71,243,28,8,231,88,9,160,41,
-2,95,56,32,2,95,54,53,226,30,1,253,228,0,229,125,0,234,40,1,
-226,37,3,154,13,96,33,97,162,65,115,221,37,242,187,4,243,16,11,215,
-207,248,70,20,246,52,6,224,81,0,243,36,11,224,163,1,226,231,3,162,
-237,228,63,1,224,24,1,193,194,113,146,190,101,249,223,0,66,182,160,214,
-232,174,0,146,104,130,2,161,26,224,116,1,32,146,184,35,128,25,64,67,
-206,56,161,37,65,31,158,47,179,115,128,130,66,231,2,56,55,55,226,78,
-20,184,41,131,15,226,73,1,144,255,98,61,64,92,158,119,88,99,42,168,
-255,84,3,99,187,2,50,48,49,224,58,2,2,116,121,81,2,73,100,101,
-2,110,116,34,162,113,177,106,64,70,154,195,236,146,0,156,15,210,244,65,
-249,2,95,52,56,65,30,227,27,0,179,129,227,171,0,227,151,12,164,72,
-75,82,74,82,226,91,1,193,82,96,123,145,183,2,80,32,58,128,105,255,
-91,8,65,197,160,20,250,92,15,34,247,2,51,57,32,197,175,128,12,141,
-83,2,95,49,56,65,77,253,200,14,67,48,96,56,160,0,224,51,19,224,
-43,7,165,4,74,84,64,164,139,25,226,219,26,224,29,30,240,212,7,224,
-41,2,224,18,9,224,82,13,224,21,24,215,119,96,9,130,61,37,74,33,
-192,104,145,84,238,66,69,32,20,2,51,51,48,94,50,2,51,32,95,37,
-208,97,195,64,28,98,166,224,29,16,103,21,2,95,55,56,98,136,2,57,
-52,56,228,17,0,226,63,1,94,161,195,58,224,6,3,227,80,2,2,52,
-55,32,65,94,2,55,57,32,65,94,98,151,2,83,32,67,235,232,5,142,
-217,224,239,5,132,20,226,208,0,197,190,130,44,230,228,2,66,155,2,55,
-49,51,193,8,204,163,32,19,202,155,175,45,96,99,212,231,234,163,2,227,
-51,1,64,95,200,13,128,155,129,25,2,57,49,55,161,40,2,57,57,57,
-245,40,0,64,74,2,95,55,53,37,173,2,57,48,53,254,88,3,199,156,
-240,19,1,162,213,103,182,103,163,2,54,54,32,100,57,65,84,230,117,9,
-2,79,32,35,2,57,55,32,228,154,0,2,50,49,32,2,95,49,52,134,
-101,77,159,199,200,35,175,32,156,2,53,54,49,82,44,64,64,103,182,2,
-49,56,49,2,32,35,49,224,34,25,104,50,224,55,8,138,29,65,175,135,
-136,102,9,141,150,241,39,8,132,91,176,155,97,100,99,123,2,57,48,54,
-228,178,2,2,45,62,34,193,218,32,32,64,30,65,171,66,94,136,12,173,
-43,128,63,169,81,224,66,6,2,61,62,34,226,248,3,133,184,64,65,65,
-244,169,125,224,127,6,33,65,34,201,193,66,224,123,0,32,51,126,29,69,
-165,246,187,1,224,59,2,33,107,103,36,224,48,0,96,15,64,48,65,126,
-224,48,10,160,108,2,56,53,57,32,88,224,109,6,224,233,10,231,147,3,
-224,63,4,2,54,53,56,240,224,0,224,230,16,241,0,2,234,233,2,64,
-121,248,63,5,195,78,228,63,7,167,103,199,77,115,140,223,96,231,94,5,
-99,4,241,116,3,133,169,131,14,2,49,50,55,102,73,37,78,2,50,53,
-32,248,144,0,227,11,5,226,120,45,105,131,242,211,3,212,51,224,150,13,
-67,58,64,140,64,5,64,86,72,230,96,156,218,157,107,221,99,213,2,48,
-56,32,32,117,96,84,99,118,66,33,2,48,55,32,233,4,0,69,11,100,
-159,128,79,99,101,160,6,64,29,136,2,224,29,6,224,12,6,64,129,64,
-43,135,209,97,218,32,29,33,49,96,21,135,160,160,21,72,50,96,21,135,
-58,226,235,1,2,80,114,105,2,109,105,116,2,105,118,101,2,115,46,61,
-66,246,64,35,135,82,146,215,224,114,2,224,128,7,128,20,64,48,135,110,
-2,95,54,32,2,95,52,48,36,59,64,238,224,97,12,163,155,98,101,2,
-54,57,32,71,11,193,148,228,79,15,224,80,21,163,169,224,80,26,173,206,
-96,174,135,120,55,11,96,238,64,55,104,44,100,94,35,126,2,95,55,48,
-64,45,2,95,50,50,34,81,96,11,38,226,101,163,130,27,192,21,65,15,
-66,116,243,85,0,224,64,18,32,41,243,151,1,224,66,2,102,176,107,135,
-154,229,224,66,7,2,49,51,53,150,188,2,54,55,32,134,229,224,57,0,
-128,204,66,160,133,54,224,122,16,2,51,53,50,172,142,224,118,0,74,208,
-224,45,0,2,80,32,66,97,63,33,43,226,234,1,160,16,248,81,1,157,
-223,161,6,167,85,34,245,251,232,0,138,67,64,50,2,95,56,49,128,37,
-43,44,246,99,7,111,15,32,90,198,82,64,149,235,90,1,224,76,11,32,
-44,224,77,0,233,139,0,96,146,2,54,49,48,220,185,170,28,249,83,0,
-247,29,9,239,34,20,253,105,9,248,150,11,231,84,4,136,137,105,245,224,
-0,8,164,12,160,47,226,46,1,225,114,1,96,70,192,12,65,161,192,234,
-235,15,2,224,232,1,225,244,3,220,92,2,95,51,56,176,68,66,4,132,
-75,236,48,5,35,250,2,52,57,32,107,115,65,187,2,57,53,48,233,86,
-6,39,98,249,54,6,160,250,128,13,32,57,2,60,32,64,2,35,55,32,
-240,41,5,225,58,0,192,24,97,151,176,39,227,48,2,32,179,111,99,229,
-205,2,177,50,162,14,227,4,4,2,48,49,51,234,189,6,226,234,6,166,
-48,66,230,2,50,55,56,193,247,143,240,255,61,5,224,165,5,192,86,32,
-165,244,233,1,224,126,6,140,150,33,43,236,248,3,2,112,101,32,2,115,
-105,103,2,110,97,116,2,117,114,101,136,14,249,96,10,224,215,4,224,209,
-12,252,76,2,224,112,5,2,50,48,54,239,80,0,224,71,3,227,254,6,
-128,33,225,94,21,225,50,0,226,44,7,224,126,0,2,95,53,48,209,177,
-225,51,7,250,238,0,224,54,0,66,80,134,126,224,114,8,32,213,160,143,
-111,253,226,192,0,128,80,163,158,162,16,229,42,6,2,48,50,51,249,117,
-7,136,12,127,48,2,57,52,53,66,211,255,72,3,241,28,19,2,67,97,
-110,95,217,2,115,97,116,2,105,115,102,2,121,32,99,2,111,110,115,2,
-116,114,97,2,105,110,116,241,37,0,106,196,2,56,51,50,224,232,0,64,
-213,135,40,33,125,2,55,50,55,32,4,2,51,49,32,203,152,64,29,135,
-48,227,154,12,229,60,4,227,199,2,239,65,6,131,197,39,187,224,169,1,
-2,92,51,52,2,38,115,114,2,99,47,77,2,105,99,114,2,111,72,115,
-2,47,84,121,2,112,101,67,2,104,101,99,2,107,46,104,2,115,92,51,
-2,52,38,44,42,54,2,50,58,49,2,57,34,32,143,97,2,90,32,67,
-66,227,49,108,2,55,48,48,133,48,40,81,200,172,204,107,226,35,2,166,
-119,108,74,2,49,49,51,2,57,32,95,210,254,32,187,33,78,96,37,186,
-128,224,172,59,2,56,58,49,160,172,209,14,186,237,226,212,0,165,177,244,
-220,2,230,139,3,129,242,230,127,3,226,50,23,241,163,1,224,29,2,140,
-11,65,24,65,176,2,48,50,52,230,188,3,101,128,131,238,225,42,4,78,
-109,33,89,129,32,229,94,16,2,50,55,57,254,16,7,236,124,0,99,212,
-96,190,134,180,64,66,94,94,128,10,174,253,166,39,2,51,54,50,35,120,
-167,110,224,162,7,224,19,12,230,59,1,194,177,137,174,128,77,155,45,137,
-199,86,38,211,66,128,139,163,219,2,52,49,54,137,148,64,46,70,19,168,
-88,224,229,3,255,127,1,197,18,227,230,6,2,57,55,56,230,194,3,229,
-53,3,225,78,5,226,97,2,67,197,32,157,64,67,171,73,238,233,3,225,
-213,17,228,239,5,2,48,50,48,196,239,224,177,5,139,138,104,119,235,99,
-0,64,103,2,95,54,55,247,242,2,209,205,75,104,35,68,129,22,2,95,
-57,56,32,165,116,225,64,177,115,152,2,55,51,55,233,67,2,138,16,136,
-52,239,68,3,251,3,5,247,216,2,190,174,228,201,1,223,50,207,99,136,
-149,189,57,239,80,4,236,171,0,32,138,32,40,111,120,46,59,130,126,2,
-95,53,53,36,152,108,197,171,2,232,116,3,192,92,226,49,4,224,76,15,
-32,215,64,234,75,151,2,53,53,56,96,33,32,90,128,39,36,82,157,129,
-128,12,2,49,52,50,65,26,2,52,51,32,64,24,33,43,224,37,1,99,
-206,192,12,224,63,4,36,104,160,12,64,105,234,133,1,108,252,69,89,74,
-99,97,4,100,19,116,11,235,229,14,32,47,64,29,64,71,173,20,228,48,
-1,96,204,52,42,226,160,5,64,81,80,251,2,51,51,52,130,54,134,150,
-228,63,5,228,97,1,194,116,229,219,6,2,48,56,50,244,97,0,228,11,
-9,56,62,65,54,2,48,53,56,193,183,64,160,135,24,248,2,1,65,4,
-133,110,2,53,53,54,99,154,35,18,166,101,75,132,149,148,64,22,173,143,
-107,76,65,2,83,6,2,48,57,32,64,188,76,185,2,49,54,54,98,152,
-114,253,64,47,227,250,0,231,245,12,37,198,158,178,98,129,137,188,233,185,
-6,204,112,224,25,9,98,251,224,25,12,116,173,233,68,8,96,21,2,85,
-32,66,163,178,232,213,1,237,20,0,64,9,65,10,227,139,0,234,46,13,
-56,179,115,242,229,132,0,224,43,13,96,25,71,91,129,67,161,145,102,96,
-224,58,6,254,169,0,234,186,11,215,203,224,95,8,192,24,166,118,213,217,
-172,27,224,227,2,204,12,169,235,248,148,2,245,79,0,133,92,2,50,54,
-55,235,185,6,235,140,4,251,242,0,233,170,4,64,20,244,23,2,224,82,
-0,147,255,160,36,130,226,215,19,2,51,56,32,66,153,41,34,98,87,227,
-5,3,249,12,9,180,61,251,20,5,244,51,4,224,118,1,244,214,3,224,
-68,5,36,122,98,153,251,90,5,64,129,224,189,0,160,134,47,170,255,133,
-7,225,97,10,251,84,0,155,186,230,78,1,192,26,171,46,225,249,2,254,
-19,8,193,92,250,43,10,246,255,4,225,156,11,225,158,4,184,23,225,164,
-5,225,138,1,245,168,11,224,30,5,201,121,136,25,243,2,2,253,61,2,
-150,237,161,214,225,173,1,225,170,38,225,245,19,226,87,5,193,198,224,139,
-4,206,253,96,37,150,171,110,228,254,83,15,161,180,254,229,46,191,158,229,
-250,2,128,189,124,73,135,152,99,142,137,50,99,144,122,127,249,38,2,226,
-110,34,73,52,226,50,6,170,155,64,1,128,223,236,174,9,99,84,224,49,
-6,96,245,169,237,226,126,1,234,42,2,46,38,128,149,235,53,1,2,63,
-63,63,171,16,33,172,37,209,224,74,0,73,143,226,124,8,237,119,15,192,
-149,69,250,250,211,1,239,87,22,227,49,4,253,47,12,225,205,0,249,254,
-5,224,52,3,224,58,4,160,59,228,236,1,224,28,4,225,248,0,250,146,
-16,128,104,239,23,5,227,235,12,195,161,144,161,229,63,9,228,146,11,96,
-102,160,145,249,113,0,224,237,1,118,110,224,161,0,226,148,8,162,119,118,
-58,224,23,5,229,130,0,205,78,196,92,240,50,1,227,98,2,224,199,9,
-226,72,5,225,127,3,230,42,4,122,193,139,142,2,90,32,75,64,26,160,
-6,224,182,3,209,132,167,222,225,26,6,240,40,3,228,148,3,128,152,2,
-50,57,56,202,122,164,79,99,41,33,70,150,135,40,106,229,162,1,225,98,
-0,171,174,227,192,5,74,87,242,140,3,229,19,6,64,107,170,207,129,38,
-232,21,3,255,204,4,255,152,2,228,99,1,219,29,160,161,136,204,225,29,
-15,97,176,238,168,39,2,51,51,51,2,58,50,53,163,151,173,215,75,29,
-165,84,225,8,3,32,248,65,54,225,90,20,251,150,3,225,95,8,231,77,
-2,141,6,115,160,224,216,25,2,65,32,64,224,216,43,2,50,58,50,224,
-216,1,244,234,2,123,58,233,208,1,97,103,226,111,15,232,220,7,128,183,
-192,198,212,192,34,58,226,19,3,68,154,142,85,235,104,4,246,76,4,146,
-248,247,19,1,130,97,166,110,96,97,189,162,245,163,33,161,170,245,164,1,
-237,89,0,229,70,2,2,51,52,57,139,102,141,203,214,181,102,123,235,105,
-0,109,61,171,105,64,44,64,51,75,147,2,51,49,48,32,136,74,224,224,
-1,11,65,31,224,105,1,126,237,160,62,140,245,2,79,32,95,110,137,2,
-49,50,53,65,14,224,14,2,64,184,64,14,54,156,192,19,123,238,224,12,
-0,96,74,218,17,65,21,165,246,138,30,2,52,49,32,228,76,0,230,141,
-7,242,33,0,214,8,225,133,4,120,112,203,203,225,169,4,224,55,7,225,
-186,4,2,51,49,50,224,51,41,112,254,224,51,39,223,179,248,205,6,74,
-105,112,180,34,129,232,176,1,226,9,1,176,28,224,56,2,241,81,4,103,
-117,235,120,0,224,142,13,40,147,136,67,226,167,3,245,220,4,231,24,13,
-231,105,6,230,243,2,224,47,7,192,5,245,61,10,81,182,235,30,3,224,
-1,1,246,156,5,225,240,5,230,252,5,161,18,57,227,184,243,220,175,117,
-68,227,121,2,245,61,16,85,58,2,97,32,99,2,108,97,115,2,115,32,
-34,133,133,2,51,48,54,165,142,225,146,4,224,165,7,235,131,3,224,28,
-12,227,43,1,227,71,20,230,25,7,232,79,17,224,72,11,129,97,251,112,
-9,96,86,154,115,96,5,241,248,2,234,51,5,233,117,9,2,90,32,83,
-253,245,2,225,71,1,246,146,4,225,83,19,2,115,117,112,2,101,114,102,
-2,108,111,117,2,115,32,98,2,105,110,100,2,105,110,103,246,137,4,2,
-51,48,55,234,0,8,228,109,13,233,237,19,224,56,2,236,102,8,33,16,
-233,124,4,224,96,1,64,25,234,2,2,232,205,5,171,168,232,210,4,224,
-154,5,34,182,232,4,0,225,168,9,191,226,234,98,10,232,13,7,224,13,
-4,128,10,72,2,232,134,7,230,116,7,223,237,225,53,15,226,177,9,241,
-156,1,224,2,3,192,168,244,148,1,227,111,1,98,76,160,5,96,40,97,
-19,246,7,10,225,0,22,224,121,2,163,146,185,119,250,217,5,101,220,44,
-247,234,120,3,224,180,5,66,186,130,139,225,25,1,168,166,235,189,0,131,
-62,160,180,136,115,221,153,64,7,32,43,224,62,4,88,245,82,161,70,151,
-233,211,2,96,233,126,155,245,235,0,153,150,128,169,127,226,240,176,2,102,
-83,237,14,2,2,50,53,32,234,74,10,239,25,4,2,49,52,53,134,144,
-248,197,2,32,158,67,99,131,154,225,228,9,232,211,5,133,130,226,60,1,
-229,105,3,169,142,209,185,238,164,2,64,131,153,60,96,179,232,251,0,160,
-6,247,103,2,72,78,2,51,52,52,100,24,99,238,2,55,53,51,204,23,
-226,136,5,70,161,179,221,224,225,2,97,86,228,28,1,2,51,52,49,224,
-14,3,2,48,48,54,241,191,1,138,19,2,83,32,95,2,53,49,53,2,
-32,64,73,78,245,191,10,64,45,140,233,64,100,180,43,32,49,2,52,53,
-55,135,49,151,247,64,35,117,210,2,57,50,32,124,61,64,19,142,46,228,
-139,1,2,105,110,115,2,116,34,32,96,26,216,4,167,79,243,239,8,101,
-14,231,105,11,231,104,24,226,235,4,250,175,1,120,143,129,246,254,164,3,
-97,45,232,159,2,203,40,54,70,227,98,7,224,93,59,160,89,193,78,138,
-19,231,158,1,89,21,32,73,130,131,85,125,39,76,2,57,53,32,96,54,
-172,10,230,11,51,188,157,2,100,101,114,2,105,118,101,230,6,16,205,9,
-110,167,226,106,3,32,177,64,188,106,89,93,102,224,97,10,2,68,97,116,
-2,97,46,66,2,111,117,110,2,100,101,100,192,7,96,103,73,195,64,98,
-224,57,21,2,69,110,117,2,109,46,69,32,4,224,51,0,65,3,224,51,
-22,2,113,46,69,2,113,34,32,128,47,99,246,224,47,21,2,73,120,46,
-2,73,120,34,192,47,65,85,224,47,21,2,79,114,100,64,3,192,49,125,
-155,224,49,21,77,27,2,97,98,108,2,101,46,84,160,8,224,59,0,65,
-69,224,59,16,2,84,101,120,2,116,46,82,2,101,97,100,96,4,224,161,
-29,96,51,2,83,104,111,2,119,46,83,32,4,224,103,0,65,105,226,184,
-1,65,183,140,17,240,57,0,233,196,3,65,102,34,83,175,232,232,166,2,
-196,201,239,26,0,234,121,4,234,138,9,244,97,9,239,113,5,241,191,2,
-242,14,3,241,210,4,241,236,7,234,218,4,247,151,4,234,219,16,234,41,
-9,224,48,10,231,41,11,198,120,231,165,11,144,90,251,210,5,224,80,27,
-232,222,3,224,73,1,2,55,50,48,231,185,18,230,250,1,232,88,10,101,
-50,224,25,12,234,198,0,224,22,14,224,104,11,137,115,246,121,10,179,33,
-134,188,255,202,2,181,166,122,181,64,62,32,234,128,240,89,65,233,16,5,
-225,34,20,224,194,9,204,65,242,218,2,203,211,103,71,66,215,255,191,2,
-235,198,20,235,227,25,226,166,4,128,114,224,2,0,146,0,225,73,26,234,
-227,9,224,8,18,161,63,163,94,236,44,1,130,179,108,0,2,85,32,102,
-235,183,1,35,207,2,80,97,114,2,101,110,34,225,162,0,236,156,1,224,
-47,0,2,79,32,35,77,186,161,118,129,39,2,56,49,56,96,14,174,149,
-234,3,7,128,135,96,58,2,51,50,32,225,177,1,224,95,3,241,115,0,
-225,121,6,201,198,2,85,32,35,242,167,2,226,82,11,225,53,0,129,234,
-234,100,5,160,172,237,46,3,226,104,0,64,5,162,31,226,17,2,238,127,
-1,153,169,123,9,96,156,99,44,146,215,96,165,32,214,2,49,50,51,224,
-215,4,249,19,6,96,250,72,201,224,34,6,195,115,239,113,4,236,44,0,
-224,119,26,95,29,192,83,33,33,227,226,1,96,113,106,146,245,85,1,35,
-68,41,42,250,161,10,2,85,32,65,133,50,64,95,64,201,96,59,32,76,
-227,91,2,244,126,0,225,212,1,153,236,132,87,84,23,111,131,252,54,1,
-113,235,226,96,8,2,83,116,114,46,16,162,97,162,61,170,150,224,56,0,
-130,106,237,5,1,226,98,3,226,137,5,81,36,224,255,1,224,105,5,2,
-115,80,114,2,101,99,34,96,28,129,13,81,209,128,44,246,6,0,64,11,
-138,179,32,6,96,133,234,246,4,70,198,210,137,2,83,32,83,97,127,2,
-51,53,32,41,34,70,221,232,247,9,64,145,225,54,0,139,75,128,20,225,
-166,1,69,74,137,97,64,92,177,227,100,233,83,143,2,52,55,55,96,5,
-147,192,64,106,32,30,2,90,32,67,130,149,36,13,239,20,18,230,147,0,
-230,144,7,230,39,9,247,206,5,194,139,166,107,214,214,97,190,238,147,26,
-224,91,5,205,56,102,111,122,214,33,174,170,79,64,143,225,163,1,2,116,
-121,112,2,101,82,101,2,112,34,32,248,231,7,78,15,52,42,2,49,49,
-56,227,84,2,231,245,1,192,97,130,6,66,103,64,153,224,106,20,2,109,
-107,84,2,121,67,111,2,110,65,112,192,109,184,210,241,56,0,224,74,40,
-224,181,0,242,113,0,130,63,213,108,98,210,129,231,224,39,37,224,130,12,
-66,140,224,130,1,2,91,93,34,195,151,248,20,1,235,144,3,162,185,141,
-57,234,41,6,2,76,105,115,2,116,95,84,33,122,141,21,64,90,224,36,
-9,2,84,121,101,170,68,64,34,141,83,233,200,32,233,20,12,226,131,9,
-249,63,3,194,120,226,72,8,232,183,0,168,163,2,54,49,56,234,21,0,
-239,9,2,234,31,3,249,100,6,233,202,5,233,192,6,233,46,4,198,0,
-233,222,6,241,213,5,229,158,0,232,154,8,64,65,113,47,237,194,5,234,
-77,1,227,106,1,32,214,125,235,240,235,5,237,103,0,133,83,101,96,227,
-132,0,128,8,240,197,12,225,187,1,2,60,62,34,233,12,2,225,148,0,
-64,61,64,40,224,81,11,229,6,0,230,4,0,224,100,7,226,136,3,2,
-50,57,32,226,136,3,2,69,81,34,241,133,1,220,39,65,3,225,33,1,
-193,30,97,21,227,212,7,224,105,33,2,76,84,34,228,7,4,224,100,13,
-74,27,160,97,225,134,4,224,103,33,2,71,84,34,128,50,160,57,138,98,
-231,32,23,160,37,224,29,5,231,153,2,231,59,1,227,214,5,64,142,224,
-123,1,2,99,111,109,2,112,97,114,141,185,230,135,10,144,190,238,41,9,
-163,164,143,215,224,30,9,47,120,2,110,103,95,227,240,1,64,240,32,40,
-2,75,50,32,244,236,6,130,120,37,217,224,14,2,239,212,14,2,87,97,
-114,2,110,105,110,2,103,58,32,2,99,97,110,239,221,8,133,79,104,165,
-79,230,2,56,51,50,224,77,22,2,32,121,101,2,116,44,32,128,60,72,
-70,68,12,224,253,4,247,140,5,212,41,64,203,142,98,155,5,2,51,50,
-54,131,20,74,38,182,203,64,35,250,73,1,2,73,79,46,86,152,2,111,
-114,109,2,73,79,32,243,153,0,97,2,99,193,32,5,154,47,32,106,96,
-16,96,63,135,162,228,253,120,132,71,180,219,197,14,212,173,239,61,28,248,
-46,0,203,111,228,193,10,237,87,2,237,100,13,228,206,83,227,151,4,65,
-19,226,35,1,2,38,38,34,228,217,86,231,229,5,2,84,114,117,195,136,
-227,252,23,227,245,15,129,62,161,92,228,151,0,229,2,6,224,145,33,2,
-70,97,108,2,115,101,34,228,156,3,228,85,14,2,50,52,32,224,55,3,
-2,61,61,34,228,80,13,76,27,228,49,9,114,215,64,29,136,60,106,120,
-2,90,32,90,239,44,0,130,98,115,167,127,246,112,25,237,197,5,98,147,
-148,134,234,53,0,133,171,165,170,119,122,232,175,4,244,203,0,228,55,1,
-2,49,52,54,231,120,0,2,95,54,57,35,117,2,53,54,49,32,28,54,
-35,35,220,32,196,32,5,2,49,32,35,140,196,2,95,56,55,36,184,2,
-49,56,54,96,22,239,178,0,64,199,182,36,182,143,65,159,224,241,1,197,
-22,96,40,246,57,7,180,87,2,111,108,34,129,16,133,127,2,66,32,89,
-128,231,51,29,2,50,48,49,224,47,2,2,102,111,108,2,100,114,49,234,
-205,2,68,47,67,63,227,39,0,111,204,224,10,2,241,11,0,64,94,133,
-191,246,152,6,202,238,224,59,9,240,188,1,92,254,2,53,55,50,64,221,
-173,34,228,171,89,240,183,0,228,171,0,110,93,64,196,237,133,3,64,9,
-245,90,0,228,167,2,195,180,216,172,108,215,172,220,64,221,233,98,3,232,
-64,0,96,108,130,79,227,97,0,98,77,67,235,206,29,96,233,2,53,53,
-55,226,45,14,207,31,229,107,9,224,191,12,2,116,111,69,224,189,42,227,
-13,4,242,192,9,192,118,224,189,8,174,154,228,182,0,224,201,28,228,10,
-1,174,199,231,58,9,143,64,96,155,240,146,2,247,207,11,192,52,247,208,
-33,65,31,247,213,14,34,212,87,74,34,212,38,66,2,51,32,95,99,162,
-102,39,198,45,64,33,135,193,131,42,65,82,102,191,224,176,82,184,32,248,
-137,15,227,157,4,239,35,10,227,80,9,236,96,8,253,235,6,236,127,33,
-246,73,11,253,99,31,246,40,2,142,217,244,109,5,237,80,16,192,80,2,
-82,32,64,230,182,1,237,132,22,224,27,1,32,53,59,189,65,142,230,139,
-0,160,5,227,69,3,2,109,97,120,97,117,209,138,224,25,2,2,105,110,
-66,224,25,1,230,27,6,225,219,1,37,66,134,130,240,33,0,67,75,254,
-49,1,129,8,134,143,166,105,2,52,50,53,67,87,230,21,8,227,93,3,
-162,129,138,31,179,103,244,50,0,241,98,13,254,186,8,2,50,54,54,64,
-40,243,74,0,246,87,5,221,245,192,61,197,112,246,252,3,245,170,6,209,
-139,2,51,49,51,199,55,231,85,1,2,95,57,49,244,46,0,147,197,32,
-39,160,17,2,95,54,50,101,222,167,101,40,17,2,52,49,55,254,86,0,
-2,95,51,51,32,209,81,91,60,59,160,20,64,60,158,142,129,72,61,159,
-245,97,4,226,91,0,160,117,238,250,11,129,115,242,19,8,224,156,5,225,
-106,0,139,74,2,85,32,66,133,46,170,196,2,57,56,53,224,167,0,255,
-78,1,2,48,52,49,253,27,2,64,252,129,205,116,187,107,4,128,11,32,
-43,96,14,160,20,224,126,3,192,206,64,122,136,236,2,85,32,90,200,146,
-64,20,136,227,51,216,229,193,0,96,4,35,76,2,57,56,32,65,23,129,
-132,96,43,136,71,254,61,75,230,55,1,213,88,253,228,1,172,218,151,23,
-238,208,1,161,21,64,223,254,49,11,224,81,42,160,77,192,237,137,12,130,
-103,192,58,222,99,130,197,254,99,7,87,249,32,45,2,56,57,56,32,4,
-2,53,48,32,33,126,77,87,130,105,182,108,2,89,32,66,41,55,64,113,
-231,61,11,32,4,249,12,1,167,79,41,108,231,79,2,64,24,224,57,1,
-247,50,0,232,54,1,205,22,98,119,249,83,1,227,239,4,137,199,227,239,
-0,160,8,227,216,3,227,251,15,237,134,1,248,117,2,224,19,5,252,102,
-5,252,105,4,232,122,0,163,69,252,102,11,224,51,6,224,2,0,99,20,
-228,105,5,234,3,4,230,168,7,250,1,1,192,22,224,223,0,201,210,233,
-99,6,38,63,35,201,226,76,4,251,156,1,228,200,6,128,56,2,57,49,
-55,196,5,44,123,140,191,225,114,4,249,75,9,121,109,160,5,250,251,1,
-166,209,249,52,8,2,95,53,48,234,146,7,249,47,10,234,51,3,128,7,
-224,119,2,64,143,160,57,233,136,21,68,202,102,39,132,28,132,64,34,201,
-178,76,239,0,1,250,117,7,225,72,0,252,173,13,224,99,24,166,143,192,
-94,207,185,139,214,229,193,3,192,48,249,183,3,226,5,1,224,2,3,172,
-84,226,208,1,236,103,0,252,89,3,200,71,232,145,6,224,41,8,232,89,
-2,253,173,8,230,223,7,245,119,3,245,42,0,247,99,2,32,38,246,224,
-1,167,235,32,22,128,223,100,152,247,28,0,119,24,247,23,1,194,115,225,
-63,8,206,98,230,188,7,225,120,6,248,141,10,2,48,51,32,100,184,2,
-48,54,32,239,173,3,200,94,239,168,6,160,116,232,231,2,254,107,17,255,
-139,1,227,232,5,225,94,10,252,170,8,225,109,89,138,235,225,109,67,225,
-9,8,227,209,2,254,2,5,225,137,22,237,195,0,227,240,75,130,244,227,
-209,0,227,255,46,228,0,8,255,218,15,246,152,28,248,179,8,128,69,227,
-251,8,64,158,66,23,232,3,7,228,82,19,228,47,11,226,190,3,192,39,
-65,120,105,196,168,213,33,153,2,57,57,49,250,149,1,235,174,1,61,78,
-2,83,101,108,2,69,114,114,2,111,114,34,128,97,241,196,3,252,24,9,
-71,109,144,214,233,214,0,224,33,1,2,95,51,52,2,56,32,102,224,91,
-0,2,103,101,116,211,111,224,70,3,32,66,64,156,241,152,4,2,115,101,
-116,2,70,105,101,2,108,100,34,113,151,66,52,241,224,2,66,75,224,42,
-1,2,46,83,101,224,43,0,96,44,139,236,224,118,4,224,75,3,138,160,
-42,35,99,45,64,17,138,55,224,93,14,2,72,97,115,224,93,4,251,112,
-12,2,82,101,99,2,111,114,100,2,115,34,32,96,34,138,70,163,236,148,
-176,97,129,33,112,64,30,233,119,2,128,28,128,6,64,26,136,183,2,85,
-32,67,239,18,5,225,254,2,227,164,16,64,62,193,136,106,193,131,44,234,
-170,7,96,140,234,170,15,98,160,67,128,231,167,3,230,84,7,233,60,19,
-230,106,8,232,250,5,228,206,0,195,12,230,210,3,248,167,3,228,90,5,
-244,120,3,2,50,57,54,236,140,11,195,42,160,114,252,40,8,239,195,1,
-232,195,0,2,95,57,53,2,54,32,35,227,70,2,33,35,145,254,176,162,
-2,90,32,75,64,28,160,6,113,126,2,49,55,54,225,250,2,2,92,51,
-52,2,38,115,114,2,99,47,77,2,105,99,114,2,111,72,115,2,47,84,
-121,2,112,101,67,2,104,101,99,2,107,46,104,2,115,92,51,2,52,38,
-44,45,116,2,54,58,50,2,53,34,32,225,28,1,64,193,95,254,236,189,
-5,225,99,10,109,32,240,40,5,243,165,2,224,2,0,171,7,146,2,128,
-226,133,217,224,5,4,64,3,224,98,2,189,98,229,211,6,240,169,7,225,
-10,16,225,231,11,240,151,2,229,42,6,253,97,4,224,94,2,234,149,18,
-229,239,1,231,19,1,2,57,54,56,224,160,2,173,190,238,176,3,238,166,
-13,230,211,20,240,235,7,185,127,154,100,236,166,0,255,215,2,138,173,154,
-80,36,53,97,28,133,73,229,38,3,229,84,8,2,110,111,77,2,101,116,
-104,2,111,100,69,229,86,1,234,249,0,101,140,2,56,52,53,230,8,0,
-237,64,1,190,158,226,187,5,242,89,5,237,41,1,237,22,10,225,181,5,
-119,197,198,26,33,63,2,54,48,32,101,136,35,80,239,212,3,209,112,224,
-134,5,239,10,2,150,89,226,24,14,231,184,7,142,196,194,162,192,130,100,
-174,2,50,57,57,164,174,144,124,96,5,32,4,112,192,32,132,225,62,1,
-2,80,114,105,2,109,105,116,51,217,2,115,46,61,190,253,64,62,220,24,
-136,63,100,184,250,250,3,168,38,128,29,241,42,6,224,25,19,96,91,252,
-80,1,99,136,2,56,56,51,243,41,2,70,174,66,128,104,217,45,178,231,
-226,3,2,95,52,48,124,154,2,48,54,50,148,254,100,176,70,94,71,39,
-2,75,32,85,227,229,4,244,136,0,228,1,10,227,42,0,236,10,3,224,
-32,23,224,29,20,32,198,229,46,0,64,152,209,47,64,184,230,32,0,253,
-29,0,189,136,125,99,51,209,181,175,64,43,229,175,10,65,14,105,3,230,
-29,16,131,69,128,38,229,191,12,33,246,163,226,128,157,135,104,224,81,10,
-35,195,133,181,228,10,1,128,131,97,122,96,59,199,129,225,188,2,32,95,
-193,183,97,160,129,183,64,44,135,143,225,159,6,249,139,2,225,144,81,224,
-26,17,224,23,14,224,20,11,224,17,8,224,14,5,225,244,3,225,91,0,
-218,231,161,33,2,57,52,49,249,241,1,246,255,2,33,44,76,61,229,24,
-0,225,241,3,101,19,43,231,160,15,68,80,104,91,164,135,224,68,1,102,
-110,224,55,0,32,39,117,165,226,39,9,252,68,3,224,86,3,50,144,128,
-12,233,22,0,242,232,1,220,83,2,57,50,48,124,83,41,71,104,251,195,
-141,226,213,1,96,224,94,231,34,62,174,140,132,239,2,48,50,51,230,187,
-2,224,226,3,32,146,140,180,231,133,6,65,64,201,105,50,187,133,162,197,
-136,168,206,245,254,1,244,61,2,128,104,224,33,18,151,129,197,204,224,191,
-4,192,25,36,228,151,8,195,43,224,44,10,160,104,180,38,44,85,246,216,
-1,224,43,9,224,42,1,229,60,1,170,151,229,174,0,32,241,64,16,162,
-50,74,32,128,182,231,230,2,70,141,231,179,0,33,191,192,13,97,251,234,
-87,2,128,125,225,199,0,103,75,69,71,2,50,55,56,64,109,242,92,0,
-224,96,33,32,155,73,80,96,103,213,158,224,56,43,233,89,2,239,134,0,
-131,65,2,52,48,57,213,53,66,141,193,7,84,183,241,141,1,195,113,206,
-168,32,201,78,255,68,107,2,50,54,51,239,191,1,224,252,18,36,130,161,
-212,244,35,11,176,86,240,51,8,192,178,65,245,192,73,233,139,5,224,60,
-0,240,110,9,224,52,5,244,248,7,224,47,4,224,44,6,225,103,3,233,
-172,3,224,36,3,32,17,99,83,224,234,8,32,233,136,102,161,99,193,106,
-130,114,65,102,135,128,136,122,227,97,0,202,222,244,119,4,227,73,12,145,
-0,224,37,0,247,201,9,99,79,200,217,169,78,160,26,183,205,183,99,247,
-27,2,42,169,164,163,228,209,3,97,229,36,193,68,75,228,89,0,163,168,
-236,185,3,58,205,181,218,224,86,9,153,6,96,72,73,9,32,17,220,127,
-228,123,5,224,208,4,224,181,4,173,215,131,198,231,169,0,245,138,2,138,
-213,64,90,208,110,242,143,1,224,138,0,2,50,52,52,66,184,224,128,1,
-227,80,11,129,211,224,206,1,249,18,3,224,28,9,225,4,33,186,160,2,
-50,55,54,194,18,224,250,0,225,113,5,161,155,236,239,2,147,13,224,91,
-14,100,83,72,113,238,95,4,224,16,9,230,253,7,97,143,2,52,57,32,
-234,137,2,2,102,117,110,2,100,101,112,106,130,48,64,237,158,10,226,24,
-4,226,182,2,235,49,16,251,252,1,230,212,0,65,2,209,109,194,16,194,
-89,224,115,9,229,212,11,211,254,129,38,225,128,4,224,101,0,96,102,141,
-66,224,102,9,226,108,4,172,131,230,173,9,230,206,23,245,243,0,224,159,
-7,192,24,160,159,224,255,10,136,74,224,152,11,231,28,11,230,195,11,226,
-241,7,226,155,0,251,37,2,44,104,131,110,2,56,48,32,129,93,2,50,
-56,49,225,0,0,166,130,224,59,1,252,8,6,230,213,0,227,113,60,225,
-122,2,240,244,6,227,81,7,224,201,9,64,183,201,176,169,237,226,220,6,
-224,172,134,99,234,234,24,9,206,132,224,187,7,226,248,6,229,113,2,2,
-50,55,51,201,209,228,180,0,70,62,141,115,128,192,2,80,32,35,236,47,
-1,65,206,68,16,64,36,140,255,229,52,3,247,136,6,76,147,68,0,64,
-112,92,233,2,57,53,48,114,56,2,50,56,32,229,28,3,225,72,3,225,
-78,5,2,57,54,55,232,148,13,229,67,9,246,35,5,225,68,27,104,84,
-229,47,1,252,60,4,68,201,95,75,229,102,7,2,51,53,57,225,122,9,
-227,136,15,197,56,33,95,75,166,2,57,54,49,235,61,5,224,91,8,135,
-244,224,91,11,233,254,1,228,140,13,160,123,32,201,64,116,138,5,224,121,
-18,233,141,0,238,36,1,172,239,225,227,7,245,139,3,34,8,225,79,2,
-224,36,2,142,1,47,217,2,57,56,48,130,222,32,17,64,24,237,39,1,
-32,59,98,92,32,50,64,24,246,242,1,32,24,96,150,128,24,68,184,224,
-111,3,197,137,224,111,4,69,118,96,36,46,100,50,121,64,17,208,111,232,
-88,14,130,217,64,40,226,216,3,96,97,170,154,225,2,14,96,51,194,231,
-236,161,0,253,178,6,237,242,5,2,49,53,49,238,251,3,121,143,160,13,
-111,20,233,236,2,229,106,7,194,238,197,45,192,95,231,87,5,161,236,161,
-229,224,103,5,253,122,13,238,20,6,224,40,3,235,230,4,232,17,0,33,
-194,2,52,54,32,248,187,5,64,19,186,103,80,11,2,51,48,32,132,62,
-212,36,2,85,32,65,160,91,231,218,11,97,72,130,109,127,21,64,14,130,
-91,116,89,56,233,64,105,2,52,55,32,242,183,13,2,67,111,110,2,115,
-116,114,2,97,105,110,153,1,64,61,248,6,1,66,151,99,5,162,67,194,
-117,64,23,65,139,33,26,64,22,130,115,249,194,0,203,26,246,212,0,245,
-253,12,254,60,2,167,199,250,193,4,231,202,4,212,112,224,39,17,226,108,
-2,231,133,8,224,27,2,131,235,34,45,244,14,3,2,83,32,66,225,209,
-3,146,246,230,61,5,96,177,248,7,6,146,156,244,142,10,167,144,244,142,
-28,228,118,3,77,182,224,15,1,148,37,244,164,2,2,83,32,79,97,86,
-32,5,181,36,214,149,244,189,2,232,136,25,211,213,248,222,0,227,154,0,
-232,74,12,252,252,7,225,33,1,161,133,249,136,8,160,96,249,34,7,225,
-66,11,193,67,242,68,4,224,106,78,128,30,201,52,152,197,2,50,54,49,
-245,95,1,248,123,0,231,216,8,212,107,244,68,18,249,228,0,64,84,64,
-79,244,72,7,245,214,0,244,95,8,166,136,32,203,235,232,9,227,74,0,
-103,234,112,235,68,204,135,104,228,9,1,64,116,38,178,224,84,1,50,79,
-2,50,32,83,120,37,2,90,32,67,248,193,0,226,79,1,253,158,7,35,
-198,83,37,252,29,1,251,73,14,240,253,3,64,117,167,200,223,234,222,63,
-64,227,192,86,240,151,1,251,162,20,251,197,17,190,81,244,101,6,179,4,
-249,148,0,240,240,1,229,118,2,145,57,64,168,73,216,255,117,2,37,43,
-114,185,254,206,0,234,118,7,150,19,149,139,224,211,5,224,69,17,96,238,
-247,160,1,220,175,247,129,2,157,113,2,51,51,49,75,225,32,230,2,57,
-48,50,225,39,0,231,64,1,224,56,1,32,230,224,52,21,199,65,248,14,
-19,87,240,248,14,16,178,2,64,75,134,68,98,58,2,75,52,32,2,90,
-32,90,160,1,250,252,0,96,37,166,91,248,52,9,227,140,0,246,154,154,
-246,123,6,64,215,198,245,34,87,34,177,107,86,96,23,134,243,99,206,32,
-10,231,67,1,2,36,100,102,2,108,116,34,136,252,67,144,103,1,228,4,
-0,234,103,3,43,170,115,180,227,113,3,246,140,22,234,248,24,2,50,53,
-56,202,126,2,57,48,56,227,7,0,253,156,7,73,167,129,247,230,166,1,
-246,16,5,200,168,230,42,0,146,254,235,24,6,251,190,5,161,50,75,177,
-147,10,149,155,236,151,25,171,74,215,214,64,198,67,83,64,75,132,37,253,
-92,7,224,79,16,167,211,64,65,32,38,64,64,131,119,233,166,0,233,148,
-3,64,37,123,18,225,24,0,64,48,131,111,180,208,228,29,0,240,47,2,
-232,167,0,245,75,5,232,176,2,226,91,0,232,139,4,193,142,231,97,1,
-224,46,20,181,229,224,47,2,200,231,224,47,14,189,7,225,192,0,255,35,
-9,224,47,5,130,0,224,198,10,233,116,16,165,112,233,77,12,224,28,3,
-239,182,11,235,114,6,255,118,9,225,153,7,153,116,102,152,226,183,1,251,
-113,1,232,155,2,248,32,6,192,215,232,54,2,224,36,0,193,23,96,29,
-240,73,7,96,114,179,156,191,235,2,57,55,49,255,234,4,34,112,2,53,
-53,52,98,72,120,114,32,32,196,48,66,147,76,185,228,10,2,2,120,34,
-32,224,172,3,197,191,186,156,227,228,3,238,151,5,87,179,240,110,8,2,
-57,56,51,225,97,1,250,249,9,2,57,56,56,95,217,242,227,3,128,234,
-174,155,230,201,8,224,246,6,140,96,2,57,57,53,195,129,193,70,226,175,
-4,226,79,19,231,118,1,225,151,13,224,31,5,97,151,247,175,5,225,20,
-5,143,77,87,156,239,77,7,248,102,3,237,169,6,248,69,2,205,66,66,
-110,135,169,2,49,49,51,242,93,4,224,132,8,225,34,8,224,141,3,171,
-4,69,195,184,30,2,49,51,52,205,178,2,55,53,51,96,89,203,114,235,
-243,2,245,240,0,160,5,64,3,244,172,4,241,141,11,225,216,4,235,113,
-4,238,122,1,224,66,20,224,72,19,230,250,4,160,75,228,5,5,232,236,
-1,201,59,225,243,3,225,112,5,65,99,252,40,3,224,66,5,242,72,3,
-233,204,12,228,81,4,193,179,162,42,242,98,6,239,98,5,97,70,243,243,
-1,235,213,4,32,67,2,51,53,32,255,114,3,239,30,2,2,95,55,51,
-166,38,243,17,13,224,226,7,226,55,0,224,142,5,228,185,15,160,44,224,
-120,28,229,212,2,227,81,11,165,82,227,125,5,237,146,11,237,147,9,228,
-241,13,228,250,3,228,240,2,128,242,228,235,7,131,144,157,89,221,98,203,
-206,228,238,21,192,133,228,116,5,192,112,229,60,1,224,76,0,238,117,25,
-242,53,4,228,59,10,85,229,2,54,57,54,247,225,3,235,245,3,231,59,
-9,130,247,250,8,4,231,236,0,240,120,3,68,191,65,53,234,239,0,192,
-198,173,57,97,36,166,218,49,82,225,15,2,2,98,97,100,2,32,102,105,
-2,110,97,108,2,32,100,111,2,32,115,116,2,97,116,101,2,109,101,110,
-145,78,238,173,13,224,16,6,232,36,1,232,42,2,232,13,4,229,141,5,
-144,81,253,141,14,242,133,2,184,116,128,45,226,20,3,224,8,27,226,56,
-3,238,224,4,228,57,7,246,57,5,130,69,246,24,1,160,15,238,35,10,
-108,161,2,52,57,57,229,181,0,205,95,225,54,5,226,176,11,225,10,3,
-2,95,56,48,231,46,0,230,41,1,101,177,225,229,2,77,173,161,229,103,
-38,240,2,1,2,49,50,52,171,40,132,72,225,237,0,145,192,64,23,162,
-203,32,67,66,126,147,85,2,54,55,49,167,186,224,69,2,97,152,139,11,
-96,247,192,241,32,70,2,55,53,54,251,174,4,2,97,105,108,162,32,109,
-228,2,55,53,57,78,238,79,130,2,64,64,102,226,89,1,2,105,110,100,
-160,38,96,151,85,3,225,144,0,224,84,8,2,62,62,61,128,44,227,178,
-10,2,98,34,32,229,105,4,226,51,0,225,254,27,245,51,5,163,10,225,
-233,61,225,119,0,224,206,11,224,179,6,230,243,3,228,212,4,64,59,2,
-49,57,32,224,78,3,242,81,15,196,81,229,144,21,162,81,228,172,11,252,
-71,10,228,212,25,160,146,229,182,10,231,205,9,225,118,3,96,17,32,2,
-130,135,245,194,4,2,70,114,111,2,109,84,104,2,101,110,84,2,111,34,
-32,227,160,1,176,151,32,10,84,43,227,49,3,224,125,24,224,119,0,160,
-72,224,115,18,162,101,224,101,83,160,213,224,99,13,225,151,24,255,253,1,
-225,151,21,168,69,224,179,16,230,201,1,196,11,224,169,8,96,167,228,155,
-10,230,186,3,229,161,1,233,13,4,228,157,0,85,248,252,174,7,147,188,
-232,139,5,233,228,9,232,122,7,135,31,2,51,54,54,230,6,1,238,130,
-6,224,17,1,225,19,2,198,80,243,95,4,243,133,0,148,111,226,100,3,
-235,200,2,233,67,6,179,56,56,20,176,250,116,108,2,57,57,56,235,143,
-5,224,213,4,103,84,97,94,153,15,225,12,2,104,215,231,125,0,144,131,
-128,41,238,30,10,224,135,1,177,130,116,156,235,190,11,171,189,97,214,128,
-99,213,21,2,49,55,57,250,182,4,167,243,34,8,169,164,224,51,11,2,
-57,55,32,228,205,0,190,64,246,200,8,250,69,5,250,28,4,253,119,2,
-248,96,6,235,152,3,204,218,2,52,50,32,225,89,11,226,9,9,84,59,
-110,180,69,30,2,51,56,32,243,128,8,224,159,4,225,238,10,254,27,9,
-242,218,6,224,163,38,241,155,12,128,248,255,87,3,173,120,129,186,243,69,
-2,96,204,32,5,229,223,3,241,56,36,238,86,2,241,7,29,163,69,235,
-150,24,161,254,238,106,13,227,32,5,97,106,55,255,144,0,2,55,54,50,
-240,0,12,238,8,6,252,129,25,249,86,8,225,149,5,226,104,0,225,158,
-2,128,138,2,57,57,57,218,103,2,55,53,55,120,234,160,245,225,126,4,
-33,118,234,9,0,246,161,7,163,193,227,34,3,241,242,44,167,194,238,164,
-17,232,127,1,231,89,7,236,135,1,229,67,4,239,20,10,224,41,4,164,
-197,224,38,1,67,191,249,207,3,226,174,9,160,17,226,175,3,117,142,173,
-153,224,212,8,234,157,0,225,208,10,236,4,2,248,252,17,169,101,241,13,
-6,235,233,1,224,18,4,236,63,3,236,86,4,198,77,224,69,6,242,67,
-5,227,61,11,245,3,0,227,101,6,227,110,5,247,124,8,233,77,11,236,
-212,8,224,67,35,227,244,2,247,207,4,242,124,7,224,39,14,208,252,237,
-140,10,242,154,19,241,127,1,245,255,8,237,146,8,241,187,14,225,75,4,
-243,38,4,224,245,9,224,50,6,215,168,224,70,6,242,10,1,224,75,0,
-231,159,0,224,244,22,224,79,69,225,2,6,243,1,0,247,174,1,157,90,
-67,30,243,143,6,210,5,224,40,9,197,164,64,11,241,68,3,243,8,3,
-229,86,9,100,192,99,226,237,115,0,199,185,237,121,7,32,9,2,83,116,
-114,2,105,110,103,245,179,0,240,41,8,224,99,2,236,244,2,228,196,5,
-2,48,51,55,233,50,6,225,189,6,222,185,227,109,6,228,162,2,212,180,
-86,107,227,230,1,225,121,9,226,228,8,227,80,1,224,125,10,244,229,10,
-226,210,95,253,167,10,224,50,6,193,245,225,247,6,2,51,52,56,101,68,
-230,99,0,230,67,4,162,10,69,89,2,50,50,48,102,105,2,50,49,32,
-32,5,97,61,226,27,43,239,143,9,32,9,2,82,97,116,2,105,111,110,
-2,97,108,34,226,23,159,247,123,11,228,254,23,228,237,7,226,32,16,226,
-33,13,230,118,0,228,83,3,197,191,228,123,21,226,45,17,246,166,18,243,
-23,3,210,218,230,35,4,226,73,7,34,20,234,233,1,236,253,4,224,67,
-35,124,101,224,135,8,233,117,7,225,10,8,224,73,11,229,230,8,227,2,
-14,32,42,229,35,0,228,251,1,227,6,20,63,176,32,10,114,158,192,237,
-246,7,4,64,48,39,15,94,210,58,115,160,47,186,92,82,34,67,110,65,
-48,162,98,224,107,13,224,58,9,227,110,62,2,73,110,116,2,101,103,101,
-2,114,34,32,227,109,148,193,138,159,60,38,81,51,237,2,55,48,49,64,
-54,156,223,251,211,7,2,49,54,56,173,9,224,171,3,65,234,65,61,32,
-7,219,30,227,81,5,194,64,135,159,233,100,13,233,26,23,233,20,25,234,
-127,18,160,136,226,68,0,169,251,193,30,148,161,226,54,1,2,57,49,48,
-227,190,8,228,141,17,224,119,67,228,226,2,216,8,79,206,248,20,0,250,
-160,16,237,239,2,242,0,6,132,156,187,198,234,183,6,96,180,67,157,129,
-182,254,245,9,226,148,9,130,25,253,90,10,229,76,3,249,225,15,238,74,
-19,236,216,19,227,63,13,251,234,12,227,66,30,224,120,11,251,13,24,227,
-107,12,251,220,4,253,172,1,227,111,7,224,193,8,227,34,0,236,150,6,
-68,149,37,57,33,96,254,41,4,252,64,2,227,82,3,45,131,128,225,224,
-208,4,225,67,4,45,246,238,29,0,241,23,6,242,87,5,2,32,73,32,
-224,107,2,226,232,0,40,142,128,70,239,231,2,32,69,175,29,207,238,2,
-64,95,50,126,218,68,12,231,168,4,254,200,10,215,226,2,56,51,49,2,
-32,64,80,64,7,78,18,222,125,225,201,9,112,4,2,48,48,55,210,232,
-2,51,55,55,162,131,129,34,249,26,2,240,42,3,225,155,1,32,174,2,
-90,32,95,163,68,68,166,143,163,240,3,3,251,197,1,208,32,88,251,2,
-50,48,49,160,41,51,102,2,95,49,53,73,153,64,166,229,237,1,2,116,
-99,69,2,120,112,114,2,58,32,99,2,97,110,110,2,111,116,32,2,104,
-97,110,2,100,108,101,2,58,32,34,193,148,153,173,102,215,78,241,2,51,
-48,32,74,18,243,174,2,224,92,9,2,79,32,35,65,16,149,114,192,55,
-231,63,1,224,60,2,2,58,49,50,2,53,53,32,2,64,10,65,192,67,
-2,48,48,56,101,244,2,48,54,32,96,28,32,122,32,28,161,170,240,9,
-8,229,221,6,2,57,54,57,239,242,0,32,64,32,82,131,226,64,72,32,
-109,64,101,2,57,48,54,96,201,33,127,64,21,32,68,224,21,3,160,116,
-33,50,224,21,2,71,129,64,21,32,97,32,21,225,56,1,2,80,114,105,
-2,109,105,116,2,105,118,101,2,115,46,87,2,111,114,100,33,48,32,37,
-64,44,224,81,3,32,205,64,21,32,6,96,227,2,50,50,50,200,21,64,
-6,113,210,2,50,52,48,235,46,0,73,174,200,122,2,56,51,53,38,244,
-2,50,57,32,129,68,2,52,49,32,224,31,21,98,104,224,31,15,50,202,
-64,35,2,54,32,80,71,72,33,12,2,95,53,51,224,57,4,129,234,2,
-50,51,56,224,139,0,82,247,232,195,1,2,95,56,50,224,20,12,137,207,
-224,57,4,160,108,96,228,224,44,1,33,167,2,49,32,35,131,89,224,22,
-8,194,186,224,71,6,224,60,11,224,59,46,96,37,224,59,15,65,162,32,
-52,33,162,2,83,32,83,192,1,33,15,65,25,207,151,211,78,68,103,241,
-122,0,70,26,133,55,192,11,64,127,34,209,145,210,2,85,32,65,32,47,
-2,85,32,75,242,37,4,248,192,0,230,166,2,96,57,66,244,67,235,64,
-52,96,15,33,167,224,60,1,85,100,105,183,224,32,15,219,207,224,38,23,
-224,34,29,224,245,97,107,5,224,245,124,224,246,11,230,187,4,160,17,198,
-168,224,246,19,224,184,27,224,144,27,37,250,132,230,2,50,51,50,163,128,
-98,149,224,232,19,224,51,9,32,168,32,37,224,53,26,41,248,129,231,224,
-60,3,71,24,224,59,16,117,113,224,32,18,227,248,3,235,89,0,224,206,
-3,224,92,63,67,197,35,65,35,197,2,66,32,89,192,198,203,160,236,178,
-3,128,27,130,125,65,129,160,76,224,107,17,64,13,192,107,196,110,233,195,
-2,64,96,226,213,0,224,92,2,68,83,224,91,43,225,128,31,128,58,224,
-183,41,247,255,2,194,238,226,84,14,160,97,224,32,25,138,17,225,116,2,
-235,75,0,192,198,122,113,32,165,192,51,224,14,9,33,190,224,16,2,97,
-206,136,27,195,131,193,99,33,220,233,49,0,105,151,225,220,15,72,44,64,
-179,65,130,128,177,225,45,9,160,23,225,36,5,131,235,65,215,72,139,252,
-148,0,227,72,8,192,84,224,25,17,64,197,136,196,32,134,2,52,32,90,
-130,14,64,21,168,145,97,30,102,152,2,53,54,56,230,233,9,224,20,2,
-96,135,64,57,168,181,224,57,12,230,231,1,224,57,11,136,217,43,117,103,
-43,225,11,0,64,14,40,13,224,123,2,64,44,136,240,2,85,32,90,224,
-181,2,64,38,128,203,224,20,3,136,222,2,102,47,32,64,12,135,72,71,
-59,72,239,72,106,32,6,128,100,2,50,53,32,96,6,35,165,71,98,40,
-169,35,34,64,124,64,115,2,38,48,46,64,167,142,46,232,65,0,72,211,
-128,1,2,95,54,51,224,43,7,232,105,3,244,118,3,64,19,64,44,192,
-206,228,130,5,160,60,2,38,49,46,96,67,32,43,32,150,64,185,132,60,
-2,85,32,67,138,110,128,175,2,80,32,38,96,40,128,197,128,59,160,58,
-2,64,64,89,32,39,32,32,128,80,251,112,0,224,246,0,75,57,162,27,
-32,74,128,16,32,139,235,168,1,64,117,130,227,2,105,116,111,2,102,32,
-58,128,50,225,220,0,64,15,130,38,130,225,2,115,101,113,151,195,96,8,
-32,154,128,65,162,15,85,166,2,56,51,56,105,219,225,42,1,64,123,129,
-18,73,171,64,6,97,233,2,50,51,48,64,40,2,57,32,95,192,39,62,
-88,192,11,64,84,130,42,2,102,62,61,96,133,170,252,2,62,32,58,128,
-64,64,12,2,60,61,32,64,13,161,252,2,60,32,58,128,105,64,12,2,
-110,101,103,96,14,129,81,2,102,42,32,64,12,128,232,2,102,45,32,64,
-12,128,230,2,102,43,32,64,12,128,227,248,183,2,192,8,160,225,43,53,
-162,117,2,50,32,65,160,18,128,159,65,126,112,39,38,188,64,21,128,167,
-208,71,240,85,0,145,185,254,137,30,212,162,241,55,14,224,30,5,238,142,
-0,81,49,255,172,15,179,235,224,85,19,206,86,224,85,46,174,168,160,216,
-192,25,207,110,197,231,165,157,241,107,17,225,54,6,255,159,9,245,168,1,
-242,233,14,242,224,16,174,196,70,17,2,57,49,52,64,198,2,57,56,32,
-244,233,3,211,122,224,42,0,224,27,11,224,94,10,210,37,224,51,8,241,
-223,3,242,63,9,176,82,224,53,8,161,136,224,25,10,246,186,1,207,137,
-34,113,84,127,238,22,15,53,68,142,21,64,58,224,36,4,2,68,97,116,
-2,97,46,73,149,99,2,95,84,121,2,112,101,46,245,112,1,64,47,163,
-70,224,84,11,2,70,108,111,2,97,116,87,160,39,131,95,240,161,1,132,
-38,144,166,47,103,112,207,147,163,64,45,175,105,206,155,33,83,64,21,163,
-137,224,107,11,2,67,104,97,192,145,239,63,3,2,57,57,54,128,20,131,
-150,194,176,225,155,1,98,175,67,252,79,169,112,235,242,103,4,241,220,4,
-208,161,255,154,5,159,15,64,99,166,178,241,33,11,40,64,97,134,236,81,
-2,224,90,2,72,179,224,43,1,96,94,2,56,53,32,161,21,128,14,32,
-61,133,193,70,201,226,37,6,100,128,66,100,64,12,166,235,160,6,242,21,
-1,32,68,64,77,128,173,104,34,242,0,4,124,226,51,124,37,101,128,118,
-96,120,240,198,1,224,159,1,65,7,162,121,64,10,144,114,85,197,65,116,
-2,54,49,56,112,210,144,76,64,28,65,244,32,182,66,159,2,79,32,64,
-160,155,51,74,32,39,192,104,37,42,81,38,129,250,64,58,103,248,2,80,
-32,83,161,44,241,77,5,33,121,160,56,225,205,1,36,123,245,66,10,241,
-93,8,193,236,225,190,3,34,117,69,138,235,40,4,224,112,5,129,132,192,
-106,254,252,0,103,65,180,3,244,206,4,243,24,4,224,150,0,98,99,160,
-128,115,200,99,213,167,134,2,50,54,56,96,119,104,201,32,222,96,144,224,
-15,7,138,16,2,57,52,53,227,47,0,242,158,2,227,20,1,2,101,120,
-105,2,115,116,101,2,110,116,105,2,97,108,115,2,32,110,111,2,116,32,
-97,2,108,108,111,2,119,101,100,2,32,105,110,2,32,112,97,2,116,116,
-101,2,114,110,32,2,98,105,110,2,100,105,110,254,185,1,226,242,14,65,
-64,2,49,50,55,193,107,225,58,9,2,56,54,53,226,73,0,73,123,224,
-29,4,65,204,132,29,107,7,230,221,2,247,158,0,251,14,1,254,46,2,
-197,44,193,149,185,99,204,193,34,227,74,233,134,52,250,52,6,244,189,7,
-2,55,52,53,65,32,96,143,250,53,2,2,99,110,83,160,250,250,171,3,
-246,141,9,225,226,0,195,30,2,57,53,32,227,174,8,66,99,229,216,2,
-205,102,183,239,225,15,2,231,36,3,231,44,2,224,34,3,246,241,0,35,
-42,224,32,0,65,117,2,55,50,49,195,35,236,68,5,32,25,32,58,128,
-49,68,30,160,36,181,99,132,3,195,227,117,30,65,209,138,172,224,104,0,
-131,1,164,47,239,209,2,226,246,1,252,247,1,132,217,250,143,3,220,227,
-246,232,1,225,70,5,115,228,65,146,225,128,4,2,68,34,32,228,130,5,
-161,203,193,136,131,47,96,59,43,16,228,42,0,225,178,11,205,193,225,187,
-6,225,65,2,225,98,17,239,26,0,133,69,200,78,227,226,0,253,238,3,
-226,159,0,64,112,226,150,4,160,19,97,141,35,214,128,92,129,130,161,78,
-197,142,229,150,0,226,91,6,224,58,18,228,148,0,225,233,25,225,210,22,
-227,19,9,225,227,3,225,187,2,130,237,2,50,48,53,225,73,1,131,206,
-208,179,233,227,3,2,56,56,49,37,207,2,57,49,32,224,213,5,229,5,
-2,108,85,80,23,2,95,49,57,2,52,32,85,82,129,225,2,0,227,187,
-3,229,61,7,32,85,96,225,225,190,3,96,134,168,29,75,67,160,132,2,
-54,49,51,96,100,183,169,64,108,224,168,21,162,25,128,97,200,140,2,57,
-54,50,97,105,2,57,50,48,193,132,160,113,203,246,121,140,232,57,10,105,
-100,229,69,18,136,58,232,59,8,129,244,160,99,200,162,179,18,231,149,1,
-103,93,224,94,16,228,141,9,166,61,224,106,5,95,60,66,64,192,109,204,
-148,96,109,225,247,4,2,49,57,57,233,6,20,134,17,233,6,16,64,126,
-103,244,136,143,2,85,32,95,164,183,224,102,8,254,224,0,224,124,11,116,
-211,168,180,64,87,96,24,138,65,93,224,160,93,250,191,8,124,198,232,194,
-2,233,239,1,225,83,3,134,217,137,238,192,107,128,18,235,57,0,251,177,
-7,137,207,32,49,96,246,101,73,250,90,3,105,81,100,54,64,69,156,142,
-225,195,9,192,32,2,57,55,32,160,212,136,237,71,59,64,167,64,17,183,
-221,237,13,0,114,161,73,66,104,140,225,28,1,229,44,3,226,108,2,103,
-1,48,217,232,35,10,237,179,7,193,19,226,204,4,225,25,3,235,39,12,
-96,32,191,35,64,26,96,30,225,168,0,128,195,171,236,160,189,65,56,64,
-127,32,57,224,168,0,227,152,3,32,30,251,34,0,227,173,5,60,62,205,
-146,225,143,6,147,51,113,164,36,83,2,95,51,51,160,126,224,40,12,251,
-118,0,2,51,56,56,234,204,7,64,62,225,26,2,230,43,6,100,205,66,
-218,135,60,241,11,0,104,9,99,63,224,177,1,2,55,48,52,130,40,231,
-33,4,228,215,1,2,56,55,32,234,85,1,128,136,160,223,231,102,11,41,
-49,255,76,4,101,240,224,181,1,233,119,0,226,10,1,148,84,226,21,13,
-97,179,229,242,0,255,88,1,233,136,3,224,81,3,224,1,1,32,58,106,
-133,224,58,0,133,224,128,2,226,27,2,234,245,3,65,154,192,108,162,102,
-160,47,229,222,4,39,218,255,235,0,240,57,7,162,19,224,142,4,226,28,
-15,231,140,1,233,202,5,231,181,4,235,69,0,224,135,9,2,55,48,53,
-234,106,4,224,164,11,230,132,5,237,67,1,65,87,131,91,66,20,245,62,
-0,2,51,32,75,2,52,32,75,2,52,32,65,224,26,0,134,65,136,75,
-239,5,1,224,183,1,247,152,2,225,195,13,98,0,2,56,57,32,161,192,
-225,183,0,133,120,227,203,7,224,55,6,166,202,226,72,8,171,191,254,157,
-6,2,52,49,52,230,89,9,101,200,255,185,0,224,49,32,160,177,97,42,
-67,169,42,204,2,51,48,49,64,122,124,70,67,187,164,168,227,194,3,225,
-234,8,161,188,233,116,0,129,50,2,95,50,56,116,34,227,24,1,237,233,
-0,218,34,160,4,236,189,10,224,20,0,2,51,48,51,205,111,64,78,224,
-21,0,148,147,224,163,2,224,0,1,128,126,139,233,158,195,2,50,56,52,
-208,88,238,62,4,104,111,224,127,12,104,254,2,52,49,55,192,59,2,95,
-50,48,85,115,226,212,0,225,166,8,66,70,200,36,225,32,8,72,186,192,
-151,225,28,15,46,120,32,35,151,17,64,1,224,148,9,192,17,78,143,225,
-176,7,225,9,13,64,148,136,75,2,95,51,52,2,56,32,102,242,56,5,
-2,83,116,114,46,103,2,46,73,115,128,8,75,244,64,48,176,45,224,48,
-10,2,78,117,109,64,3,160,40,64,192,200,165,48,65,163,157,194,117,66,
-118,33,61,138,202,230,16,0,240,103,1,128,66,135,97,64,57,69,82,229,
-42,2,35,56,101,23,87,56,129,118,237,97,4,227,75,0,163,142,64,52,
-33,117,224,28,6,164,111,192,26,231,95,2,229,41,6,200,223,224,95,1,
-241,193,2,186,133,64,50,134,108,195,78,224,15,5,224,211,0,184,184,2,
-56,57,54,32,4,81,106,114,32,96,230,169,31,169,37,130,3,231,109,4,
-149,147,233,190,13,228,143,1,234,96,4,162,21,2,57,52,49,230,76,0,
-66,177,77,215,233,103,1,224,77,8,64,149,199,37,77,97,101,48,246,213,
-0,175,247,239,244,14,230,14,8,228,105,0,32,84,64,6,171,204,240,35,
-1,255,183,3,64,36,64,170,220,157,2,49,56,50,224,242,0,34,210,85,
-41,2,54,54,32,96,38,251,19,0,2,57,56,53,227,196,1,84,150,77,
-141,226,74,2,179,50,246,244,14,64,7,192,117,160,250,185,29,76,69,2,
-95,54,55,32,24,64,20,185,34,142,111,196,157,32,141,106,118,64,32,227,
-223,0,32,129,121,4,2,48,48,50,128,58,131,100,154,227,168,244,140,84,
-96,29,131,81,67,210,32,80,170,74,74,134,161,125,224,167,3,152,169,106,
-234,138,104,96,140,177,90,231,61,1,193,163,225,155,0,229,250,3,225,4,
-0,248,36,1,130,117,178,178,2,56,48,54,226,80,2,179,37,243,3,2,
-244,105,4,238,182,1,106,230,193,113,128,95,236,33,2,229,86,3,162,138,
-255,56,0,245,110,13,224,157,1,244,202,12,98,28,228,77,0,75,97,216,
-176,224,57,3,245,26,10,227,39,12,75,55,130,62,100,173,242,156,8,64,
-31,2,53,32,35,231,137,1,228,40,3,224,102,0,2,55,54,32,229,99,
-7,245,45,5,65,186,131,255,2,75,32,66,230,9,11,53,33,239,138,16,
-239,51,3,39,84,200,77,239,135,22,41,3,156,127,233,3,4,64,136,196,
-117,37,90,249,177,5,177,65,250,196,5,250,193,10,216,196,225,198,0,224,
-40,16,168,71,224,214,0,145,178,250,24,4,164,174,143,164,165,5,233,90,
-6,72,171,38,51,2,54,49,32,232,77,10,66,85,128,26,231,53,3,69,
-109,173,89,177,170,245,131,9,95,56,244,98,3,2,116,111,111,2,32,109,
-97,2,110,121,32,2,97,114,103,2,117,109,101,2,110,116,115,244,112,1,
-224,62,15,224,61,5,2,102,101,119,224,60,7,2,95,56,52,218,40,250,
-92,10,161,32,96,254,247,251,5,224,37,4,128,204,224,37,8,251,75,15,
-186,206,224,73,11,192,25,98,237,224,111,16,224,36,1,238,74,4,236,46,
-3,96,14,33,7,147,238,72,126,101,150,160,59,227,54,4,128,76,95,143,
-131,250,68,175,252,9,18,143,205,224,32,18,167,87,224,33,19,128,67,224,
-218,11,192,25,97,0,225,114,18,199,35,225,114,3,229,93,8,192,76,243,
-140,1,250,168,5,229,134,6,224,77,3,253,13,30,244,232,2,224,31,3,
-183,222,224,78,0,224,114,10,224,192,2,244,192,1,224,154,29,124,127,228,
-187,0,112,47,109,140,37,113,137,184,96,52,227,110,9,248,234,28,2,66,
-97,100,216,210,214,78,68,148,180,30,103,65,66,61,124,61,101,155,196,171,
-166,55,239,114,0,196,119,224,23,1,231,1,0,161,47,103,24,193,103,199,
-36,234,25,0,228,174,0,255,170,25,255,217,30,197,23,233,48,3,175,162,
-224,47,13,255,235,1,238,83,4,229,71,15,228,64,22,145,216,234,5,5,
-180,151,241,37,8,242,37,6,64,117,105,255,33,174,230,198,3,246,103,10,
-243,181,14,233,100,5,235,177,2,231,111,7,242,231,2,232,151,8,234,17,
-5,235,170,2,251,164,10,106,209,2,52,50,32,231,120,2,231,224,11,138,
-75,66,78,40,39,255,148,1,225,20,37,2,56,54,54,237,63,4,234,81,
-7,224,240,0,252,246,16,241,19,4,169,36,192,14,133,136,241,115,1,192,
-129,249,25,3,225,41,9,236,168,3,204,174,224,124,4,242,57,2,240,102,
-3,129,88,245,134,2,252,250,7,227,41,0,195,248,139,228,103,97,228,24,
-4,228,240,3,104,154,2,51,53,32,233,6,6,226,123,39,252,153,1,237,
-209,1,227,119,26,181,40,227,71,0,230,23,16,209,57,227,71,9,192,25,
-32,207,229,151,5,128,224,234,20,5,226,249,3,227,34,3,203,177,227,50,
-3,225,65,1,138,200,225,65,12,161,206,181,172,73,218,2,57,56,54,138,
-235,2,52,50,53,74,38,72,69,236,151,2,226,139,6,252,162,5,255,84,
-8,32,77,37,85,78,14,76,158,224,69,5,47,71,224,147,5,251,225,4,
-232,63,13,224,228,4,241,62,8,2,48,48,51,160,78,99,114,238,113,1,
-248,159,5,235,254,6,209,7,66,186,192,63,195,230,224,154,2,236,229,12,
-165,71,227,149,8,224,10,0,230,245,14,224,199,6,239,111,7,224,175,25,
-166,76,228,139,7,65,191,72,65,2,95,57,57,128,154,225,145,8,64,13,
-250,1,4,128,227,32,72,2,54,49,49,196,158,253,3,9,227,50,2,130,
-233,76,255,183,32,128,6,64,123,2,52,55,52,107,50,227,77,6,241,36,
-11,236,0,1,228,161,4,227,53,4,228,72,8,234,123,2,227,145,14,225,
-239,10,164,113,236,107,0,232,206,8,225,140,4,227,111,4,93,71,208,74,
-2,55,54,50,248,13,8,198,178,237,159,4,246,88,12,247,68,2,232,4,
-2,230,90,7,225,217,2,128,184,230,107,8,96,51,2,57,57,57,195,173,
-2,55,53,55,105,6,166,38,225,186,4,140,205,149,244,32,24,97,166,80,
-17,201,185,192,17,2,75,32,75,224,61,0,2,52,55,54,128,18,150,139,
-137,148,210,135,233,239,34,224,40,11,197,232,203,221,239,14,6,52,111,228,
-11,4,246,224,2,255,84,6,229,89,4,227,129,12,232,204,2,73,142,2,
-85,32,67,229,16,3,138,68,117,252,32,25,116,10,245,86,0,244,101,5,
-2,110,101,103,2,97,116,101,202,46,227,211,0,240,96,8,162,8,228,7,
-8,174,216,232,152,1,231,13,13,232,167,18,249,97,5,240,229,1,249,41,
-5,254,73,15,228,192,7,224,71,7,227,38,8,232,253,9,148,108,224,8,
-3,229,61,27,224,113,8,249,18,7,228,85,4,227,22,8,138,187,248,166,
-6,251,89,3,251,97,0,2,95,53,56,248,51,0,233,37,11,225,119,1,
-226,20,1,38,141,2,48,55,32,237,8,9,64,23,99,72,241,13,1,232,
-216,9,225,255,13,254,70,10,224,225,6,232,238,7,244,228,0,225,1,3,
-232,247,7,39,127,2,51,49,32,128,90,39,47,2,56,51,50,68,137,221,
-159,233,7,23,225,117,4,83,45,246,184,7,253,3,12,224,206,10,230,129,
-6,68,31,227,82,6,117,138,2,95,56,49,224,29,27,32,71,241,48,9,
-231,255,8,224,144,4,148,242,231,52,5,227,102,3,224,108,9,32,51,51,
-130,35,0,32,65,227,207,1,2,98,105,110,2,100,34,32,235,75,15,132,
-88,227,140,6,204,231,244,198,5,221,121,229,230,2,224,57,4,224,35,2,
-242,227,0,72,143,97,120,227,15,7,97,190,193,157,233,158,11,226,139,8,
-2,48,53,48,224,150,4,234,230,7,226,239,0,239,191,0,67,60,245,58,
-12,102,70,99,68,105,159,227,68,12,237,30,11,224,240,8,113,101,150,21,
-248,165,0,231,184,3,235,239,9,226,178,7,251,112,8,64,193,79,153,228,
-88,4,224,241,10,235,205,4,224,0,6,227,173,11,64,7,122,208,227,30,
-25,250,230,1,2,50,48,49,183,238,36,122,2,95,49,53,74,96,67,137,
-243,137,2,2,99,80,97,2,116,58,32,130,96,99,51,68,164,64,49,35,
-204,35,188,98,152,240,155,2,224,76,10,2,79,32,35,67,227,135,70,192,
-55,233,7,6,168,37,174,28,65,89,97,190,65,198,65,192,34,104,2,55,
-53,54,224,151,3,2,61,61,34,231,224,0,224,34,14,2,84,114,117,230,
-230,1,224,163,4,81,12,152,136,67,77,255,114,2,43,199,163,95,96,35,
-152,139,2,75,32,95,97,39,64,17,152,131,2,80,32,58,96,55,152,143,
-40,86,32,14,35,154,152,217,37,0,226,234,4,229,5,9,98,145,225,236,
-6,32,46,95,207,132,56,64,78,251,181,1,246,225,8,2,56,56,54,251,
-68,0,230,8,0,226,185,5,131,187,235,20,2,224,147,0,255,99,21,133,
-40,248,227,14,239,93,1,231,1,14,228,53,0,130,180,232,88,1,75,89,
-195,137,128,19,64,104,64,197,64,7,229,45,4,170,82,237,123,0,97,151,
-98,21,129,36,83,19,225,62,7,65,47,152,17,253,254,1,128,67,234,163,
-1,234,177,5,230,164,4,105,79,236,11,2,224,60,8,93,55,224,245,2,
-96,14,235,172,4,226,192,0,196,40,224,61,0,133,48,129,15,245,179,2,
-105,236,196,77,96,23,34,161,2,53,56,32,67,195,131,40,160,7,234,126,
-2,235,112,3,224,2,2,229,250,1,225,218,2,224,2,3,137,174,225,157,
-2,253,120,14,2,85,32,95,155,190,248,21,0,118,104,193,27,239,22,5,
-128,7,106,11,252,36,3,32,0,224,9,0,236,31,13,161,2,96,86,224,
-210,6,241,186,3,96,92,130,30,225,6,5,237,32,3,244,134,2,224,231,
-0,201,108,237,80,3,229,235,1,107,208,235,210,4,236,206,2,148,231,140,
-159,241,119,10,225,235,1,173,226,224,26,5,224,148,4,128,221,225,180,17,
-129,17,224,66,9,226,145,0,224,127,14,224,106,0,129,151,224,35,20,227,
-178,3,242,5,6,224,2,0,238,181,1,224,14,3,240,187,8,224,1,11,
-33,98,224,130,4,224,234,16,224,246,12,237,13,6,238,30,1,224,5,12,
-246,104,9,128,72,242,161,1,102,153,203,0,131,142,141,3,138,225,223,122,
-166,102,2,50,54,56,224,42,5,119,142,34,107,96,22,64,44,99,147,128,
-65,192,22,64,8,235,151,4,244,11,11,235,248,10,227,130,1,225,60,3,
-239,210,14,225,138,0,225,32,6,224,181,12,251,200,1,96,223,225,13,0,
-96,186,225,13,23,224,225,14,200,39,199,151,227,13,6,228,68,3,227,173,
-8,175,130,65,37,132,244,231,117,3,232,94,12,2,97,109,98,2,105,103,
-117,2,111,117,115,2,32,111,112,2,101,114,97,2,116,111,114,2,32,101,
-120,2,112,114,101,2,115,115,105,2,111,110,34,228,73,10,226,70,4,255,
-91,3,193,101,224,240,1,32,211,225,29,3,224,209,10,224,172,38,2,98,
-97,100,2,32,112,114,2,101,102,105,2,120,32,101,224,164,9,228,250,2,
-2,95,49,55,2,54,32,102,224,55,0,2,92,51,52,2,38,115,114,2,
-99,47,77,2,105,99,114,2,111,72,115,2,47,70,105,2,120,105,116,2,
-121,46,104,2,115,92,51,2,52,38,44,2,54,52,58,2,55,34,32,192,
-56,100,238,233,174,1,225,210,0,174,28,173,132,32,215,33,176,183,124,214,
-100,234,146,0,111,244,39,18,98,210,129,1,128,0,2,80,32,75,2,50,
-32,85,132,253,40,213,133,237,2,64,89,32,205,183,237,180,12,129,43,139,
-100,64,79,233,202,0,213,223,128,113,128,122,160,115,65,66,103,227,2,54,
-52,32,233,122,5,64,19,234,138,1,64,100,135,16,132,168,132,124,228,91,
-0,230,149,3,136,70,160,179,232,125,0,180,33,234,48,0,239,59,3,224,
-61,7,193,25,224,33,1,225,3,1,161,25,114,33,224,21,0,72,86,159,
-223,139,71,75,72,32,208,157,157,32,5,2,49,32,35,105,136,64,39,155,
-114,234,140,17,241,117,2,64,46,155,138,2,65,32,58,129,44,32,11,2,
-90,32,85,138,71,202,116,64,11,138,110,229,200,2,236,21,3,64,32,138,
-131,114,218,32,14,66,203,74,212,2,52,57,32,148,136,65,95,146,87,86,
-153,108,8,114,34,160,6,172,33,64,11,96,29,224,23,11,160,48,129,180,
-35,17,110,129,100,46,64,112,202,165,41,18,239,254,2,233,103,9,248,59,
-7,227,191,6,253,148,9,119,224,169,242,2,55,48,57,248,235,9,255,96,
-5,236,207,32,2,103,101,116,2,65,112,112,2,67,111,110,204,211,236,144,
-7,255,206,3,2,85,32,73,202,95,74,164,161,138,160,105,2,52,32,80,
-226,21,15,230,37,0,34,7,2,50,56,57,161,43,130,74,104,124,64,14,
-189,164,2,57,56,48,215,224,253,169,0,83,122,76,75,199,144,106,62,238,
-60,2,46,96,229,20,5,239,165,6,234,200,1,108,85,46,107,176,169,66,
-219,240,167,9,64,113,130,132,32,209,2,57,55,57,254,115,0,235,99,1,
-64,34,130,152,236,143,12,128,240,169,218,67,103,79,122,32,50,75,241,64,
-58,130,199,65,178,2,80,32,102,225,139,0,2,118,97,108,141,161,238,110,
-2,2,121,112,101,97,151,224,18,1,2,107,105,110,144,223,224,18,1,2,
-115,111,114,2,116,34,32,128,90,131,1,237,39,13,207,251,235,138,1,240,
-62,3,170,95,2,52,52,32,218,38,76,90,132,173,2,51,55,55,228,227,
-1,239,157,14,65,149,132,85,90,8,224,54,4,129,84,65,5,236,147,0,
-197,167,243,159,6,247,232,9,231,244,0,227,19,19,96,144,2,55,49,51,
-160,194,160,117,246,201,23,36,148,194,154,249,198,16,224,94,1,141,176,64,
-94,197,176,99,95,225,134,2,2,101,116,83,2,76,111,99,2,69,120,112,
-2,114,34,32,160,242,132,16,215,160,151,207,198,144,96,71,197,137,173,252,
-96,19,64,56,131,95,2,79,32,58,128,27,97,211,128,180,2,51,52,53,
-160,35,197,100,244,140,2,174,41,234,214,0,237,214,0,83,156,32,48,183,
-3,193,119,228,147,1,248,73,0,224,55,3,35,44,2,57,55,32,32,150,
-146,212,163,188,160,6,128,33,67,252,104,52,192,49,228,105,15,2,117,110,
-100,40,42,2,110,101,100,164,104,130,99,241,62,0,224,54,15,228,151,0,
-2,51,48,54,236,242,2,43,240,226,17,0,104,171,238,44,4,231,17,0,
-224,157,2,226,182,0,224,105,15,233,123,1,200,126,221,57,136,107,224,61,
-21,192,167,210,140,96,51,160,180,242,3,22,130,0,83,0,96,45,72,127,
-39,127,181,243,205,211,253,125,0,135,182,2,95,57,48,253,169,5,177,213,
-198,137,67,197,98,27,228,96,3,2,91,93,34,232,45,3,224,146,8,2,
-57,49,32,233,179,0,251,203,1,224,254,0,166,212,69,230,224,53,4,32,
-6,250,93,0,224,91,16,64,144,250,57,4,224,91,3,228,34,1,133,119,
-237,119,1,237,89,3,229,241,7,224,16,4,64,70,64,64,133,149,2,83,
-32,83,110,152,228,92,17,190,109,224,33,19,132,69,165,44,224,33,12,197,
-231,188,124,228,159,17,35,182,242,26,5,254,253,9,96,75,151,84,65,23,
-43,172,124,148,88,11,196,47,193,241,245,134,0,160,134,65,243,224,57,11,
-148,61,224,57,1,224,93,13,171,97,224,93,1,246,211,4,224,240,5,197,
-62,197,195,224,29,5,97,148,224,217,9,96,22,2,85,32,83,165,200,224,
-125,2,107,186,135,33,93,127,254,101,1,254,190,3,2,57,56,51,226,55,
-1,225,75,11,224,214,1,35,67,2,55,48,49,163,113,192,101,39,194,182,
-20,128,226,36,20,36,21,128,39,194,234,230,130,21,128,20,224,239,8,98,
-31,225,9,12,206,151,225,8,5,160,220,102,79,221,32,230,112,8,2,85,
-32,66,224,187,3,32,169,255,113,4,254,156,5,225,179,0,224,56,9,125,
-229,224,46,16,231,25,23,225,99,8,225,244,17,225,4,16,156,161,254,33,
-12,225,177,23,57,69,199,107,129,178,224,198,1,226,195,10,156,52,225,12,
-3,224,95,23,173,27,224,94,0,224,60,2,226,98,13,235,81,34,2,100,
-115,69,2,70,105,101,2,108,100,115,235,80,12,68,162,236,197,1,2,80,
-32,35,131,29,32,194,64,25,233,188,32,241,35,4,249,117,4,32,12,2,
-51,56,32,199,94,235,7,0,193,15,227,87,2,2,56,57,51,234,212,5,
-128,158,91,13,141,186,2,50,50,48,192,26,99,146,75,54,2,57,54,52,
-133,104,64,100,202,254,2,57,56,54,199,31,137,36,136,231,75,225,225,39,
-17,2,101,110,117,2,109,34,32,229,249,0,81,158,120,62,37,186,229,167,
-8,224,19,7,67,121,252,16,4,96,17,255,239,0,107,213,141,185,224,39,
-7,128,242,160,39,97,230,192,39,224,100,7,224,99,8,224,98,4,2,95,
-53,55,114,40,224,101,12,130,187,224,140,1,239,225,0,64,231,201,204,97,
-253,101,244,129,252,70,210,139,29,66,104,33,105,2,49,54,32,193,62,2,
-49,51,51,225,58,3,2,66,111,111,2,108,34,32,160,79,135,232,224,28,
-1,2,68,97,116,2,97,46,66,32,33,2,95,84,121,2,112,101,46,32,
-39,64,37,231,87,0,211,64,253,2,5,66,121,255,82,6,244,133,7,249,
-82,10,100,84,2,50,56,32,242,147,5,238,227,8,44,6,252,202,5,226,
-220,3,32,155,227,122,1,179,62,178,194,224,109,2,170,140,71,221,99,173,
-231,69,6,244,119,0,255,145,26,161,95,99,207,42,219,228,29,0,2,50,
-52,48,224,170,2,224,72,4,96,48,170,175,2,48,50,55,241,194,6,228,
-13,20,2,110,111,116,2,32,112,111,2,108,121,109,2,111,114,112,2,104,
-105,99,2,32,101,110,2,111,117,103,2,104,58,32,130,249,83,112,73,116,
-2,95,49,57,32,63,234,225,1,227,149,5,103,37,64,130,47,62,2,52,
-49,55,235,195,1,224,41,8,97,234,137,1,132,53,36,177,96,90,33,6,
-100,241,64,15,2,49,51,48,68,84,132,79,64,48,132,143,67,14,67,16,
-96,137,169,149,64,29,251,214,5,64,70,130,72,229,240,3,222,246,129,164,
-77,254,2,49,50,53,96,204,255,207,1,162,123,254,230,5,96,48,78,179,
-225,81,5,239,205,5,226,173,5,246,104,8,227,50,0,254,113,1,178,197,
-116,218,65,175,236,171,2,238,181,5,40,27,32,42,179,204,100,187,234,163,
-0,64,236,132,227,240,83,8,224,76,2,2,50,51,32,129,132,32,43,222,
-192,104,234,186,46,162,80,224,126,12,64,84,2,55,49,57,131,69,129,250,
-251,198,7,64,188,32,129,236,18,11,244,222,4,165,222,100,56,2,55,50,
-48,131,37,2,50,53,32,224,202,1,132,118,128,233,160,139,2,55,50,49,
-191,15,128,46,64,72,145,140,64,57,164,139,2,55,50,50,193,32,223,61,
-97,35,128,10,64,43,204,105,230,176,6,61,189,235,164,0,227,134,2,65,
-157,151,98,235,59,0,226,14,3,228,26,5,203,65,231,15,10,192,94,246,
-245,5,227,239,4,164,52,32,110,130,10,204,106,240,189,7,156,141,161,39,
-191,7,224,108,12,78,114,129,208,224,210,8,66,6,226,36,4,232,178,4,
-228,206,6,68,69,150,18,224,136,12,224,43,4,118,18,96,109,100,39,247,
-15,3,160,6,168,236,99,88,231,223,3,160,249,246,68,0,226,140,2,225,
-41,6,231,233,2,38,217,109,76,194,203,128,141,235,177,2,193,71,225,157,
-0,228,129,6,224,17,5,193,231,65,89,132,151,236,187,0,190,25,208,106,
-242,80,10,213,216,230,78,0,250,229,0,251,72,7,220,128,251,101,12,100,
-120,225,208,8,139,78,251,122,2,251,250,3,252,21,4,249,236,7,217,242,
-194,117,64,202,239,26,0,100,62,128,188,96,172,224,79,0,253,242,3,96,
-10,160,59,68,255,135,65,64,14,253,106,6,224,117,6,224,150,0,229,14,
-3,254,157,0,129,7,165,14,73,158,159,169,224,151,22,219,156,149,85,224,
-131,6,65,228,102,38,243,206,4,118,4,184,28,225,61,11,251,221,8,162,
-215,251,41,3,224,9,0,128,147,162,223,165,178,192,126,224,65,1,104,148,
-231,221,8,250,254,11,252,64,8,243,25,0,192,99,228,10,3,224,26,1,
-64,16,128,167,224,31,4,224,131,2,183,4,224,84,1,255,190,2,243,101,
-1,224,203,2,224,92,5,64,47,82,169,139,33,172,166,97,150,34,2,87,
-48,195,113,67,43,135,146,2,79,32,80,103,194,2,51,48,51,119,246,66,
-39,67,214,64,39,64,27,64,107,92,175,136,15,52,24,35,166,35,189,129,
-177,32,39,70,83,224,39,17,150,237,32,157,107,60,224,39,16,2,49,49,
-56,192,39,72,66,96,147,92,73,164,129,74,165,199,52,64,185,136,46,239,
-82,5,115,170,227,197,7,254,10,1,165,188,238,140,9,226,2,11,225,141,
-5,224,30,12,224,85,16,227,242,0,224,85,22,226,102,6,98,22,65,48,
-244,98,5,227,34,0,65,2,32,250,65,30,235,137,9,75,132,2,76,105,
-116,2,115,46,75,2,110,111,119,2,110,83,121,2,109,98,111,75,187,64,
-47,246,27,0,225,42,138,240,41,2,225,42,75,250,61,1,229,154,11,163,
-32,224,158,0,164,221,69,45,118,122,230,95,3,43,195,224,150,2,236,188,
-2,241,207,2,157,82,230,116,2,228,160,7,229,24,2,224,25,8,224,131,
-0,248,28,10,224,45,9,225,40,2,255,168,18,224,119,5,230,92,10,132,
-75,230,211,15,224,49,4,230,136,3,251,95,0,229,111,17,128,6,100,165,
-201,64,202,15,231,127,2,71,141,2,54,56,32,224,45,0,68,184,255,139,
-7,225,224,4,224,107,32,100,37,66,6,235,88,0,231,28,5,97,155,251,
-203,4,96,154,2,48,57,48,249,211,0,192,82,208,239,226,11,7,225,207,
-5,226,226,3,167,30,130,15,64,5,129,102,250,255,1,238,181,10,193,95,
-236,184,5,76,241,248,86,3,235,222,10,247,14,3,65,75,225,37,6,182,
-53,131,51,107,6,114,149,198,31,128,166,43,117,96,241,178,226,112,190,227,
-84,1,236,212,14,224,112,0,161,43,225,188,1,224,55,2,152,79,128,7,
-234,63,1,144,121,90,39,198,141,248,245,21,2,77,117,108,2,116,105,112,
-2,108,101,32,2,99,111,110,2,115,116,114,2,97,105,110,2,116,32,115,
-2,111,108,117,2,116,105,111,2,110,115,32,2,102,111,114,249,22,0,169,
-225,154,251,2,57,57,57,226,14,4,189,251,84,236,94,88,33,3,32,38,
-64,24,189,248,35,82,251,107,6,2,116,117,112,2,108,101,67,224,116,0,
-2,115,34,32,194,28,65,42,78,201,78,53,96,103,114,138,47,53,2,51,
-52,55,97,69,103,22,158,200,96,99,139,241,161,154,41,48,225,183,1,169,
-54,224,16,1,228,35,0,195,122,227,216,5,192,38,96,68,243,168,9,96,
-5,234,208,1,130,114,216,220,224,60,0,132,61,241,118,4,232,68,1,229,
-181,4,129,216,96,206,234,90,4,161,206,130,87,143,209,66,175,80,104,224,
-0,4,227,101,3,66,104,233,149,4,145,220,34,88,127,37,225,44,0,222,
-244,229,99,5,252,126,1,67,33,32,106,96,171,2,89,32,67,249,199,5,
-131,121,230,224,0,225,32,0,185,221,241,205,9,230,32,1,192,83,96,200,
-130,202,233,136,0,128,157,151,214,32,29,196,22,176,144,224,22,3,227,11,
-7,230,201,2,224,10,8,195,90,2,48,57,56,253,1,1,251,61,2,128,
-143,65,35,164,153,65,30,245,218,1,161,200,193,41,192,205,176,203,224,206,
-0,228,59,4,49,255,224,25,1,228,233,2,2,48,55,32,79,123,64,248,
-207,129,79,66,35,227,227,215,5,236,42,5,224,103,2,64,67,132,129,230,
-53,4,242,225,2,224,147,2,163,169,96,48,130,205,240,124,7,236,57,3,
-209,222,236,187,6,2,95,55,57,238,16,1,229,130,1,232,104,1,196,253,
-142,135,224,123,1,209,204,211,159,161,185,211,160,83,49,207,128,2,48,50,
-52,2,32,64,89,241,26,10,33,197,253,50,2,237,84,10,245,100,0,2,
-51,55,50,196,234,228,91,1,2,102,114,101,2,101,32,116,41,183,2,32,
-118,97,2,114,105,97,2,98,108,101,2,32,105,110,2,32,111,117,2,116,
-112,117,2,116,32,102,94,199,2,112,34,32,229,128,3,226,119,2,208,75,
-230,53,3,164,86,228,83,5,228,80,5,230,119,1,226,248,2,140,87,233,
-118,1,228,16,17,227,248,9,227,239,8,226,77,2,229,123,5,139,176,130,
-101,239,117,3,32,27,64,41,178,125,134,167,230,87,1,245,29,3,227,242,
-4,224,42,8,224,228,0,226,116,1,228,40,7,200,40,228,45,0,246,167,
-0,74,20,70,141,2,53,50,32,227,122,2,135,77,162,167,237,184,5,227,
-35,2,189,42,224,8,3,242,180,0,66,220,99,168,175,32,161,57,80,253,
-192,59,233,91,3,224,25,5,224,26,6,224,29,7,254,221,1,228,198,5,
-230,36,4,226,147,6,64,146,139,19,32,196,82,57,65,63,128,169,137,42,
-64,217,2,57,32,95,130,102,136,233,2,83,32,67,148,174,65,187,115,82,
-100,163,64,7,117,241,96,13,64,65,135,93,120,222,69,127,64,68,71,100,
-32,25,210,181,66,194,96,16,123,124,96,201,64,56,135,125,46,165,2,51,
-32,75,160,18,184,71,201,36,155,98,192,58,210,43,96,22,32,68,192,22,
-192,236,64,15,34,148,64,71,134,71,96,90,80,71,64,18,246,134,3,202,
-89,64,23,251,20,3,203,46,241,72,3,242,41,3,2,58,49,48,71,242,
-193,218,231,40,4,2,48,57,54,162,187,32,19,161,4,128,49,130,12,32,
-140,2,50,32,90,128,120,64,21,218,144,2,75,32,90,224,143,2,96,69,
-163,20,135,233,227,201,7,241,13,0,237,201,3,254,84,9,158,31,224,39,
-19,176,69,226,62,2,253,69,1,64,26,236,252,12,229,88,0,227,71,6,
-34,87,227,73,2,230,119,1,228,187,2,240,175,6,209,182,195,67,224,132,
-8,134,89,235,116,2,134,9,101,125,197,138,224,50,35,196,4,147,21,34,
-209,2,56,51,57,224,47,2,224,172,6,229,204,2,164,85,160,244,225,74,
-11,225,73,17,225,72,16,231,37,1,234,0,3,224,58,17,233,192,8,232,
-206,13,228,247,4,232,196,8,224,19,0,199,84,225,69,12,131,83,225,69,
-8,225,64,9,177,200,225,64,20,66,210,171,127,111,125,64,29,68,207,96,
-51,64,15,63,66,200,70,224,64,3,64,55,132,32,192,232,32,218,152,63,
-64,51,96,80,96,130,132,176,110,76,64,169,160,89,224,12,4,237,34,2,
-2,95,49,55,224,98,0,41,100,224,11,1,86,162,224,122,2,202,136,227,
-229,0,116,251,236,215,7,244,101,3,177,77,244,249,0,195,121,225,184,0,
-227,164,11,160,67,224,46,24,149,38,226,141,3,253,10,12,227,216,9,193,
-60,227,218,5,225,215,6,249,220,1,2,50,48,52,181,38,227,205,3,128,
-47,32,45,110,71,2,57,54,56,234,65,0,224,93,7,200,51,32,43,239,
-189,1,224,179,1,239,2,5,227,59,3,224,75,10,192,24,32,75,200,184,
-206,197,205,95,128,29,160,103,2,95,54,57,84,204,216,88,97,198,133,244,
-109,224,134,119,69,107,96,137,109,24,134,99,32,150,248,188,0,32,126,32,
-103,214,125,181,65,32,90,57,129,64,12,134,62,153,18,227,47,5,116,176,
-89,138,46,93,66,232,93,39,174,216,2,48,52,57,156,195,109,74,2,95,
-50,57,248,27,7,247,70,35,208,102,181,75,200,185,83,20,34,205,2,54,
-49,32,98,215,125,238,254,248,1,234,164,4,238,155,0,112,244,98,229,43,
-254,238,255,5,2,109,105,110,2,105,109,117,2,109,34,32,222,70,85,245,
-229,3,1,249,22,1,2,95,52,55,2,32,64,73,193,145,32,83,65,158,
-243,123,1,240,180,8,233,99,5,242,115,5,224,13,0,102,25,226,152,0,
-97,241,160,75,144,189,33,142,208,240,128,29,32,223,2,55,53,57,33,100,
-2,54,52,50,46,107,2,35,55,53,253,105,1,242,88,6,64,162,135,144,
-245,73,20,2,78,97,116,117,70,118,198,32,44,162,53,97,75,142,150,132,
-22,209,93,195,147,160,186,244,120,12,158,178,253,92,1,225,73,1,239,19,
-0,97,214,2,56,53,32,242,121,15,163,131,251,240,6,65,7,252,15,1,
-227,50,0,255,15,9,242,86,0,242,58,1,225,156,9,199,153,87,235,245,
-167,4,242,11,19,224,199,1,242,14,8,228,8,0,227,160,4,65,90,243,
-166,3,129,2,133,5,218,180,225,38,4,165,32,168,68,2,57,52,50,97,
-82,96,205,176,138,32,40,32,9,99,58,231,74,18,225,68,2,230,250,9,
-231,115,4,229,34,1,243,103,10,131,176,34,254,97,19,192,238,238,247,6,
-80,246,97,76,241,5,1,32,14,246,182,5,134,189,224,74,5,224,81,1,
-224,28,18,65,65,135,89,130,156,226,17,18,163,73,226,7,8,226,2,7,
-233,148,0,245,178,23,141,132,32,19,64,151,164,112,195,158,228,121,0,68,
-18,224,201,1,64,174,135,208,227,24,9,175,130,254,243,4,2,53,52,32,
-192,60,254,64,2,87,191,97,243,64,78,211,90,96,171,2,56,56,51,155,
-31,2,51,48,57,127,82,114,150,76,121,128,44,135,209,2,75,32,66,227,
-156,14,162,234,243,86,8,255,244,12,96,131,174,22,71,19,255,79,1,129,
-105,255,40,6,172,165,245,188,3,64,146,209,206,224,191,12,85,9,224,191,
-3,133,171,255,236,8,255,249,7,45,47,163,98,70,32,64,82,113,79,184,
-155,240,221,6,2,67,32,79,194,142,64,113,245,151,1,192,50,202,33,198,
-130,231,156,8,227,33,1,239,134,0,248,209,13,235,34,4,235,1,0,236,
-216,6,250,44,13,200,251,235,1,9,248,154,3,252,173,19,240,161,0,93,
-11,244,167,5,65,204,32,41,232,54,0,33,106,65,220,155,57,140,221,227,
-88,4,129,98,210,164,235,63,1,255,52,8,64,106,150,108,96,130,245,210,
-0,226,27,6,160,119,64,9,206,48,32,143,226,170,1,250,190,9,244,158,
-1,130,138,98,33,240,173,8,64,71,219,6,226,236,14,97,73,244,152,15,
-130,142,246,156,4,226,153,11,231,196,8,239,47,4,192,136,165,232,192,122,
-47,8,143,149,96,204,134,2,226,196,2,228,184,1,66,237,233,0,3,236,
-243,4,160,100,254,222,6,226,69,2,143,1,168,168,235,174,7,249,167,4,
-183,35,224,33,12,128,27,226,225,4,231,252,3,247,188,13,226,203,24,252,
-248,9,252,234,6,235,220,2,251,174,0,250,11,22,64,62,201,58,133,168,
-66,109,2,48,54,56,132,87,32,9,142,239,251,97,12,224,12,1,224,20,
-0,224,160,5,236,121,4,96,2,224,136,12,252,55,6,230,79,0,244,88,
-1,64,144,32,56,163,111,248,37,9,225,8,3,207,115,248,115,14,155,163,
-224,18,10,160,193,32,245,2,53,53,54,170,72,145,165,120,114,2,95,57,
-53,139,139,2,53,54,48,32,34,68,18,2,95,54,50,82,92,66,218,66,
-78,128,9,2,49,56,49,2,32,35,49,172,2,224,31,15,240,47,5,254,
-112,16,247,242,2,2,55,49,32,128,156,75,86,96,19,2,54,49,51,71,
-56,41,111,64,30,163,121,131,33,175,4,66,79,228,240,0,255,124,11,137,
-38,226,184,2,198,171,251,171,0,224,110,11,201,154,2,51,51,53,128,230,
-2,56,57,57,96,131,230,167,2,64,143,192,130,177,76,32,4,224,14,6,
-46,48,32,92,237,125,1,96,56,207,69,228,128,19,2,90,32,66,228,119,
-45,243,164,15,192,124,135,93,228,116,0,243,101,0,64,27,182,149,2,51,
-49,56,2,32,58,49,99,23,219,163,128,69,64,20,213,195,207,31,79,16,
-229,182,0,112,169,180,132,161,57,134,24,64,57,181,106,251,187,2,226,226,
-0,254,127,8,228,155,4,255,127,2,255,148,6,164,161,228,54,2,243,54,
-0,224,32,0,255,190,4,247,14,5,224,23,0,160,38,239,136,5,96,8,
-160,5,32,226,239,222,0,224,1,1,225,192,8,35,13,238,192,2,231,12,
-1,240,143,4,243,217,2,255,38,5,39,164,184,37,246,235,3,231,26,4,
-71,117,249,168,3,2,55,48,49,65,121,2,56,48,54,185,174,64,15,254,
-59,19,2,101,120,112,2,97,110,100,2,68,105,99,2,116,58,32,142,199,
-2,95,49,50,32,38,2,51,48,55,254,170,5,237,7,9,228,147,14,225,
-72,4,241,132,8,226,127,0,219,67,232,181,6,229,234,2,224,19,4,195,
-195,224,22,17,233,80,1,242,43,1,254,21,1,224,55,8,232,136,3,224,
-29,10,34,242,32,30,107,167,175,69,230,125,11,254,113,4,231,1,0,96,
-64,236,87,2,254,87,11,243,175,1,99,37,245,247,1,145,185,143,210,207,
-198,35,215,228,50,2,232,213,0,91,221,37,185,33,246,165,155,229,145,11,
-232,245,0,116,60,164,236,101,254,64,109,124,32,140,152,165,244,225,15,11,
-230,192,18,249,70,5,248,31,7,232,241,19,253,252,14,225,123,13,227,186,
-3,225,90,56,135,229,69,64,255,184,0,157,42,225,76,18,232,145,0,234,
-184,1,35,82,114,250,243,192,3,192,21,232,50,1,179,36,179,35,233,134,
-5,64,20,147,66,64,23,123,20,96,177,115,140,46,23,226,110,1,244,152,
-1,179,126,51,138,46,157,32,50,78,140,229,99,6,108,253,96,227,159,125,
-230,0,2,200,252,250,249,3,224,46,18,192,44,64,212,198,49,64,37,133,
-183,179,144,85,212,147,45,229,99,4,245,166,17,194,102,236,153,1,253,113,
-3,237,11,6,85,100,81,96,32,229,2,56,51,50,69,121,68,192,245,156,
-4,112,155,96,93,224,214,2,144,192,201,89,220,115,65,125,198,117,201,252,
-69,67,2,57,55,49,230,114,4,100,207,162,142,111,188,232,53,2,254,70,
-13,252,100,3,192,134,227,61,2,172,223,234,116,1,178,197,244,156,0,2,
-95,54,55,227,126,1,68,63,32,48,226,138,19,135,177,160,24,225,83,0,
-124,137,164,55,77,219,229,232,1,2,36,120,34,167,214,66,249,187,83,2,
-75,52,32,32,2,251,89,1,128,31,240,3,3,243,158,15,237,88,0,35,
-49,162,191,96,151,64,63,168,82,243,189,6,71,194,231,4,0,139,170,238,
-29,5,33,39,67,237,210,214,224,43,0,160,23,128,35,242,209,8,224,21,
-9,225,244,0,224,94,4,240,166,1,237,253,0,224,31,18,192,67,248,164,
-1,75,60,163,6,228,202,3,226,242,3,224,32,8,160,69,215,134,64,7,
-252,175,5,226,64,3,239,228,3,246,209,15,193,27,250,217,7,64,81,224,
-15,1,213,109,227,13,1,128,76,179,88,226,225,1,128,159,236,220,1,65,
-188,137,243,235,72,1,245,74,1,160,107,32,229,186,148,128,138,224,8,0,
-32,61,65,128,74,49,234,229,1,64,20,202,34,239,96,23,218,53,234,229,
-53,245,99,4,224,215,0,66,166,239,92,6,159,77,98,208,226,238,18,253,
-169,4,115,111,240,71,14,50,23,224,230,27,108,9,235,201,63,254,30,1,
-128,130,180,57,2,51,49,48,121,133,232,211,5,233,45,4,232,240,7,235,
-47,6,224,34,17,224,32,3,32,188,230,24,2,64,174,225,98,4,236,74,
-2,65,70,223,221,196,116,162,119,64,29,236,132,2,74,119,186,12,64,25,
-130,142,228,198,1,2,97,100,105,2,99,116,34,96,27,64,34,194,170,59,
-110,32,67,64,20,130,108,227,183,3,227,201,0,234,30,1,229,170,2,234,
-6,2,73,2,228,105,0,255,201,0,224,49,7,242,156,6,184,2,182,114,
-224,21,5,2,52,54,32,96,147,210,97,227,250,3,253,10,0,204,109,224,
-178,3,234,180,13,232,4,6,224,59,1,240,6,1,109,39,231,114,4,168,
-38,228,203,6,231,157,6,116,3,162,103,224,35,5,224,75,7,160,37,235,
-8,8,225,19,11,149,94,249,9,6,233,170,1,244,27,7,225,98,0,207,
-149,225,157,8,100,120,242,20,10,65,106,209,173,224,99,79,225,132,0,237,
-176,4,224,15,2,224,132,3,224,47,2,131,113,238,101,2,226,123,26,136,
-212,227,106,1,224,140,16,240,215,1,224,106,63,99,143,66,183,227,68,0,
-225,60,10,236,248,6,237,75,5,241,101,1,166,177,2,52,51,32,96,6,
-233,153,1,224,174,3,163,38,96,118,133,65,233,47,1,232,194,6,2,99,
-97,110,2,110,111,116,2,45,104,97,2,112,112,101,2,110,34,32,160,171,
-132,243,239,57,1,180,211,246,140,5,38,143,225,72,12,232,141,0,207,152,
-237,204,12,246,183,6,224,180,1,236,110,4,232,68,2,250,97,3,102,54,
-40,159,129,153,39,118,248,78,2,239,52,3,228,97,19,227,102,2,79,237,
-201,46,239,240,0,160,16,96,229,96,10,159,166,109,44,64,48,37,89,2,
-52,49,55,215,245,224,120,2,97,153,2,50,55,32,240,17,2,2,83,117,
-98,2,115,117,109,2,112,116,105,2,111,110,32,2,99,104,101,2,99,107,
-32,2,102,97,105,2,108,101,100,144,29,249,160,10,65,223,246,157,18,217,
-96,240,62,4,65,18,64,184,64,62,134,26,115,118,2,89,32,83,64,148,
-129,146,233,94,1,210,0,227,113,1,97,104,229,214,3,228,220,1,236,119,
-17,207,199,241,138,12,228,236,8,128,51,197,106,245,102,1,224,32,7,97,
-127,192,26,178,131,160,26,162,1,34,107,97,238,224,9,1,249,226,9,255,
-221,1,169,115,170,77,239,155,11,229,200,3,224,238,18,121,128,228,168,5,
-250,107,5,224,31,5,250,109,2,175,142,196,20,224,91,0,224,63,5,193,
-78,239,128,9,224,13,7,224,58,8,250,171,15,129,137,220,49,227,23,10,
-128,26,160,154,247,151,4,231,72,7,244,52,0,227,244,2,225,184,5,229,
-93,1,225,80,30,195,59,235,243,0,226,63,13,226,3,4,179,69,225,98,
-4,244,147,5,225,23,3,204,62,117,240,224,220,0,230,122,3,224,46,4,
-224,194,2,248,131,9,229,186,0,165,172,121,31,109,119,130,83,2,51,51,
-52,228,131,3,231,243,8,224,198,4,252,151,9,230,28,3,193,164,231,24,
-2,166,87,160,82,160,145,228,136,9,128,31,129,118,224,27,6,227,109,0,
-43,35,116,206,239,222,1,109,80,224,4,1,223,138,244,235,23,2,102,114,
-101,2,101,84,121,2,86,97,114,2,115,58,32,244,235,3,112,87,230,186,
-3,69,64,221,18,145,191,177,190,32,4,177,101,240,80,0,68,198,108,62,
-2,89,32,67,222,65,97,22,228,153,3,246,72,5,228,89,4,225,214,11,
-192,25,108,48,165,247,230,206,4,2,51,57,32,208,225,144,251,230,113,4,
-252,175,0,233,124,8,241,205,6,230,91,5,254,135,14,65,201,228,222,2,
-252,14,1,234,13,0,234,131,1,230,248,6,200,92,231,29,3,231,72,3,
-255,24,3,246,95,11,238,119,4,224,187,3,179,202,241,233,3,225,7,34,
-243,4,0,2,57,49,55,225,9,5,224,40,2,211,85,198,228,140,136,193,
-212,230,233,13,122,182,2,51,56,32,251,65,0,242,16,2,224,245,5,164,
-228,167,235,213,143,245,213,0,229,246,6,128,13,210,66,96,143,66,1,238,
-109,6,2,57,53,57,245,225,0,224,110,1,224,177,0,2,55,53,54,73,
-81,62,75,32,4,96,247,160,112,134,103,2,50,57,53,167,164,227,62,5,
-2,79,32,35,76,220,132,140,131,47,2,49,52,54,224,136,2,141,112,254,
-20,5,236,80,2,249,25,7,2,57,54,48,253,165,5,224,25,8,231,244,
-2,177,119,233,11,4,230,24,9,132,211,172,111,129,211,225,5,7,207,38,
-224,19,2,64,187,141,152,2,85,32,67,66,61,226,251,3,47,118,64,70,
-32,25,206,53,224,32,13,227,164,0,235,38,4,230,231,4,192,41,226,237,
-4,64,33,242,218,0,2,95,56,49,2,50,32,102,228,166,0,2,45,62,
-34,97,244,224,21,5,2,80,114,105,2,109,105,116,2,105,118,101,2,115,
-46,45,128,32,224,89,5,32,12,158,193,247,96,5,64,229,139,205,250,164,
-14,2,57,55,56,255,28,4,197,178,228,190,0,85,114,127,18,241,3,0,
-132,159,2,95,55,55,251,2,2,64,50,193,131,96,116,139,203,239,117,1,
-210,61,228,199,4,136,130,224,36,28,64,92,64,8,64,91,139,242,207,79,
-231,239,5,230,188,4,138,35,226,79,6,237,190,4,246,156,16,255,96,7,
-232,26,21,138,5,233,107,17,224,31,6,233,107,0,2,83,32,67,224,169,
-0,233,39,10,160,54,229,75,4,163,100,171,186,246,62,0,226,216,0,54,
-17,228,213,1,225,154,2,2,50,57,32,224,20,2,224,106,8,231,225,9,
-252,114,2,224,13,5,224,56,12,232,27,6,240,29,2,245,223,0,227,199,
-5,231,186,0,247,200,5,32,45,226,15,4,234,51,6,225,10,9,236,198,
-1,232,58,0,225,12,14,248,173,6,246,140,3,209,112,241,106,9,224,222,
-5,227,62,8,2,56,56,57,224,32,0,241,57,5,254,190,21,226,75,3,
-97,51,66,223,65,25,64,155,96,159,238,86,10,109,251,173,176,193,83,232,
-236,15,143,44,2,32,117,110,2,105,102,121,168,237,229,240,5,2,56,48,
-53,229,240,12,224,66,1,2,32,97,110,2,100,32,34,132,106,128,45,236,
-186,13,226,95,6,67,161,142,18,254,206,2,231,48,2,50,144,96,42,244,
-238,0,35,226,134,80,65,3,174,21,65,11,163,227,251,183,0,128,8,221,
-24,32,56,134,210,32,44,130,27,64,54,137,141,229,54,12,2,126,34,32,
-96,34,135,201,255,110,2,224,156,5,161,241,240,25,3,133,82,64,27,36,
-241,228,237,11,64,251,229,98,0,226,95,8,243,208,2,226,95,23,240,184,
-4,133,108,123,227,240,49,2,228,123,1,229,166,3,67,2,107,61,196,14,
-2,48,50,50,243,169,7,226,70,44,2,121,99,108,2,105,99,32,226,64,
-10,32,7,98,20,40,119,167,232,226,73,18,2,61,32,34,226,71,15,238,
-56,7,240,71,5,225,143,0,228,181,1,170,9,160,224,253,236,2,98,214,
-160,141,161,151,216,122,227,185,19,225,33,16,2,57,52,53,233,164,2,143,
-141,2,48,50,54,202,135,224,233,13,2,101,114,114,2,111,114,58,193,48,
-96,132,216,122,71,155,224,41,1,2,116,121,112,2,101,34,32,2,64,64,
-102,224,17,0,2,107,105,110,145,101,224,18,1,2,115,111,114,86,237,224,
-18,3,2,114,101,97,2,108,109,34,131,37,64,140,241,122,42,2,50,52,
-32,128,62,179,112,145,122,133,72,241,95,4,239,21,5,239,18,17,246,190,
-1,241,70,24,254,29,1,231,68,15,231,62,17,98,42,238,50,11,130,244,
-238,32,6,233,114,4,48,210,239,118,38,254,201,5,232,41,17,237,63,30,
-187,72,224,133,1,242,11,1,61,235,44,57,123,46,254,170,3,65,165,98,
-55,110,79,225,95,1,241,232,15,161,132,238,107,18,235,164,6,225,123,41,
-228,160,6,195,157,132,22,35,150,235,114,3,227,201,10,64,167,191,112,232,
-11,3,163,203,244,89,6,111,123,196,112,2,56,32,95,2,55,48,48,99,
-148,222,36,96,77,227,190,2,242,215,6,90,253,99,183,224,58,1,2,50,
-52,52,74,239,224,115,0,210,255,226,146,18,128,251,225,89,18,194,58,233,
-79,8,254,9,1,226,128,0,226,13,2,224,78,15,133,28,225,133,10,192,
-24,98,162,225,41,6,226,127,16,224,46,13,225,53,14,129,52,161,112,225,
-182,10,224,23,13,252,199,0,224,99,3,239,158,9,224,132,9,226,244,3,
-66,236,136,49,253,22,7,174,76,189,16,2,49,57,32,253,16,1,229,248,
-0,108,135,204,199,64,74,200,58,101,231,151,4,204,196,160,38,64,37,136,
-41,224,110,4,253,122,1,224,105,3,64,44,136,51,253,88,12,221,82,253,
-79,58,224,29,20,224,26,17,224,23,14,253,157,2,128,197,64,212,178,170,
-232,167,2,235,3,7,252,107,14,246,254,2,125,166,138,60,239,101,11,226,
-243,1,233,255,12,104,213,74,1,144,139,2,55,53,51,238,127,4,201,5,
-228,32,3,234,35,3,209,233,96,7,130,104,241,25,2,224,125,3,235,107,
-0,250,252,7,72,246,39,37,192,119,65,25,254,53,0,247,224,3,185,69,
-234,39,12,231,100,2,36,96,240,186,0,242,201,18,122,154,241,245,9,241,
-241,13,224,76,0,225,94,7,64,172,222,78,229,95,7,32,209,198,69,227,
-71,22,104,202,227,71,6,160,109,64,62,169,96,178,254,64,114,136,103,53,
-5,2,51,32,75,127,190,134,186,64,26,200,67,227,26,10,227,34,7,227,
-38,30,226,184,1,64,95,207,236,47,234,129,206,175,243,237,77,1,254,203,
-6,191,58,225,182,1,249,44,36,224,89,0,239,240,22,248,194,1,236,38,
-0,232,40,15,234,193,3,240,25,16,230,41,8,229,85,8,35,5,2,57,
-56,54,237,133,13,234,195,5,162,184,235,174,0,231,61,7,230,53,16,129,
-4,165,177,249,30,3,249,86,3,241,63,30,241,136,3,231,58,196,251,81,
-18,241,10,9,227,250,1,254,68,7,228,199,0,234,181,0,237,21,19,236,
-190,8,35,25,228,244,0,237,26,1,226,133,3,177,24,2,50,56,57,228,
-17,4,226,82,16,224,120,5,255,80,5,162,92,230,21,6,103,195,250,128,
-12,192,139,243,112,3,240,254,2,230,104,2,252,250,1,226,199,6,227,221,
-4,226,130,4,226,55,1,198,93,121,118,32,204,2,54,51,32,37,153,137,
-223,192,215,225,129,1,32,2,141,217,224,105,7,161,4,134,102,225,25,0,
-2,53,55,57,224,65,4,128,59,224,36,3,192,211,160,25,70,144,110,51,
-247,101,4,237,185,1,2,98,97,100,2,32,115,121,2,110,111,110,2,121,
-109,32,2,117,115,101,255,80,0,128,124,32,70,230,8,15,233,48,1,204,
-30,101,25,177,100,33,116,37,204,32,19,2,90,32,90,229,39,3,247,140,
-1,97,110,254,53,39,217,126,237,214,29,236,90,56,173,11,236,102,1,135,
-113,65,89,196,181,182,126,185,44,64,232,140,118,191,92,224,233,0,230,118,
-5,253,170,1,255,195,1,32,11,130,213,32,96,89,217,130,61,252,125,3,
-225,133,8,97,221,227,168,4,229,68,26,66,16,140,111,192,43,238,82,30,
-229,54,26,238,197,29,228,224,21,251,185,2,139,178,253,79,2,233,70,1,
-241,18,0,61,98,96,100,33,43,2,56,52,53,253,197,1,98,158,93,126,
-240,184,2,2,117,98,115,116,125,2,109,112,108,2,101,109,101,2,110,116,
-101,144,218,199,213,139,163,125,86,64,14,139,140,32,14,2,52,32,90,224,
-1,4,255,225,2,64,39,139,135,99,131,2,48,55,32,116,75,34,26,32,
-25,74,80,243,248,4,2,100,105,99,81,57,64,26,242,4,1,251,44,7,
-216,211,229,23,7,228,52,0,160,247,116,104,194,3,178,252,146,2,2,48,
-48,54,99,148,251,23,8,64,158,32,117,91,62,32,21,128,230,64,43,250,
-111,137,2,61,62,34,250,111,21,160,32,250,111,31,76,26,74,17,75,149,
-2,95,51,52,69,9,2,52,55,32,229,7,2,224,90,2,2,84,121,112,
-133,7,64,55,137,233,227,250,0,33,44,70,159,2,52,57,32,133,116,43,
-112,2,57,53,48,147,152,136,197,96,135,33,186,2,57,52,49,175,211,219,
-217,2,48,51,32,246,128,7,65,200,224,79,15,84,39,238,83,4,2,49,
-50,53,150,90,34,212,128,80,130,176,241,140,25,193,33,128,31,229,92,12,
-224,26,12,133,74,229,34,9,96,22,130,49,133,7,192,148,240,250,21,132,
-119,224,43,2,240,230,20,193,78,233,138,8,225,103,1,194,73,237,217,0,
-249,157,19,222,224,230,67,0,224,12,1,61,160,131,63,2,57,57,56,238,
-3,7,224,174,0,227,247,4,223,224,98,192,2,57,57,57,255,42,2,2,
-53,55,32,224,66,5,167,76,197,189,224,252,7,243,28,13,241,227,138,128,
-254,229,188,21,225,34,2,226,54,9,241,205,4,33,8,33,159,193,15,79,
-253,135,52,228,71,1,168,199,134,223,64,53,115,204,225,63,2,198,76,220,
-175,230,175,1,224,101,0,143,139,160,52,224,60,2,224,172,4,241,246,6,
-64,35,165,155,2,80,32,35,206,229,64,24,217,165,137,155,34,53,85,20,
-97,253,68,91,67,244,64,17,34,15,34,2,32,23,133,227,250,19,0,2,
-57,57,54,96,22,133,132,133,171,2,55,49,53,228,133,3,2,91,93,34,
-64,131,96,41,151,67,35,26,224,5,1,128,230,32,231,202,35,135,32,65,
-37,96,9,2,83,32,83,32,10,87,57,132,171,250,165,9,70,84,144,153,
-105,219,96,151,130,171,101,19,234,29,7,2,99,111,109,2,112,111,115,2,
-101,83,101,151,240,153,81,2,57,57,51,80,223,136,118,198,168,66,219,2,
-57,57,52,98,239,2,53,56,49,160,45,65,97,71,190,225,97,4,2,57,
-57,53,197,8,251,61,6,224,146,5,128,141,224,140,1,2,104,97,115,2,
-70,105,101,2,108,100,34,131,151,2,57,55,51,97,78,229,161,0,224,76,
-36,2,115,101,116,224,76,11,133,162,134,151,2,57,57,49,224,61,5,2,
-95,50,57,67,14,248,246,3,2,99,67,111,2,110,69,114,57,93,161,183,
-133,145,254,44,1,225,162,1,232,176,1,2,55,53,57,129,148,65,56,2,
-57,56,57,249,187,20,32,95,2,116,114,111,2,108,46,69,2,120,99,101,
-2,112,116,105,2,111,110,46,2,73,110,116,2,101,114,110,2,97,108,46,
-232,187,0,234,152,6,97,222,156,196,124,12,251,4,19,2,44,32,97,2,
-116,32,34,164,232,72,47,2,56,51,48,176,230,96,254,178,128,204,78,133,
-44,106,61,101,252,96,202,2,95,56,54,168,183,96,209,2,52,55,52,128,
-116,2,52,55,53,97,134,60,39,226,121,5,161,152,224,228,2,2,104,97,
-114,128,132,177,194,96,195,99,106,35,129,69,239,35,173,2,58,57,56,220,
-209,242,251,10,2,57,56,49,248,174,1,254,12,6,171,117,224,21,8,232,
-166,4,123,185,255,164,3,168,87,239,57,6,238,10,2,255,241,1,172,140,
-224,29,7,238,48,1,167,238,244,63,2,132,180,32,103,2,54,50,54,67,
-170,65,173,40,49,142,41,2,95,54,52,81,33,67,102,2,49,56,49,2,
-32,35,49,129,160,67,103,100,120,2,51,48,49,160,231,101,221,105,125,122,
-76,36,167,2,90,32,67,66,187,131,206,65,14,226,255,13,2,78,101,115,
-42,254,2,32,102,105,35,3,2,115,32,110,63,149,2,97,108,108,2,111,
-119,101,235,17,1,225,13,5,2,56,55,32,239,216,5,245,15,7,140,235,
-77,246,224,52,7,160,165,194,68,174,144,224,157,10,226,170,21,2,101,120,
-116,2,114,97,32,96,176,2,40,115,41,162,180,32,48,2,51,57,49,206,
-160,131,159,228,168,1,2,56,53,32,172,15,128,31,193,55,245,19,2,235,
-101,8,224,26,6,210,155,172,115,65,90,143,196,134,196,100,241,246,32,1,
-163,36,236,147,19,100,109,2,56,50,32,192,147,2,57,48,52,32,32,2,
-51,56,32,161,114,96,19,225,109,1,66,246,198,71,230,232,0,2,85,32,
-80,32,31,229,92,13,64,58,106,233,2,53,52,32,132,124,32,19,134,78,
-97,18,190,49,96,22,133,135,69,49,32,44,96,183,58,141,35,207,70,162,
-64,31,212,230,107,169,87,153,143,205,225,48,2,2,67,32,79,231,71,1,
-224,25,5,99,248,193,20,36,52,129,250,100,2,198,60,160,56,251,191,5,
-227,201,2,226,218,1,201,110,241,243,8,223,111,226,83,9,137,125,229,172,
-4,2,111,114,100,2,32,119,105,2,108,100,99,2,97,114,100,226,243,9,
-106,162,224,192,1,80,181,200,148,200,179,64,182,102,26,64,205,224,251,0,
-247,235,2,161,218,225,187,1,134,80,64,69,2,65,32,64,2,64,65,32,
-64,19,166,36,65,141,105,2,107,215,32,23,232,119,1,238,21,10,233,16,
-0,225,45,4,164,72,65,95,98,50,242,65,4,224,37,1,32,30,134,115,
-249,27,11,32,121,133,109,2,75,32,66,243,209,7,186,193,136,130,144,167,
-154,180,255,190,5,2,57,53,54,138,233,227,73,2,2,58,57,55,133,175,
-215,161,239,62,8,32,33,207,6,33,226,101,226,64,197,161,3,69,179,192,
-7,120,101,97,116,130,175,230,75,0,134,73,32,26,232,82,45,2,103,101,
-116,232,5,10,66,68,97,160,203,127,209,48,133,216,220,73,96,11,231,204,
-0,103,4,228,129,0,230,240,22,2,80,114,111,2,120,121,34,163,242,224,
-153,2,32,123,252,115,1,38,250,141,59,74,125,96,129,252,140,3,2,57,
-54,57,161,217,32,98,32,30,130,60,130,34,34,151,33,25,92,190,79,227,
-96,33,199,76,64,80,97,105,64,62,234,229,2,98,192,96,104,68,241,238,
-166,21,2,50,56,55,78,166,64,233,238,166,1,246,16,12,2,56,56,57,
-243,140,3,231,49,3,89,49,229,85,1,101,62,109,144,64,117,2,95,51,
-54,245,195,6,140,19,205,51,248,84,0,224,5,6,246,207,7,134,147,96,
-59,238,28,13,228,86,0,128,24,143,128,166,49,2,54,55,49,129,96,219,
-71,241,153,4,175,222,177,126,99,193,111,12,93,220,32,73,2,80,32,95,
-67,206,37,221,65,30,33,37,65,119,96,18,237,31,2,246,3,0,199,79,
-150,8,32,69,130,68,238,169,0,64,162,245,215,0,141,15,32,36,249,118,
-0,181,126,66,62,72,180,100,111,32,10,195,45,225,153,13,228,178,0,246,
-255,3,96,42,64,107,252,49,0,231,224,1,64,114,134,213,64,242,225,101,
-0,229,26,0,224,41,0,32,91,96,237,231,86,4,32,143,131,162,244,111,
-0,224,237,1,108,78,64,143,32,36,131,122,68,137,224,180,19,224,212,0,
-128,106,247,14,1,2,57,54,50,131,112,2,57,50,48,224,120,0,227,82,
-1,208,48,74,157,83,157,229,18,0,220,97,64,46,131,104,2,90,32,85,
-96,144,131,87,250,175,1,132,235,133,149,32,30,191,132,224,167,0,2,55,
-48,52,77,135,231,170,0,189,87,233,40,6,98,66,2,55,48,53,128,15,
-231,36,0,2,52,51,57,102,190,93,17,2,57,53,55,253,16,2,225,77,
-4,98,168,106,12,97,103,234,44,12,64,161,66,122,2,58,57,53,229,133,
-0,244,198,6,244,204,8,96,254,64,53,253,59,3,71,240,253,29,24,224,
-32,23,224,29,20,224,26,17,224,23,14,224,20,11,224,17,8,224,14,5,
-224,11,2,235,157,1,70,204,253,214,0,225,3,4,198,133,69,25,144,79,
-64,21,131,80,2,95,52,56,179,164,145,76,236,0,1,224,9,2,68,114,
-164,7,2,51,49,51,66,223,2,51,50,32,72,41,224,6,3,105,189,64,
-3,100,165,192,76,32,5,43,69,2,53,51,49,160,28,118,254,224,106,18,
-108,196,192,108,96,88,128,114,224,108,31,2,82,32,95,224,108,24,161,51,
-74,5,128,34,224,110,4,160,103,224,117,4,224,106,9,224,63,3,224,113,
-2,173,9,131,42,192,147,224,40,0,224,108,16,224,115,4,128,67,224,61,
-13,160,106,2,95,49,55,2,54,32,102,231,128,0,2,92,51,52,2,38,
-115,114,2,99,47,77,2,105,99,114,2,111,72,115,2,47,84,67,2,77,
-111,110,2,97,100,46,2,104,115,92,32,25,2,44,49,55,2,53,58,53,
-237,9,2,99,78,73,14,166,244,2,53,50,32,224,11,1,59,223,224,11,
-0,75,188,128,11,35,118,192,10,36,36,160,10,34,68,203,115,66,124,67,
-107,32,18,132,243,250,173,1,224,9,1,96,33,2,95,54,53,144,34,104,
-233,74,213,224,45,14,224,55,2,101,83,128,55,224,61,5,182,50,224,51,
-10,224,146,1,224,51,7,165,2,39,253,226,55,3,183,190,193,157,64,50,
-128,49,224,6,6,192,32,96,13,224,89,3,224,32,13,160,26,224,39,3,
-224,32,12,224,39,3,32,13,129,110,69,243,32,176,234,206,1,232,145,16,
-96,237,51,47,171,42,69,143,90,44,230,17,0,238,133,15,2,97,115,115,
-2,101,114,116,66,46,2,100,101,58,2,32,101,120,2,112,101,99,47,71,
-2,61,34,32,252,159,2,249,142,1,121,129,2,50,57,32,40,46,139,158,
-33,39,69,233,2,79,32,95,120,47,64,7,73,64,96,7,32,152,229,140,
-0,241,179,21,2,103,111,116,160,113,128,98,160,93,196,190,73,166,102,193,
-133,221,32,16,165,211,2,49,50,50,32,17,225,77,0,2,53,32,102,224,
-84,0,2,84,67,69,2,120,112,114,153,116,224,25,7,249,16,0,224,26,
-9,2,75,105,110,203,60,224,26,7,2,83,111,114,212,53,73,32,192,165,
-32,11,69,63,96,11,32,153,133,105,199,1,97,137,42,92,2,55,48,49,
-153,83,79,27,133,161,231,38,1,240,64,18,225,54,19,2,77,117,108,2,
-116,105,112,2,108,121,32,2,100,101,102,2,105,110,101,2,100,58,32,160,
-184,2,51,48,54,96,246,143,132,32,147,165,231,2,51,55,50,41,70,95,
-59,175,59,2,52,51,32,239,59,0,79,40,96,22,253,241,0,194,172,221,
-40,154,215,96,197,101,16,32,51,200,136,61,213,118,57,64,24,128,16,226,
-164,12,233,1,18,233,30,14,246,221,0,203,12,233,150,9,216,85,160,164,
-224,32,2,105,78,83,178,234,191,3,102,254,32,6,97,106,234,191,0,224,
-96,13,2,57,50,54,233,140,4,235,137,1,233,205,23,252,218,1,224,176,
-11,224,204,13,99,248,234,125,10,128,133,241,212,6,96,23,76,181,127,89,
-163,38,164,215,2,53,53,56,195,19,99,140,131,138,32,6,117,10,254,67,
-8,2,99,99,32,226,220,3,32,38,69,244,96,87,129,51,129,56,35,13,
-192,21,2,57,51,54,224,11,2,224,133,0,32,11,100,25,132,180,64,6,
-237,118,4,129,14,82,96,32,40,129,120,187,45,107,170,237,8,2,32,68,
-34,186,2,95,53,54,172,176,2,51,51,32,224,6,7,2,58,57,51,234,
-6,0,36,3,2,52,32,65,130,146,66,242,237,236,6,224,114,4,224,101,
-4,2,54,57,48,224,101,14,32,72,227,200,0,224,72,26,2,53,54,48,
-224,72,17,131,125,245,226,0,224,69,3,128,60,41,157,224,60,6,32,53,
-239,255,1,107,157,64,46,189,135,40,40,171,30,235,40,15,192,67,131,210,
-112,174,235,27,4,32,26,195,185,71,34,2,49,48,53,67,188,72,128,193,
-80,235,76,7,32,29,130,92,32,27,113,243,66,74,128,14,111,145,66,96,
-102,161,197,161,66,119,96,76,235,154,12,32,31,202,145,102,169,2,56,56,
-51,140,229,140,41,37,92,236,41,0,32,42,196,190,171,192,235,68,5,119,
-9,235,178,15,235,213,93,235,115,4,32,175,225,186,1,2,57,48,51,213,
-202,117,22,2,52,56,51,170,74,2,79,32,80,64,19,65,207,115,242,2,
-79,32,66,173,227,244,83,0,64,29,99,230,115,52,111,112,97,64,161,96,
-129,220,96,43,63,251,70,50,70,123,241,146,3,2,105,109,105,2,116,105,
-118,2,101,115,46,227,220,0,32,54,129,248,224,38,12,166,251,32,36,197,
-198,224,195,21,67,3,121,11,224,202,0,2,48,55,32,133,143,32,22,96,
-20,77,242,144,50,96,186,224,48,9,102,23,224,48,2,82,115,224,48,19,
-34,3,224,48,4,64,15,224,48,21,99,21,224,48,2,240,197,1,96,48,
-217,207,96,27,98,133,224,42,1,97,120,2,49,57,32,225,120,2,215,137,
-225,169,10,65,56,131,36,80,173,64,32,65,159,2,57,49,56,64,138,101,
-134,224,10,2,96,128,2,58,57,49,189,106,2,57,49,55,32,51,32,31,
-199,154,79,192,96,5,32,4,97,40,253,86,4,225,180,2,2,45,62,34,
-177,42,32,66,244,77,1,125,184,244,77,0,32,66,226,44,0,32,13,130,
-160,115,246,32,13,162,72,161,46,104,12,65,8,226,37,15,96,112,32,34,
-130,35,224,34,12,2,78,97,116,128,35,129,14,226,147,13,2,121,109,98,
-2,111,108,34,96,38,129,42,224,38,12,60,46,2,115,116,114,2,97,105,
-110,128,81,66,31,226,245,31,233,202,0,32,54,129,88,224,38,12,170,12,
-32,36,184,104,65,51,129,112,32,19,196,123,41,67,224,61,1,2,98,117,
-105,41,122,2,110,34,32,2,64,64,35,32,187,64,3,32,42,201,87,119,
-226,149,224,81,59,108,157,241,161,0,178,218,39,238,96,100,77,72,210,141,
-224,18,8,32,63,129,135,108,169,134,62,123,21,224,9,0,168,44,243,228,
-2,2,57,48,49,224,6,1,138,170,108,73,96,81,32,80,197,227,108,234,
-140,237,2,60,32,64,102,58,214,30,160,18,100,150,47,184,2,55,48,57,
-252,136,1,252,97,4,96,105,232,77,5,54,127,2,73,100,101,97,172,120,
-128,2,90,32,95,224,138,1,2,85,32,73,160,214,216,24,32,243,67,240,
-170,130,82,141,253,14,2,189,237,136,35,99,108,249,212,10,64,7,99,74,
-96,73,234,192,7,148,70,186,204,96,82,223,228,129,58,167,129,108,194,173,
-55,233,79,0,64,82,195,143,96,84,166,1,224,87,1,245,251,1,102,11,
-248,170,1,161,90,213,76,128,115,128,251,96,181,142,176,2,95,51,51,132,
-68,2,54,49,51,80,227,143,214,2,50,54,52,33,11,66,11,231,31,16,
-2,56,57,52,231,31,2,106,56,231,31,7,216,107,242,230,194,242,217,9,
-32,250,204,180,225,37,12,158,245,193,37,163,74,232,69,7,136,63,225,43,
-173,225,18,7,32,229,233,195,0,201,242,245,24,13,32,41,131,131,85,69,
-250,202,2,224,39,6,32,38,131,147,32,38,2,52,32,75,192,39,234,21,
-0,109,215,132,79,228,24,3,113,114,255,54,8,129,115,238,25,8,216,217,
-119,65,39,53,246,20,0,151,84,2,56,56,55,113,22,89,162,196,133,128,
-122,227,156,1,225,253,2,185,34,162,2,94,16,246,114,0,195,159,37,135,
-108,213,158,246,32,72,131,145,234,247,4,246,78,14,32,44,234,140,8,125,
-204,246,80,204,246,75,10,33,0,198,230,224,244,26,225,24,207,158,102,225,
-18,1,228,133,4,2,54,57,57,101,124,70,39,130,248,32,33,132,124,237,
-13,5,248,178,16,99,19,224,80,7,103,176,64,120,70,71,32,34,175,235,
-2,54,57,55,2,32,58,56,190,239,168,123,207,85,224,2,3,188,109,225,
-23,6,186,178,100,75,2,54,50,57,240,217,2,64,120,107,243,2,54,56,
-50,253,15,4,96,145,131,58,167,60,74,181,34,43,159,88,64,155,191,38,
-250,159,1,151,127,231,23,0,136,95,149,8,224,25,11,254,140,0,232,162,
-5,158,121,232,163,4,107,220,68,194,231,146,0,99,197,224,13,0,189,16,
-231,17,3,189,120,229,252,2,239,201,3,182,65,178,78,228,134,1,231,230,
-2,64,47,199,229,200,65,188,238,167,233,232,9,2,221,199,126,9,137,173,
-123,24,228,206,3,32,12,129,58,240,34,0,128,34,94,229,251,76,3,2,
-54,54,57,150,213,80,19,65,241,47,255,133,105,97,167,96,11,253,1,5,
-220,155,226,214,6,133,88,2,53,53,54,193,18,32,152,98,210,192,211,224,
-130,0,159,146,201,45,32,99,224,117,1,224,206,5,96,171,224,131,4,253,
-113,0,105,196,253,250,1,233,72,3,130,247,192,130,253,164,2,224,50,1,
-255,174,0,230,1,5,32,13,234,149,2,141,147,241,205,1,241,24,13,32,
-11,162,237,105,138,43,211,2,56,32,102,234,185,0,2,36,102,34,224,141,
-0,2,89,32,66,160,157,243,142,0,138,121,64,50,245,147,20,2,36,120,
-34,246,198,2,2,49,52,54,225,15,5,224,163,24,235,210,1,253,14,1,
-128,182,224,189,1,32,73,234,226,0,206,194,161,229,161,99,250,124,1,184,
-210,164,98,228,105,1,226,254,2,97,98,255,135,2,231,105,6,97,43,226,
-88,0,227,146,5,68,221,227,145,6,66,0,227,131,5,72,27,160,2,47,
-87,226,100,1,66,113,228,83,3,84,189,227,59,5,65,46,64,20,104,25,
-77,74,64,42,74,237,208,131,32,172,72,240,239,154,1,228,10,4,225,77,
-0,228,97,9,168,41,224,206,6,64,242,224,206,6,64,73,224,206,7,228,
-96,10,224,225,17,128,77,236,105,0,172,104,32,183,75,194,2,54,57,53,
-183,228,2,56,55,50,76,2,247,249,2,240,110,1,129,219,224,193,6,185,
-217,224,174,6,141,178,224,160,4,96,159,94,243,104,167,96,11,160,13,224,
-177,1,128,9,64,174,225,253,3,97,146,32,4,2,50,32,79,2,32,35,
-55,33,50,160,144,230,173,4,224,94,3,253,25,1,228,94,4,134,5,229,
-132,0,195,214,130,118,161,233,224,123,7,229,69,11,43,216,2,56,55,54,
-227,10,2,250,156,3,66,233,32,59,36,134,58,122,120,184,96,166,238,2,
-1,133,37,2,51,48,49,134,172,32,105,81,20,160,21,132,163,167,8,245,
-143,1,79,216,227,1,3,38,218,138,116,49,224,64,66,220,121,231,116,1,
-47,68,32,99,67,227,65,138,254,124,2,225,190,2,92,146,39,53,96,135,
-68,61,96,143,152,142,33,255,96,14,32,28,32,96,138,106,255,35,7,198,
-135,129,90,230,51,11,248,97,1,226,122,8,68,217,65,54,64,78,128,144,
-198,31,200,230,142,184,195,28,231,43,0,129,185,230,74,1,224,29,5,230,
-33,5,160,7,226,63,1,248,109,2,2,101,113,34,172,187,230,44,1,224,
-87,1,225,247,7,230,252,0,228,42,0,160,225,230,78,0,151,78,255,106,
-0,100,243,145,16,97,129,65,18,132,87,229,124,4,97,216,96,40,35,112,
-133,102,197,128,231,96,26,230,57,16,230,55,1,200,103,232,121,1,229,97,
-0,230,70,54,51,211,36,243,226,164,8,66,47,139,153,2,90,32,67,193,
-216,226,20,4,251,198,2,226,8,156,96,70,2,56,55,51,231,133,0,117,
-166,134,39,35,33,168,131,160,21,96,39,225,167,4,164,165,225,148,117,65,
-149,212,2,233,200,7,226,101,8,226,85,6,183,177,96,217,147,21,37,71,
-34,195,39,43,197,35,234,215,3,139,105,225,159,0,229,136,0,68,148,175,
-20,228,65,2,64,139,82,126,201,226,227,81,2,107,2,192,57,99,129,68,
-152,32,241,202,174,137,209,227,20,5,96,13,144,5,101,204,128,29,2,55,
-54,49,233,178,2,2,56,49,54,233,126,2,234,62,2,117,26,88,41,165,
-215,2,95,55,50,245,109,3,2,36,113,34,193,203,143,232,108,9,32,36,
-118,2,2,56,32,75,229,159,3,141,57,228,66,3,166,143,2,54,57,56,
-234,109,1,225,10,3,74,144,224,13,0,234,133,1,173,109,224,40,2,179,
-206,2,56,54,56,97,17,96,132,2,51,54,54,238,24,0,224,208,4,2,
-55,48,55,116,110,253,179,3,113,35,134,2,204,41,230,160,0,224,244,8,
-130,108,32,209,141,232,124,8,227,83,0,32,129,32,68,119,220,224,50,1,
-55,42,2,116,114,111,2,108,46,69,2,120,99,101,2,112,116,105,2,111,
-110,46,2,73,110,116,2,101,114,110,2,97,108,46,2,112,97,116,64,9,
-2,77,97,116,2,99,104,70,2,97,105,108,196,176,131,77,193,87,98,10,
-130,221,2,56,51,48,196,85,206,90,2,80,32,35,137,13,32,20,64,41,
-230,154,0,129,53,32,62,113,235,65,247,2,56,54,55,110,164,65,41,110,
-246,196,123,33,81,86,122,32,47,238,246,3,230,197,6,65,99,77,216,67,
-147,65,94,79,53,114,166,227,111,1,161,73,130,194,2,56,54,51,167,226,
-224,46,4,126,16,219,160,43,108,68,7,213,199,192,111,231,83,16,130,251,
-224,5,3,233,139,0,229,45,1,227,76,2,110,42,240,146,12,233,181,5,
-237,31,2,230,231,4,239,175,7,252,212,13,224,75,5,163,184,230,179,0,
-238,114,5,224,5,3,96,158,236,27,2,247,224,2,228,60,1,106,186,238,
-40,9,32,83,247,240,1,224,114,0,192,34,105,217,170,228,230,67,2,241,
-66,2,166,70,224,17,0,2,83,32,73,196,112,224,52,1,207,130,241,142,
-7,160,119,247,146,0,238,18,0,241,139,7,224,143,5,224,190,0,227,193,
-2,239,142,4,224,56,0,230,0,0,238,187,4,225,220,1,240,1,7,228,
-21,0,225,181,3,249,25,0,202,214,32,34,104,92,237,195,0,237,221,1,
-237,105,2,164,77,76,207,124,70,138,124,96,9,230,142,17,43,138,2,49,
-50,54,203,139,230,138,11,204,145,228,196,1,67,13,216,140,2,56,54,54,
-64,16,227,28,1,197,247,226,136,2,227,9,4,236,114,6,227,61,3,106,
-214,241,143,5,108,186,224,128,20,2,55,53,53,224,128,5,225,73,1,226,
-106,4,225,101,1,102,217,174,164,128,144,224,82,5,90,25,86,135,160,84,
-224,91,0,102,196,192,40,224,108,3,226,237,2,231,79,5,64,51,51,182,
-239,153,11,219,183,197,174,36,220,221,110,101,26,131,217,32,152,32,24,217,
-186,182,25,71,145,124,14,97,235,250,162,3,128,202,64,115,224,88,1,226,
-226,0,224,237,17,98,62,224,237,24,32,110,244,151,0,209,184,233,139,23,
-32,51,200,109,224,162,1,225,235,1,33,56,230,210,6,249,69,13,224,13,
-1,204,252,164,7,244,90,1,224,69,2,101,197,226,17,2,228,237,2,64,
-122,2,39,32,85,32,47,45,12,224,176,1,2,92,51,52,2,38,115,114,
-2,99,47,77,2,105,99,114,2,111,72,115,2,47,68,101,2,115,117,103,
-2,97,114,46,2,104,115,92,32,25,2,44,51,55,2,56,58,49,2,48,
-34,32,229,105,5,243,18,5,229,102,5,227,241,2,224,2,9,224,71,1,
-228,175,3,230,6,6,230,3,4,229,183,10,128,201,244,52,0,132,167,224,
-85,9,133,3,229,239,5,224,96,1,224,102,8,247,96,14,230,115,17,247,
-112,15,227,126,8,224,52,26,224,195,3,224,31,11,130,5,225,95,17,246,
-146,13,224,23,1,246,201,2,233,150,0,194,68,224,8,10,166,105,224,11,
-0,214,219,246,235,0,105,146,195,41,128,83,228,135,4,226,239,3,240,159,
-6,166,54,209,190,224,76,0,226,207,12,106,109,99,112,2,56,51,51,225,
-172,5,229,108,5,231,162,4,138,147,198,83,142,157,202,36,232,44,8,245,
-44,3,110,255,245,44,2,105,65,65,200,32,36,199,87,183,3,182,251,228,
-98,2,225,243,11,236,77,1,242,36,0,114,201,224,144,5,165,59,147,18,
-196,184,196,154,229,114,1,235,127,0,2,51,56,51,238,133,0,64,163,236,
-180,4,252,61,4,152,79,113,195,224,141,4,130,81,2,95,56,52,232,14,
-0,250,33,16,226,206,7,224,49,5,226,202,20,226,197,17,226,161,3,226,
-32,0,97,33,128,220,32,213,253,7,6,108,34,128,200,116,153,69,255,224,
-186,6,226,225,36,117,8,226,213,3,226,211,0,226,95,18,173,208,247,147,
-4,194,51,242,32,4,129,148,210,207,207,42,226,66,2,240,26,0,196,165,
-226,72,14,193,109,243,252,6,248,102,2,194,3,83,210,181,247,226,83,5,
-228,91,3,229,190,3,176,104,228,78,3,233,239,3,224,11,12,228,23,55,
-230,52,7,239,64,0,254,171,1,228,228,2,227,163,10,224,182,0,225,197,
-1,2,54,49,50,224,60,3,226,5,8,241,195,2,224,101,0,73,189,39,
-183,67,1,233,239,0,229,81,11,230,7,4,224,164,6,236,105,1,140,252,
-228,111,2,74,151,79,217,242,237,6,194,46,246,231,1,96,225,72,10,129,
-171,228,33,1,213,139,32,160,226,149,1,249,211,0,224,135,1,245,240,0,
-2,56,52,56,240,124,2,249,234,1,2,56,52,57,234,47,0,96,16,2,
-50,51,56,236,2,7,224,45,0,66,185,93,129,65,30,2,53,48,32,147,
-252,2,56,53,49,234,137,0,99,195,137,71,128,178,96,16,192,100,229,95,
-10,163,31,66,131,228,202,0,253,22,3,233,1,3,99,94,43,85,235,224,
-1,228,12,2,2,83,32,83,231,137,8,228,234,10,100,22,183,182,164,245,
-224,38,5,155,92,160,37,224,36,2,252,225,3,133,171,224,227,0,2,90,
-32,89,237,108,0,231,223,11,129,160,96,59,235,31,3,233,247,0,237,168,
-1,239,19,2,164,6,237,163,5,231,198,5,230,91,15,226,16,7,229,117,
-2,238,186,20,106,211,236,38,2,237,216,2,230,144,3,228,82,18,235,14,
-1,146,27,233,69,1,153,62,238,76,1,244,197,3,228,227,0,233,187,2,
-226,250,1,255,180,4,235,3,21,224,63,0,206,111,228,72,3,174,75,160,
-214,173,78,114,34,133,244,150,206,2,54,55,54,128,39,251,198,8,176,220,
-34,31,32,222,242,40,0,248,110,4,89,138,248,111,2,100,63,216,117,32,
-24,96,6,35,8,32,63,209,232,128,177,43,116,88,134,252,42,5,229,208,
-5,224,21,20,224,227,5,224,46,8,160,35,195,203,149,9,166,136,215,210,
-128,84,228,226,3,99,127,228,12,0,243,194,7,238,200,4,187,124,250,225,
-1,143,148,2,52,50,53,119,18,96,218,254,127,2,225,252,11,229,131,0,
-236,5,0,240,153,2,240,214,6,225,252,5,232,54,0,224,66,0,224,94,
-1,231,206,2,253,126,1,69,118,68,183,2,50,56,52,248,134,3,240,44,
-2,194,43,96,26,32,93,232,151,0,249,244,1,32,208,68,250,226,252,1,
-2,58,56,53,243,168,4,245,217,5,224,5,2,202,177,231,39,8,246,31,
-0,250,107,10,224,25,0,160,90,225,40,1,192,18,232,75,0,32,77,2,
-56,53,52,246,234,1,128,6,136,40,130,148,133,190,2,54,32,67,128,98,
-111,58,68,210,224,14,5,2,95,54,51,162,202,160,0,247,220,13,225,205,
-0,226,56,1,164,41,225,8,1,150,166,2,56,53,55,228,42,7,247,135,
-7,2,110,34,32,224,22,11,2,116,116,34,149,160,67,68,124,18,239,240,
-0,134,37,220,163,88,22,33,41,164,159,92,165,92,31,161,232,188,144,225,
-186,3,32,81,208,89,32,158,34,173,193,178,128,56,2,51,49,50,128,143,
-2,53,51,49,128,45,208,110,165,185,48,192,176,75,241,130,0,128,239,35,
-99,99,247,228,145,0,231,242,0,235,188,3,162,55,208,169,149,49,239,21,
-17,232,108,2,238,191,1,235,70,10,230,39,1,233,40,6,238,247,14,224,
-98,12,229,30,0,183,71,163,131,229,87,4,234,109,1,248,253,5,192,8,
-224,17,9,96,8,194,38,252,57,1,252,30,5,252,31,1,224,94,1,237,
-75,6,224,90,1,224,8,0,2,95,55,49,64,75,97,93,2,54,53,50,
-241,125,12,2,61,61,34,233,105,0,250,220,4,237,90,1,231,1,2,228,
-93,4,224,16,16,123,217,101,249,35,98,64,215,73,210,2,49,48,57,255,
-60,0,2,35,50,32,254,216,1,240,58,4,241,109,25,2,69,110,99,2,
-111,100,101,2,68,97,116,2,97,46,104,145,112,2,49,51,53,2,58,49,
-51,241,112,2,225,254,6,228,171,0,237,117,14,224,45,28,224,22,0,193,
-235,249,171,4,234,252,10,234,90,5,170,50,65,21,225,148,16,53,92,71,
-5,233,242,0,225,143,9,245,34,5,226,161,3,226,123,4,237,113,1,234,
-97,3,234,227,4,165,111,197,189,35,114,147,173,57,100,32,11,147,133,35,
-202,68,18,88,207,128,3,2,80,32,90,32,1,196,91,229,237,9,136,225,
-2,95,52,57,106,59,66,216,2,90,32,66,133,71,134,178,160,14,230,108,
-6,234,121,4,202,75,65,159,2,75,51,32,192,24,224,55,11,32,15,36,
-218,171,108,32,126,136,129,225,159,5,66,101,32,26,200,92,100,164,156,159,
-196,20,233,144,3,242,187,7,202,166,65,206,248,188,9,2,85,32,73,233,
-254,2,234,225,24,246,102,16,169,211,214,2,49,183,32,23,65,124,2,51,
-50,32,59,152,137,46,32,197,76,49,97,150,32,10,133,245,241,103,1,233,
-116,4,96,162,97,36,224,184,15,75,198,181,241,235,0,0,224,149,0,96,
-57,172,16,192,36,224,37,9,96,187,221,115,237,121,4,2,67,32,79,235,
-214,2,246,227,3,32,184,134,92,230,174,7,2,50,48,52,64,4,2,49,
-32,102,227,247,0,2,99,111,110,2,65,114,105,2,116,121,34,225,24,2,
-2,52,53,32,226,54,4,96,132,32,84,198,131,32,33,110,66,77,30,32,
-22,134,69,232,125,2,231,126,2,96,44,127,221,235,187,0,199,13,2,95,
-49,54,64,198,129,37,92,68,96,99,214,205,230,231,2,96,38,207,160,224,
-95,0,96,64,192,53,214,207,239,8,0,32,5,64,191,175,93,2,49,49,
-50,237,205,0,176,13,119,231,2,53,55,57,192,165,237,239,2,158,167,96,
-87,190,104,252,44,1,129,226,227,33,3,202,102,32,7,64,83,99,8,68,
-80,32,55,2,75,32,89,231,20,0,247,37,1,226,62,9,224,25,12,57,
-243,241,126,0,226,13,0,96,20,227,172,1,79,172,137,59,224,37,22,230,
-242,3,242,69,2,226,139,4,224,48,4,2,90,32,67,224,88,10,224,38,
-10,175,137,2,51,57,32,229,6,5,232,145,1,250,96,12,244,15,9,244,
-14,13,130,247,238,119,3,224,49,13,236,159,3,241,161,13,32,42,132,44,
-199,16,225,64,18,243,210,2,225,63,3,229,18,1,164,41,132,239,133,137,
-228,32,15,99,217,224,25,12,98,188,129,38,224,25,6,97,76,192,25,251,
-123,5,173,64,224,184,14,96,30,224,185,11,253,212,3,251,183,0,225,133,
-9,136,59,225,133,6,237,115,6,161,72,224,88,5,194,6,225,32,2,224,
-164,16,245,249,3,224,163,13,225,21,13,96,48,225,21,12,252,144,2,224,
-111,10,128,173,225,19,25,224,58,10,100,175,224,170,21,224,59,16,156,73,
-224,59,20,227,249,14,226,23,16,203,217,225,1,9,166,134,224,138,14,227,
-183,8,128,138,2,49,51,50,225,1,24,64,114,224,58,10,2,56,51,53,
-68,79,224,202,2,228,141,17,224,65,15,255,138,5,226,234,9,226,233,21,
-228,226,15,225,212,25,227,35,14,229,29,2,232,243,0,100,214,2,58,56,
-51,136,18,67,232,32,19,116,188,67,3,32,24,136,32,2,102,47,61,40,
-45,64,18,64,12,32,100,32,12,135,44,70,125,72,80,230,6,1,196,209,
-246,71,15,196,167,135,94,224,7,1,117,120,78,99,97,123,96,149,135,120,
-64,95,72,68,116,58,192,183,136,6,64,6,64,132,32,1,157,223,226,110,
-11,206,193,228,160,17,224,25,9,142,158,232,246,15,103,47,39,77,32,63,
-32,5,32,143,136,150,107,106,224,19,6,167,24,126,29,176,108,168,171,2,
-55,49,48,96,207,246,167,2,148,230,240,13,1,255,41,3,32,7,79,187,
-214,158,33,7,39,208,2,49,53,51,2,32,64,79,40,191,2,50,48,32,
-169,42,2,95,49,50,64,24,247,92,1,73,57,32,123,2,53,54,49,107,
-175,174,10,32,5,2,49,32,35,244,97,3,233,153,9,97,3,73,154,160,
-24,128,141,108,119,188,20,224,6,5,239,20,3,229,12,4,213,221,183,123,
-225,109,9,232,255,0,234,25,10,233,220,0,160,100,128,65,2,95,55,52,
-92,155,2,52,55,52,34,31,40,152,234,98,2,128,52,129,99,105,154,129,
-99,252,198,5,105,174,229,96,5,224,53,0,65,166,241,40,7,2,102,34,
-32,205,78,64,34,2,53,53,52,221,30,96,49,97,246,224,50,14,224,127,
-8,138,237,44,244,109,150,224,150,1,176,233,229,21,21,233,93,9,242,159,
-2,231,149,6,161,118,32,105,2,55,32,95,130,143,32,6,33,44,204,12,
-129,221,236,197,2,179,233,232,215,11,130,205,224,32,18,132,238,236,158,10,
-192,24,189,191,211,62,2,55,53,54,236,57,21,206,186,96,193,65,96,2,
-49,52,55,255,85,2,224,240,5,64,208,85,237,165,31,226,77,15,32,32,
-195,25,128,92,224,154,2,2,95,56,55,66,218,225,33,5,225,95,1,226,
-178,33,224,154,0,196,148,237,174,13,254,57,2,211,234,212,156,252,138,12,
-252,137,7,224,52,21,255,7,2,246,215,4,160,10,224,52,13,225,16,0,
-224,41,2,248,217,5,64,42,236,30,4,226,245,5,113,80,2,76,105,115,
-2,116,95,84,2,121,112,101,2,46,43,43,241,79,0,250,123,2,194,243,
-227,202,3,240,103,11,195,98,228,101,8,33,199,251,218,0,64,23,36,241,
-98,222,238,237,7,38,33,141,57,37,21,72,15,32,77,128,32,32,52,77,
-33,32,22,56,85,128,17,32,43,141,13,2,75,32,66,238,79,1,248,60,
-0,229,117,7,224,242,1,2,105,109,112,2,111,115,115,2,105,98,108,2,
-101,58,32,160,237,205,150,102,166,128,61,69,149,2,56,51,48,128,78,98,
-99,253,159,0,224,94,11,37,212,64,142,241,196,1,64,64,251,200,1,96,
-174,141,132,224,218,4,64,95,175,76,113,164,189,11,102,18,35,25,32,91,
-226,75,2,224,115,10,78,158,160,98,239,145,4,230,84,3,224,56,12,86,
-63,230,128,14,193,100,64,121,32,181,140,83,65,30,97,220,161,228,97,207,
-226,75,11,2,82,97,116,2,105,111,95,98,76,2,95,109,107,96,13,2,
-110,97,108,229,141,1,99,207,32,5,171,34,224,15,0,66,29,2,58,56,
-50,136,216,97,105,32,13,136,205,97,69,32,13,136,206,72,60,129,172,32,
-15,122,101,2,53,51,57,64,9,39,83,148,109,36,125,72,115,2,50,51,
-32,176,64,36,134,128,36,224,37,5,2,50,52,32,224,37,0,224,215,24,
-2,73,110,116,2,101,103,101,2,114,46,95,2,105,110,116,67,47,2,84,
-111,73,128,17,224,218,1,102,189,186,73,48,89,243,199,5,32,105,166,240,
-224,105,30,161,67,32,110,224,106,10,229,103,5,232,37,0,130,104,65,81,
-97,54,40,247,66,11,40,142,2,95,54,50,160,34,164,50,32,37,137,173,
-193,106,137,153,32,165,97,31,120,74,72,118,2,56,50,49,64,20,80,174,
-2,54,32,35,66,18,140,14,138,239,224,29,15,32,79,131,199,2,117,113,
-117,2,111,116,32,32,14,131,170,2,73,32,58,64,50,210,206,73,5,225,
-223,1,76,135,113,52,2,80,32,35,131,23,64,20,130,2,252,190,0,117,
-95,249,231,1,133,182,246,254,1,38,18,64,152,136,248,142,22,2,56,48,
-51,160,51,50,158,132,147,98,248,219,242,232,230,0,251,195,13,32,217,32,
-81,96,49,33,109,131,36,32,150,130,139,70,243,178,70,136,30,64,6,139,
-12,64,42,145,170,235,108,3,244,117,1,232,5,2,64,185,248,14,1,101,
-222,32,4,165,62,221,118,192,7,245,245,1,225,16,1,160,19,32,10,253,
-183,2,229,191,10,157,218,91,22,2,49,51,32,35,11,42,103,227,150,0,
-74,179,32,59,175,47,83,117,201,160,32,203,171,216,221,6,2,95,55,50,
-247,170,3,2,36,118,34,129,244,64,67,243,44,3,96,252,252,209,5,151,
-31,198,204,241,147,2,150,56,252,236,3,193,185,251,82,4,65,146,160,47,
-222,218,64,208,2,55,50,50,253,121,5,96,29,65,49,234,104,0,128,25,
-115,193,64,248,243,38,0,2,56,48,52,160,42,235,253,0,225,165,1,255,
-152,8,247,248,3,231,239,7,224,187,0,152,98,250,59,1,97,151,2,56,
-49,50,227,233,7,2,66,111,111,2,108,46,111,2,116,104,101,2,114,119,
-105,2,115,101,34,232,192,0,245,123,3,247,226,4,97,22,2,55,51,57,
-164,216,224,116,2,64,23,175,200,128,23,33,141,212,132,243,23,2,175,236,
-32,28,131,144,128,230,251,68,0,227,82,0,224,113,0,227,120,0,243,96,
-0,230,226,0,251,98,6,253,171,2,154,153,232,167,4,239,5,2,249,136,
-6,251,54,2,254,237,14,128,146,253,102,0,228,4,2,238,175,0,224,27,
-1,100,1,235,60,12,128,30,135,31,130,232,196,36,193,60,38,40,68,248,
-236,153,1,228,52,8,225,147,1,226,136,1,159,228,128,41,68,44,160,124,
-227,174,1,2,95,56,32,163,81,133,123,232,19,0,227,213,1,240,112,0,
-234,137,1,163,67,157,10,250,80,2,98,246,253,98,1,227,57,0,244,163,
-3,96,233,107,56,32,233,235,131,2,204,116,228,52,0,226,228,11,225,88,
-14,252,251,1,224,16,1,61,220,67,119,96,146,227,55,9,235,86,0,2,
-95,52,49,39,129,246,158,0,225,142,2,224,167,9,224,22,8,241,149,0,
-226,122,0,255,253,2,228,249,2,68,5,80,114,87,161,252,73,8,124,48,
-2,48,58,48,99,99,201,48,96,210,224,46,25,137,244,169,27,228,249,6,
-2,109,34,32,233,158,1,2,56,48,50,64,229,175,65,223,145,38,99,2,
-83,32,73,230,98,5,64,186,65,52,225,12,0,160,48,2,54,56,54,198,
-189,64,59,2,51,56,56,255,205,1,69,199,157,75,224,131,6,2,112,34,
-32,224,159,1,2,54,49,56,66,104,187,221,66,112,102,132,34,231,75,102,
-98,218,32,22,135,119,198,130,2,80,32,67,226,210,0,131,104,32,155,237,
-94,5,2,51,55,55,226,186,1,236,138,1,223,189,64,216,32,51,239,242,
-2,32,35,66,183,130,89,145,29,247,100,1,242,90,1,159,251,130,44,226,
-216,0,64,122,192,72,203,24,102,11,198,177,229,231,2,128,120,198,231,101,
-202,192,37,227,102,1,32,24,73,106,198,220,250,225,1,2,58,56,48,200,
-116,32,173,250,49,7,231,90,2,153,108,230,203,3,194,232,228,175,0,238,
-110,5,225,214,1,166,247,230,79,4,252,110,11,225,86,3,252,150,13,133,
-67,252,150,17,251,221,3,252,118,12,192,64,252,156,1,224,116,1,244,238,
-9,242,9,1,225,189,1,119,126,254,246,0,255,22,2,230,163,3,224,181,
-5,200,81,230,204,10,224,40,5,235,30,0,224,186,11,224,28,2,132,228,
-220,70,66,240,228,16,1,133,140,32,175,165,143,2,53,49,52,236,231,0,
-92,144,242,112,0,225,43,3,253,136,3,232,153,2,241,85,45,129,204,225,
-19,1,241,118,16,243,121,13,240,102,4,229,206,2,232,110,9,150,41,128,
-254,224,198,1,224,16,0,253,222,29,225,191,26,225,23,0,225,190,21,182,
-172,225,189,12,224,27,2,64,210,240,202,4,206,178,197,1,161,206,226,106,
-10,128,224,246,166,1,160,55,255,140,0,32,28,2,82,32,95,224,219,2,
-240,20,4,240,17,19,2,112,97,116,2,86,97,114,2,115,32,34,130,40,
-112,106,102,32,160,225,78,110,2,50,54,56,68,224,45,25,64,5,153,194,
-98,219,96,127,36,72,238,171,1,241,114,2,104,85,239,120,4,2,57,53,
-32,239,120,0,119,242,151,39,64,65,204,83,2,75,32,83,144,143,128,115,
-2,52,55,57,204,59,128,17,192,93,153,46,111,202,200,221,224,31,11,80,
-35,97,116,224,29,5,138,10,225,4,1,2,91,93,34,100,224,224,30,14,
-2,40,41,34,209,191,108,3,96,177,140,227,76,23,2,52,53,55,101,159,
-32,228,32,23,255,129,0,139,152,131,140,71,105,97,156,235,150,1,32,42,
-204,50,109,246,97,9,35,192,32,23,202,188,173,166,2,80,32,85,35,242,
-42,198,2,55,54,54,216,125,2,55,54,55,2,32,64,89,230,95,0,237,
-101,1,100,29,224,7,2,64,211,196,135,226,27,1,2,56,48,49,144,64,
-96,202,139,15,69,90,50,172,162,68,164,101,164,106,105,111,131,47,142,57,
-165,138,98,0,249,61,5,134,203,236,241,1,197,212,64,46,137,12,153,220,
-2,95,55,55,210,97,160,215,142,185,64,216,136,159,70,228,235,113,0,224,
-141,3,192,36,167,195,237,113,0,166,165,167,55,227,42,0,160,254,120,215,
-130,124,227,39,1,2,95,55,57,100,181,146,173,210,229,33,31,128,42,33,
-28,136,70,132,242,236,35,0,231,175,3,2,55,57,49,231,152,1,167,251,
-231,25,0,199,254,236,51,13,236,14,6,224,19,2,165,146,224,16,13,202,
-242,234,47,0,225,225,0,255,154,1,96,161,224,162,1,169,76,237,149,1,
-230,148,1,224,175,4,171,114,230,179,3,228,253,4,231,244,5,134,46,118,
-237,35,230,80,44,237,189,7,132,194,224,252,0,200,56,224,138,2,240,221,
-4,203,74,233,41,3,232,65,2,235,160,4,104,150,128,5,128,154,138,212,
-99,196,209,195,229,195,0,224,102,1,192,200,224,73,8,129,21,132,7,101,
-193,32,71,89,172,224,71,3,2,95,49,54,198,170,130,191,193,255,227,138,
-13,246,204,2,195,149,161,201,225,186,6,129,173,254,138,3,81,5,224,199,
-2,160,45,83,93,115,193,164,172,224,159,0,251,46,8,253,64,0,32,178,
-98,225,135,58,96,114,224,54,1,32,6,35,122,251,91,4,165,213,192,224,
-194,222,162,71,93,155,36,238,251,162,13,240,11,1,32,41,253,104,4,163,
-184,196,146,224,20,2,162,215,163,108,139,156,227,210,0,229,54,0,233,160,
-0,189,173,200,167,167,7,96,81,246,162,1,122,178,171,157,128,25,240,226,
-1,44,103,138,159,2,58,55,57,234,255,2,224,109,5,226,39,1,243,101,
-1,229,72,3,32,59,179,155,32,233,78,6,87,38,68,196,96,249,129,53,
-100,210,32,40,181,185,70,15,70,33,32,47,114,69,71,11,32,29,134,69,
-253,72,3,254,157,3,236,102,3,163,209,132,179,32,17,32,60,134,106,132,
-114,228,108,2,193,43,195,219,195,107,97,52,164,185,229,176,0,226,128,5,
-197,148,128,165,32,98,198,162,101,60,188,12,2,55,55,55,225,120,1,37,
-164,247,248,1,98,43,77,113,34,39,39,188,86,100,197,107,32,75,184,222,
-77,206,70,231,96,36,64,16,158,111,44,54,32,89,155,109,2,56,48,32,
-64,31,173,193,65,58,79,63,32,5,104,82,103,61,97,102,225,129,2,192,
-177,64,34,64,84,2,55,56,55,2,32,58,55,64,19,167,165,118,153,2,
-51,48,49,128,96,33,119,32,29,129,155,137,105,193,253,237,96,1,139,77,
-233,255,3,228,205,5,32,70,128,219,192,32,237,221,2,160,26,231,26,3,
-160,19,216,171,65,90,122,27,227,66,11,128,161,224,44,7,131,167,192,27,
-224,28,7,167,85,224,28,13,132,35,192,28,252,223,0,181,239,228,105,4,
-71,165,228,31,0,224,158,6,232,72,0,33,60,226,186,1,163,145,103,228,
-232,127,5,230,35,2,203,216,224,30,3,101,177,142,95,118,8,225,63,0,
-2,83,32,66,238,96,4,230,255,2,225,82,2,64,56,245,56,4,224,56,
-1,231,95,5,228,102,2,242,76,1,230,126,3,228,56,2,128,25,106,123,
-230,210,1,228,81,2,228,98,10,226,8,0,197,113,241,84,8,2,46,47,
-108,2,105,98,47,84,248,2,47,73,110,2,116,77,97,2,112,46,104,2,
-115,92,51,49,104,2,54,53,58,2,49,34,32,224,59,1,33,87,131,213,
-209,6,99,27,65,126,97,185,130,197,2,55,56,51,73,184,99,20,247,137,
-6,96,19,203,158,32,33,234,74,2,128,78,223,134,243,98,5,231,207,3,
-83,209,112,209,238,36,2,199,30,237,210,2,151,181,67,179,222,35,225,236,
-2,240,56,2,128,42,32,79,197,133,242,12,3,241,67,2,32,72,34,193,
-197,196,192,7,167,212,229,193,3,226,52,0,141,128,32,55,143,219,196,187,
-163,63,64,149,33,0,164,99,2,55,55,51,65,55,100,87,64,26,128,19,
-2,54,32,58,96,19,193,34,64,37,160,212,127,195,68,32,32,48,64,96,
-128,48,34,18,100,101,64,30,96,52,165,99,233,60,5,224,225,3,238,97,
-2,225,12,0,196,39,99,125,64,86,130,87,224,46,5,131,192,193,104,140,
-152,139,57,162,165,148,37,244,49,4,128,182,2,55,55,53,128,220,64,10,
-224,5,6,226,191,4,192,120,233,142,9,245,239,5,224,17,13,160,153,227,
-106,4,170,35,242,38,1,233,112,2,227,165,3,207,61,224,214,2,232,61,
-0,224,61,45,232,194,0,224,61,23,241,232,0,224,61,3,233,45,0,225,
-4,1,229,204,0,97,126,65,83,216,95,239,229,1,251,123,1,224,31,3,
-235,235,2,228,86,2,96,40,224,39,5,224,40,8,227,102,4,102,247,224,
-46,4,195,6,195,28,66,59,74,143,197,150,34,151,134,209,118,46,32,13,
-197,162,234,118,2,224,10,6,224,109,1,232,4,0,32,55,196,130,233,182,
-2,64,27,32,25,132,113,60,203,99,42,156,203,99,184,245,83,0,128,5,
-32,152,103,171,111,230,50,112,111,232,32,41,231,210,0,224,41,0,96,196,
-117,219,80,172,254,15,9,69,44,2,33,34,32,170,152,32,66,255,148,0,
-181,192,170,224,241,121,0,128,127,225,220,1,160,31,203,186,226,230,7,224,
-13,15,226,222,0,225,205,9,242,14,18,226,208,10,249,226,3,226,190,22,
-205,156,226,165,19,225,47,0,224,10,4,224,11,15,226,49,20,2,58,55,
-54,132,217,187,10,234,245,3,173,145,228,133,5,168,84,209,75,2,50,56,
-55,167,34,172,92,224,254,10,250,38,2,237,80,11,237,173,5,96,16,98,
-133,236,233,3,32,7,127,152,64,12,32,178,133,122,2,90,32,85,66,13,
-65,218,194,170,128,16,194,243,132,225,63,251,240,160,6,224,198,0,176,206,
-101,57,229,83,0,153,115,107,237,165,82,152,79,104,190,248,157,2,231,150,
-5,108,38,202,58,106,224,252,155,2,249,221,5,141,21,32,152,135,167,137,
-144,41,102,98,155,237,91,25,147,241,32,230,210,102,160,211,160,239,2,54,
-52,48,236,180,0,160,164,130,8,148,96,96,101,96,125,97,109,128,76,236,
-124,3,202,53,71,149,75,244,64,48,244,61,9,51,202,2,49,50,48,243,
-203,1,2,50,49,32,48,1,230,93,0,86,110,32,121,224,198,12,165,166,
-32,192,132,73,193,18,55,213,42,119,226,78,7,64,152,99,226,228,26,5,
-2,33,33,58,2,32,101,109,2,112,116,121,250,129,0,135,54,226,128,11,
-239,203,17,147,207,224,88,8,2,60,48,34,163,27,132,224,136,188,236,62,
-4,128,11,105,74,32,38,211,61,105,81,224,207,1,174,169,255,79,8,248,
-33,12,224,40,25,182,234,246,179,25,164,3,198,117,201,140,249,49,6,249,
-9,4,249,47,22,131,73,2,53,52,32,246,138,2,252,144,0,235,50,0,
-224,104,9,153,220,224,66,3,249,160,19,201,3,249,160,5,225,21,21,225,
-61,31,250,101,9,248,158,89,96,242,68,67,99,135,32,11,2,53,56,57,
-117,115,2,57,32,95,2,55,49,56,141,143,47,33,245,151,3,183,249,233,
-223,6,67,203,2,53,53,52,160,65,227,164,0,2,55,53,56,220,162,191,
-230,164,78,184,21,248,143,13,244,40,2,192,203,242,165,0,248,156,4,224,
-49,0,236,4,4,160,41,226,91,0,107,140,227,184,1,178,79,169,78,128,
-37,132,123,2,52,55,52,221,222,2,52,55,53,184,148,78,156,236,185,0,
-2,53,57,32,72,54,234,6,0,237,176,3,225,178,16,231,55,3,226,79,
-5,225,137,1,249,54,2,129,65,225,32,1,226,108,2,219,36,35,209,136,
-164,119,149,64,180,134,87,236,38,1,160,22,119,172,96,181,151,60,125,171,
-70,28,2,55,49,51,200,74,96,222,113,251,172,231,253,188,0,102,230,64,
-123,64,140,205,106,33,4,34,170,32,84,134,227,163,53,32,149,97,100,2,
-50,53,32,228,201,11,152,228,32,52,135,10,37,180,2,53,32,58,96,53,
-224,175,1,131,138,128,176,201,220,128,24,98,81,128,24,133,145,34,81,2,
-54,32,85,33,219,225,103,5,64,105,224,19,7,64,84,224,19,6,70,22,
-250,60,1,160,19,64,59,216,62,253,182,5,162,190,153,166,156,154,229,145,
-5,2,103,101,116,2,83,76,111,2,99,32,69,2,85,86,97,2,114,34,
-32,252,195,0,70,47,107,80,226,255,3,121,36,160,81,96,4,230,146,1,
-224,147,7,99,128,224,147,6,97,11,96,131,224,84,3,64,18,224,86,0,
-192,18,224,19,2,2,51,55,55,236,122,0,229,220,10,224,119,7,114,2,
-224,119,6,64,166,79,196,224,80,3,218,105,224,125,14,224,17,6,224,101,
-7,65,93,224,101,7,64,42,224,76,10,186,91,224,97,6,224,224,13,224,
-225,7,64,204,224,18,6,129,87,224,18,4,65,86,224,140,7,66,38,224,
-140,12,67,192,225,216,2,129,199,129,9,224,142,7,226,62,1,234,247,0,
-224,119,4,101,62,224,119,5,64,58,224,54,1,225,228,14,128,115,224,244,
-0,225,128,11,226,246,8,224,245,9,144,73,224,125,4,132,76,171,144,224,
-132,4,206,127,224,107,11,225,58,7,225,57,15,225,173,9,35,211,181,115,
-131,211,225,91,6,41,207,99,52,224,73,6,32,53,213,152,96,53,225,23,
-5,2,53,48,32,192,37,177,70,196,47,227,144,27,255,176,0,32,62,133,
-80,228,110,13,129,60,231,235,8,225,10,6,66,126,226,190,13,227,178,21,
-225,91,3,230,77,8,228,168,7,226,49,3,160,55,227,146,20,226,85,4,
-64,232,66,157,192,232,69,246,224,59,6,224,12,11,226,129,3,32,64,182,
-196,224,64,7,161,234,224,139,7,227,183,7,32,64,198,25,225,207,4,224,
-31,2,198,43,96,33,143,84,2,51,52,55,217,164,96,46,128,40,134,59,
-96,38,76,48,224,74,7,224,90,10,198,84,108,139,34,88,32,215,151,130,
-2,52,50,32,64,31,162,160,2,54,52,49,64,4,2,50,32,79,2,32,
-35,55,32,101,99,36,32,30,162,137,224,30,4,33,79,192,30,199,169,246,
-131,0,202,135,217,181,233,117,10,235,68,2,254,165,1,224,21,7,239,249,
-6,242,233,1,239,16,0,243,41,61,253,102,9,160,141,253,67,19,232,83,
-0,164,247,253,173,12,136,103,242,252,8,72,81,103,164,246,241,5,183,17,
-32,50,32,30,2,51,32,79,64,37,33,186,233,28,0,253,64,4,32,2,
-160,91,239,71,1,211,46,96,62,232,233,3,225,131,12,236,60,0,169,153,
-141,187,170,223,224,60,2,193,212,128,85,128,20,128,72,224,77,1,2,95,
-53,57,66,91,182,134,96,89,224,75,1,160,104,224,21,6,96,50,154,178,
-73,176,135,106,32,99,247,182,3,2,36,104,34,250,215,0,64,36,128,50,
-224,49,20,2,118,115,34,225,47,0,218,7,2,51,55,32,224,13,1,139,
-4,138,174,32,26,144,106,96,23,139,234,97,128,251,83,3,237,242,15,79,
-195,2,51,57,32,132,194,253,177,0,192,25,162,23,130,98,35,37,234,186,
-1,137,243,134,109,243,245,3,2,58,55,51,202,199,128,34,234,21,0,64,
-164,123,35,32,112,112,240,155,125,64,214,120,122,234,39,93,208,147,2,95,
-55,48,33,246,2,51,55,52,198,244,41,172,177,130,72,59,141,24,157,135,
-124,160,108,98,248,60,0,128,194,234,13,40,192,53,224,96,3,160,20,224,
-81,1,224,28,4,152,213,224,28,1,234,25,54,224,228,1,224,130,12,2,
-50,55,32,70,22,224,169,0,225,44,0,2,53,49,52,146,93,44,216,225,
-52,1,134,172,192,155,234,57,36,225,9,6,108,241,224,137,1,206,152,225,
-30,11,225,31,22,234,88,71,251,16,1,224,106,6,224,134,4,2,52,57,
-57,129,89,219,218,97,75,32,43,231,212,1,2,83,32,73,179,215,143,25,
-239,232,4,32,41,137,210,192,55,236,111,1,234,138,32,224,57,4,225,222,
-5,128,25,189,214,226,103,12,226,1,2,32,11,252,131,0,234,156,51,39,
-161,226,107,0,192,88,179,47,224,122,15,225,218,22,234,192,13,226,43,17,
-32,119,253,105,1,36,105,136,156,225,26,6,133,126,40,84,96,34,136,150,
-234,69,52,226,208,39,228,12,33,224,28,7,234,115,32,160,49,225,241,18,
-234,124,2,226,129,5,33,19,181,95,36,24,225,56,11,224,146,2,226,104,
-3,32,55,137,144,224,55,6,193,213,226,15,2,224,85,15,74,4,222,126,
-64,83,225,187,9,64,67,96,49,225,193,2,137,200,224,40,11,135,176,227,
-12,3,32,46,134,209,227,46,11,139,70,128,138,2,58,55,50,221,185,32,
-15,32,13,221,181,190,252,122,59,242,208,1,69,56,129,63,32,42,216,87,
-32,87,81,110,86,85,2,50,56,52,255,60,5,151,51,224,61,1,254,207,
-0,96,10,119,60,148,6,166,139,247,39,6,247,237,2,135,112,32,118,235,
-137,0,83,240,104,109,75,65,40,221,129,157,82,2,64,207,242,102,0,114,
-88,2,79,32,80,64,14,65,5,248,53,12,160,31,32,210,224,31,7,136,
-9,96,197,160,64,146,137,32,105,215,159,97,2,32,158,104,178,71,142,137,
-133,65,59,96,42,64,60,224,53,1,252,20,1,64,42,192,10,203,166,156,
-74,252,82,5,72,9,232,120,1,97,28,104,120,71,127,224,234,81,64,32,
-192,180,71,253,192,105,97,180,152,239,2,55,49,53,120,234,83,140,172,111,
-64,54,224,41,15,234,7,1,2,91,93,34,160,46,129,205,252,211,6,2,
-76,105,115,2,116,95,84,2,121,112,101,2,46,34,32,64,36,243,143,1,
-253,153,2,233,152,1,66,80,212,141,169,13,64,21,173,55,2,55,49,49,
-33,96,71,181,154,244,64,247,79,190,32,19,175,158,32,170,90,3,96,175,
-234,171,2,2,102,34,32,162,131,32,192,122,54,122,30,224,38,14,64,79,
-129,167,2,75,32,80,32,3,65,15,64,3,2,58,55,48,129,166,71,24,
-2,95,50,57,32,203,253,142,0,106,139,99,56,2,49,51,50,69,122,154,
-241,96,29,67,19,124,68,34,84,251,255,2,246,62,4,32,91,245,6,2,
-43,226,2,55,48,50,185,83,141,231,32,16,64,52,99,108,192,30,32,5,
-229,185,2,77,37,224,56,0,154,10,219,106,171,145,65,201,33,41,192,34,
-108,36,2,54,55,54,163,162,75,87,32,134,161,245,224,99,2,32,202,64,
-91,2,49,49,50,192,58,67,38,53,152,90,81,160,14,224,86,1,211,203,
-32,74,227,223,0,64,120,2,54,57,57,32,22,2,90,32,80,64,255,108,
-39,32,33,227,225,2,96,31,2,83,32,80,2,32,64,73,128,136,197,211,
-169,238,127,84,103,177,133,121,224,10,3,255,114,0,65,35,64,80,96,141,
-34,19,224,246,0,128,125,215,95,65,25,2,57,55,32,96,185,128,8,64,
-183,47,199,128,53,32,11,61,89,160,11,32,84,175,151,96,254,34,24,224,
-82,4,66,183,36,236,225,25,1,224,112,21,38,47,224,112,0,35,244,224,
-111,0,97,110,160,110,210,106,225,180,1,160,76,216,25,224,188,0,126,61,
-62,62,160,152,64,60,198,44,2,58,54,57,204,228,67,21,187,204,96,56,
-32,26,130,107,2,85,32,73,96,13,129,242,246,142,8,2,105,109,112,2,
-111,115,115,2,105,98,108,2,101,34,32,65,174,120,50,96,54,2,75,52,
-32,32,2,82,139,128,1,237,192,1,32,36,253,172,1,98,186,220,41,254,
-50,0,79,243,192,201,65,221,72,10,64,64,192,70,157,219,157,201,166,114,
-131,179,96,7,97,212,32,199,68,234,99,130,192,118,228,57,2,171,23,64,
-21,130,15,2,73,32,58,2,54,57,50,229,122,3,248,9,0,2,54,57,
-49,192,212,2,50,32,75,32,215,160,234,196,0,128,141,37,83,254,26,10,
-228,58,2,2,115,117,112,2,101,114,34,254,34,10,2,58,54,56,196,52,
-128,70,224,52,2,2,67,34,32,96,32,129,141,32,107,67,179,2,90,32,
-67,250,152,1,120,223,231,87,5,254,157,8,64,104,239,65,2,32,79,129,
-207,73,103,132,21,2,54,56,53,231,213,5,194,86,32,4,32,150,2,51,
-48,48,192,25,240,89,0,254,2,3,99,144,101,174,99,158,64,85,32,6,
-65,247,64,92,71,197,115,76,32,94,141,118,243,22,4,225,53,19,2,100,
-117,112,2,108,105,99,2,97,116,101,2,32,100,101,2,102,105,110,2,105,
-116,105,2,111,110,32,161,68,2,51,48,54,224,211,1,226,152,6,2,99,
-104,101,2,99,107,68,2,117,112,34,129,171,69,70,226,232,0,64,211,32,
-7,69,141,115,70,130,246,255,151,11,188,64,64,30,64,251,32,71,198,156,
-233,49,2,154,170,243,7,1,164,51,101,192,237,42,2,233,12,0,235,205,
-1,32,79,130,146,139,0,100,39,64,156,96,63,125,42,81,90,66,215,96,
-43,191,127,67,145,241,0,1,243,230,2,128,66,33,231,195,38,199,65,243,
-157,5,160,49,64,5,32,15,224,52,8,224,53,0,192,7,244,1,1,243,
-147,5,243,228,14,160,236,244,14,64,224,188,1,244,153,3,224,64,14,224,
-65,2,97,18,244,12,15,224,25,0,243,237,3,127,181,160,75,96,23,100,
-123,226,36,2,169,83,255,59,3,224,60,3,96,2,133,111,224,137,6,131,
-99,129,209,2,55,48,32,244,67,3,196,250,32,109,96,8,224,5,16,32,
-57,248,45,0,244,192,5,66,45,64,85,2,85,32,65,243,110,6,225,111,
-15,34,189,192,36,226,13,3,148,204,225,219,7,129,70,129,24,243,120,2,
-243,95,0,152,231,226,60,0,224,40,0,224,72,14,225,132,5,225,196,10,
-255,88,2,105,52,149,11,195,52,162,166,160,6,148,199,191,17,130,121,97,
-48,97,107,128,181,227,126,1,102,33,143,78,99,178,224,9,1,224,68,21,
-225,101,0,129,192,134,118,224,60,3,197,90,225,238,4,70,204,160,216,64,
-134,98,202,160,18,64,14,32,63,137,121,224,208,10,231,45,3,225,26,0,
-246,109,1,226,214,17,224,28,1,224,29,41,227,64,10,247,231,1,227,42,
-1,248,41,4,160,52,227,180,5,227,84,2,114,117,2,49,51,55,111,210,
-230,94,4,245,245,0,139,16,2,54,48,32,224,25,0,2,95,52,48,219,
-178,224,157,0,161,138,129,135,43,164,88,243,226,13,13,117,250,204,203,166,
-152,181,25,170,206,2,53,56,48,169,41,200,110,67,14,247,185,1,65,36,
-225,49,5,229,63,5,226,245,9,225,18,0,226,242,95,226,214,3,241,62,
-0,129,74,76,236,238,10,13,133,196,108,40,224,41,22,68,107,42,48,100,
-243,129,64,96,4,227,57,13,2,90,32,85,224,13,1,230,119,1,227,1,
-27,2,75,32,35,96,112,227,2,19,225,59,15,224,13,4,101,116,226,161,
-0,161,215,129,67,226,115,2,160,221,135,138,103,216,96,10,2,53,53,57,
-208,247,66,29,2,53,54,32,226,169,7,76,72,128,60,224,8,1,225,43,
-1,225,9,0,165,127,194,106,2,89,32,67,234,210,38,97,53,32,203,160,
-65,137,210,66,4,229,217,1,64,24,76,237,224,118,2,110,87,2,54,56,
-48,104,90,73,146,173,209,205,218,202,85,42,7,33,237,234,7,1,128,8,
-110,181,2,54,56,50,170,15,234,86,8,170,84,96,36,172,117,239,34,1,
-32,19,204,76,139,26,96,166,2,58,54,55,138,207,134,91,34,76,35,207,
-229,129,0,252,187,4,74,248,192,144,165,89,32,61,176,127,78,119,32,13,
-202,170,131,101,134,97,225,218,6,202,147,230,120,1,232,170,14,224,13,3,
-195,244,163,132,231,45,0,141,139,226,2,5,227,130,12,201,119,226,209,0,
-201,182,228,235,7,32,158,74,12,250,149,0,169,147,233,245,1,64,33,33,
-109,233,121,7,183,181,102,182,198,119,239,136,0,33,25,202,212,106,142,228,
-179,9,231,134,7,228,48,0,163,161,74,72,224,247,7,229,166,9,228,108,
-2,160,138,251,93,4,234,80,5,161,163,225,62,6,232,20,0,172,167,233,
-102,3,32,112,2,52,49,55,224,43,0,161,42,237,225,4,234,79,2,96,
-68,224,23,0,227,241,0,192,252,161,71,227,1,0,240,213,0,144,111,232,
-255,5,198,181,180,181,254,97,18,232,5,4,225,85,2,230,226,0,139,163,
-224,204,11,230,236,4,224,58,44,224,55,11,97,167,237,147,2,196,5,248,
-39,1,109,111,65,5,237,92,9,35,118,79,206,128,244,245,132,7,245,131,
-3,234,237,2,132,37,65,91,241,111,0,253,150,0,169,28,142,123,128,182,
-192,189,228,193,1,192,17,91,186,148,102,96,16,224,77,24,115,5,226,19,
-4,78,68,226,93,3,192,29,224,89,3,141,41,195,24,193,230,229,50,0,
-233,83,1,227,27,5,194,149,224,183,2,162,237,32,83,177,225,65,84,65,
-65,32,73,161,20,133,21,65,144,55,134,228,196,1,213,198,35,200,160,4,
-245,229,1,32,31,64,38,212,142,69,105,32,56,113,119,84,5,109,229,102,
-36,67,162,225,21,2,180,151,116,50,160,6,64,7,65,188,32,37,32,60,
-215,165,32,246,228,11,1,237,192,3,129,9,199,31,96,31,225,77,3,96,
-99,150,44,152,144,2,54,52,57,233,1,0,164,3,115,71,97,21,163,127,
-137,156,160,135,114,190,64,66,96,228,132,161,229,187,0,2,95,54,51,32,
-60,32,219,197,47,64,126,2,54,51,51,231,27,0,64,99,70,175,155,187,
-250,190,0,128,35,232,233,1,2,54,51,54,128,39,2,53,53,32,193,162,
-202,148,67,186,191,248,160,70,224,40,1,161,68,129,62,143,87,129,65,162,
-73,64,236,32,181,130,230,245,88,2,128,162,32,69,65,12,202,13,224,104,
-9,160,32,32,79,64,46,32,72,175,221,224,239,13,192,173,96,63,98,194,
-235,90,1,228,126,1,224,242,1,139,20,196,134,165,180,233,96,0,99,51,
-97,185,100,235,129,34,213,192,41,234,32,4,188,182,233,27,0,2,54,54,
-48,225,1,1,87,35,96,183,98,148,96,48,68,4,32,19,162,248,231,182,
-3,66,103,179,5,64,36,128,50,98,201,160,35,241,136,1,2,67,39,34,
-178,228,64,109,225,13,35,224,233,1,192,22,129,1,224,191,1,36,170,192,
-191,128,225,64,249,2,58,54,53,195,90,232,104,3,32,82,160,177,64,37,
-224,177,19,2,83,39,34,160,177,64,95,248,138,0,194,48,184,79,64,61,
-224,206,16,234,166,5,101,176,198,193,225,168,3,178,253,237,36,0,162,71,
-32,97,129,152,224,193,4,73,83,233,42,1,91,13,32,131,226,169,5,163,
-207,128,131,175,173,199,236,227,72,3,235,71,13,240,109,0,226,72,4,229,
-144,1,226,92,9,194,83,240,106,3,224,75,14,120,236,224,75,7,131,135,
-255,167,0,32,78,32,156,32,213,198,24,227,238,4,161,227,226,133,3,244,
-213,2,105,16,64,62,161,175,233,53,0,138,166,65,178,226,18,8,32,25,
-194,18,194,196,38,117,224,25,2,32,24,130,179,225,136,5,226,74,1,68,
-47,229,228,6,32,4,109,199,32,28,194,103,138,244,32,172,32,19,185,58,
-224,79,4,166,74,64,30,229,47,0,163,5,149,86,97,91,129,96,226,110,
-2,226,51,6,97,146,224,36,17,225,107,2,224,36,17,225,220,2,224,73,
-24,154,212,224,73,22,157,241,224,36,15,133,44,96,73,229,108,10,2,52,
-51,32,202,91,227,58,8,155,59,192,250,96,41,227,46,3,228,126,3,2,
-66,34,32,194,94,225,252,3,34,16,227,77,1,224,55,9,2,66,39,34,
-224,54,12,193,171,224,24,7,88,12,224,24,12,70,76,224,24,2,160,176,
-136,167,64,6,226,118,3,163,225,32,24,230,56,11,239,62,0,238,59,7,
-245,238,3,66,123,229,76,3,2,67,32,61,2,61,32,64,2,35,55,32,
-224,32,9,235,236,2,94,91,234,33,5,226,148,0,167,89,224,126,11,192,
-101,128,76,246,72,7,160,6,192,115,205,47,224,151,19,128,35,32,69,224,
-44,6,253,53,3,64,152,231,237,1,236,202,0,224,202,4,160,185,224,35,
-21,94,201,225,180,1,251,132,0,149,242,224,38,5,36,29,160,38,238,193,
-6,226,47,1,2,75,52,34,203,45,224,35,17,2,51,34,32,224,35,24,
-2,50,34,32,235,117,0,238,121,2,239,181,0,196,209,66,243,218,204,65,
-69,122,203,32,74,64,20,155,113,196,134,132,219,234,131,4,234,139,6,64,
-81,194,135,231,185,7,2,58,54,51,199,78,130,165,199,251,32,24,196,224,
-160,24,165,142,32,24,196,229,128,24,197,48,32,24,132,223,224,24,0,235,
-68,0,67,200,191,176,189,203,157,183,253,204,13,32,191,32,220,130,30,226,
-74,4,192,32,96,31,225,197,3,96,230,76,82,254,46,4,2,51,49,32,
-100,69,93,149,64,94,128,16,126,43,96,9,32,50,129,101,2,79,32,58,
-96,37,123,130,32,10,193,82,96,133,224,1,3,65,84,245,96,22,48,34,
-96,145,32,70,204,34,245,115,5,248,63,10,245,156,9,245,121,12,224,11,
-2,192,8,216,142,2,58,54,50,241,147,0,108,168,65,30,171,68,124,51,
-243,253,0,32,41,129,215,114,12,239,219,2,224,146,5,192,233,248,136,4,
-2,39,32,85,2,32,95,56,170,103,249,2,7,46,176,51,104,2,52,49,
-56,64,110,140,43,239,118,21,99,190,128,53,2,54,50,52,224,53,5,249,
-185,7,128,38,2,51,49,49,224,38,4,225,16,6,143,101,156,176,65,135,
-168,120,113,100,177,183,239,84,5,161,57,237,85,2,251,244,7,242,111,2,
-110,58,238,57,3,64,58,241,162,1,161,50,225,152,3,32,31,166,1,2,
-51,49,48,34,89,2,85,32,90,224,176,0,146,133,2,50,54,50,225,192,
-1,130,190,110,49,133,176,115,236,2,50,50,32,96,29,130,169,2,85,32,
-67,239,64,3,157,34,253,96,19,2,32,61,32,254,147,3,2,54,50,49,
-192,186,169,50,2,49,50,50,80,32,68,174,96,27,64,127,2,52,53,55,
-71,133,2,50,48,32,96,55,2,56,32,95,128,27,32,53,207,13,67,99,
-2,95,52,56,32,132,217,58,2,95,52,54,98,248,160,160,2,52,54,54,
-224,67,1,128,6,173,160,224,43,14,65,166,2,52,54,56,104,6,64,7,
-32,4,2,55,32,79,39,122,231,202,0,128,111,32,6,128,24,254,245,2,
-224,96,2,96,29,48,231,95,2,64,176,196,251,34,151,212,236,32,59,33,
-143,201,148,65,107,225,254,13,250,47,0,213,35,64,45,131,60,245,16,6,
-49,217,160,101,2,53,32,58,2,54,49,54,96,13,2,114,110,102,99,115,
-32,16,196,254,100,80,234,76,4,224,4,8,225,221,0,225,206,12,2,84,
-109,111,2,100,117,108,2,101,32,34,242,119,2,226,15,8,183,2,242,22,
-8,224,244,0,174,87,160,214,224,25,5,227,22,0,66,228,96,233,32,10,
-241,112,5,228,52,2,80,107,65,47,246,176,2,248,188,4,143,69,32,106,
-97,158,239,90,4,160,20,208,100,64,67,255,59,4,2,49,50,32,64,116,
-82,59,193,146,160,99,160,6,100,192,228,40,1,33,124,98,219,254,165,8,
-243,236,10,252,13,5,159,153,160,122,224,130,0,227,230,2,64,88,96,138,
-44,164,65,40,166,135,32,24,162,93,227,68,2,36,167,71,173,131,233,225,
-200,17,225,199,5,227,212,38,2,40,46,46,2,46,41,32,2,119,104,101,
-2,114,101,92,2,49,48,38,163,224,2,54,48,56,198,131,131,179,96,138,
-2,58,54,48,242,138,1,163,216,91,128,32,23,130,202,99,50,122,33,36,
-111,49,146,166,22,164,248,238,92,2,2,67,32,60,39,135,253,51,1,233,
-235,6,231,186,2,82,35,130,137,224,41,12,214,53,96,41,224,43,3,133,
-171,2,53,48,56,96,164,68,63,67,204,162,152,32,176,131,101,2,85,32,
-83,224,146,9,224,18,6,64,249,238,96,0,128,18,65,171,247,203,1,160,
-19,66,49,2,85,32,66,132,130,96,109,225,101,1,2,100,101,102,2,97,
-117,108,2,116,34,32,228,88,0,32,85,64,7,84,18,96,7,33,244,224,
-50,5,2,44,32,34,162,59,69,187,2,53,57,52,227,83,0,96,100,2,
-53,48,57,164,222,224,108,8,2,105,110,115,2,116,97,110,2,99,101,34,
-128,63,224,58,1,64,56,154,199,97,206,226,222,4,133,56,229,69,4,224,
-93,13,2,99,108,97,2,115,115,34,192,90,146,204,2,53,57,54,160,7,
-253,142,0,225,48,5,157,214,225,47,4,66,96,38,130,203,189,100,68,224,
-131,14,122,19,226,194,17,2,105,110,102,2,105,120,34,189,179,67,223,228,
-168,5,32,104,97,246,224,23,6,67,145,214,216,224,24,0,255,158,1,165,
-251,246,243,5,225,177,35,134,96,193,120,225,106,12,224,243,19,225,119,8,
-2,102,111,114,2,101,105,103,2,110,32,105,2,109,112,111,2,114,116,32,
-2,99,99,97,2,108,108,34,166,203,2,57,57,32,32,45,125,164,224,184,
-5,41,201,32,216,247,157,0,230,245,3,224,89,1,2,58,58,34,166,250,
-226,42,0,2,85,32,85,234,145,3,228,246,4,135,89,233,141,2,233,239,
-1,192,26,226,88,44,128,216,193,199,237,92,1,2,53,57,56,64,179,2,
-53,57,57,128,186,72,196,224,58,6,2,123,45,35,2,32,83,79,2,85,
-82,67,2,69,32,35,2,45,125,34,160,238,72,85,97,20,224,44,5,2,
-113,117,97,2,108,105,102,2,105,101,100,239,182,0,161,170,225,244,0,97,
-79,226,20,5,65,88,233,24,17,2,97,115,32,161,138,2,50,57,53,224,
-125,6,233,102,0,232,144,1,32,99,122,73,224,65,2,2,104,105,100,2,
-105,110,103,160,145,228,32,2,104,224,124,177,226,115,3,72,177,226,190,2,
-105,220,170,171,224,0,1,228,198,6,116,108,224,18,5,64,245,227,149,6,
-64,189,224,177,2,233,75,0,225,181,16,2,116,121,112,196,104,226,92,22,
-2,52,56,54,96,9,224,94,18,227,91,7,224,231,10,195,86,226,195,27,
-102,1,2,56,56,32,160,154,192,82,86,135,232,161,0,229,217,7,225,18,
-9,66,111,225,18,47,133,24,224,120,10,224,166,0,228,26,14,224,108,32,
-2,110,101,119,224,111,28,2,54,48,52,149,135,2,48,53,32,161,30,246,
-11,0,236,143,1,227,161,21,2,100,97,116,2,97,34,32,224,104,2,224,
-78,0,240,45,7,224,211,53,224,103,8,224,208,10,229,138,21,2,32,124,
-34,227,27,4,197,138,224,254,1,168,6,215,153,46,140,132,89,72,69,231,
-195,15,2,114,105,118,227,164,0,227,163,43,2,53,57,51,224,124,0,32,
-123,139,201,229,104,1,229,71,4,97,94,225,70,22,34,214,165,26,135,134,
-163,27,2,80,32,66,160,144,192,254,110,25,86,233,2,48,51,32,224,177,
-5,96,33,192,130,165,190,225,169,12,227,66,2,227,117,11,128,99,224,248,
-9,224,236,0,177,80,192,100,237,150,4,2,49,50,51,237,151,1,192,18,
-246,234,1,64,180,129,40,162,170,163,60,237,220,6,81,128,160,68,163,92,
-32,58,139,248,72,22,194,237,81,238,129,40,237,42,1,229,161,3,224,28,
-0,225,223,4,2,54,48,48,193,45,231,217,4,224,208,2,225,31,10,43,
-92,2,41,34,32,230,100,2,32,145,216,63,193,162,226,48,13,32,40,140,
-15,2,65,32,58,102,249,64,51,56,67,193,2,172,63,210,197,72,245,184,
-249,168,234,38,193,135,56,32,62,222,39,226,228,16,97,112,224,123,0,229,
-137,29,229,198,22,225,42,4,224,66,0,246,42,1,224,39,12,226,47,0,
-106,72,97,243,128,98,98,171,204,217,73,185,198,108,160,61,138,118,32,54,
-227,207,12,224,156,3,98,26,32,80,228,86,0,225,173,1,2,61,62,34,
-209,65,99,81,65,114,67,178,32,13,177,79,2,53,57,50,161,104,32,19,
-130,149,32,91,159,65,182,247,255,61,3,221,120,253,171,0,211,218,173,19,
-96,17,147,118,242,251,1,127,200,246,104,3,224,61,3,137,137,243,221,5,
-173,9,231,254,0,253,231,2,184,16,32,5,101,225,160,81,237,142,2,107,
-126,237,153,0,237,90,5,170,53,128,102,118,33,228,168,3,234,29,0,64,
-74,160,208,196,192,160,96,211,72,156,106,2,52,55,51,254,149,2,238,15,
-2,151,199,239,108,10,225,26,6,241,236,3,234,124,14,165,52,157,39,128,
-14,137,110,100,19,128,127,217,2,224,181,47,224,166,6,96,163,224,160,10,
-224,133,13,224,125,2,226,0,0,226,21,0,225,210,3,248,199,2,41,167,
-195,28,243,241,1,192,160,248,129,5,226,203,1,2,91,93,34,193,190,185,
-192,81,23,107,78,101,168,2,49,56,54,194,51,173,130,32,234,131,25,231,
-32,0,96,24,163,42,106,219,123,163,64,231,67,29,35,117,230,205,0,157,
-206,249,160,4,160,255,145,210,224,191,3,226,225,1,225,255,1,97,89,240,
-28,6,145,129,251,236,0,224,26,4,191,13,234,225,6,115,183,233,207,6,
-116,107,233,208,7,137,209,32,192,96,234,175,179,238,100,22,2,95,97,34,
-244,251,2,238,17,0,234,26,7,231,146,1,192,243,129,126,224,193,7,109,
-38,192,26,240,71,5,98,63,97,68,224,31,0,137,160,230,239,16,224,26,
-8,2,49,50,54,231,128,3,248,125,2,226,163,4,243,94,3,200,94,226,
-180,7,225,1,1,2,45,62,34,128,81,196,159,96,86,231,58,3,231,12,
-11,73,181,232,13,6,225,211,13,97,47,225,44,13,213,65,225,40,6,64,
-163,97,188,224,211,1,192,12,93,31,134,28,225,25,6,245,232,1,230,115,
-4,160,202,240,135,5,233,126,12,233,39,2,232,190,10,236,197,32,94,4,
-232,239,13,225,176,2,231,160,4,231,59,2,225,40,16,105,231,226,85,13,
-99,171,226,8,15,224,232,18,226,8,10,237,107,10,250,223,4,229,168,5,
-240,54,1,140,50,226,117,3,102,158,2,66,32,79,194,220,240,19,9,2,
-102,34,32,224,241,2,192,163,224,48,17,2,116,104,101,2,110,34,32,250,
-45,3,224,43,17,2,101,108,115,173,55,226,158,3,225,35,17,227,229,4,
-232,175,4,228,202,22,98,191,226,245,12,241,45,0,224,25,8,243,160,0,
-225,202,9,98,58,225,202,25,225,188,0,192,171,228,169,1,74,17,210,53,
-236,226,4,2,111,34,32,234,212,24,2,46,100,111,248,50,1,52,74,2,
-48,32,35,66,119,245,251,4,32,22,242,253,3,32,14,134,254,226,182,12,
-98,22,226,181,12,165,231,160,233,224,231,3,224,15,1,106,26,162,185,227,
-113,12,128,145,225,220,4,225,7,3,160,7,224,228,6,2,108,101,116,237,
-231,0,224,226,16,230,255,0,245,135,15,255,160,2,228,97,1,227,103,0,
-107,158,228,113,4,245,113,14,2,97,115,101,236,69,0,224,25,4,2,111,
-102,34,228,118,0,224,165,15,131,249,226,169,4,170,6,225,136,8,174,38,
-231,66,6,146,56,225,151,4,65,78,58,182,231,56,0,187,34,199,76,229,
-143,4,251,127,14,81,151,243,158,12,230,102,0,230,99,7,32,51,2,53,
-52,32,226,13,1,2,53,56,57,129,63,128,9,36,140,244,231,0,248,45,
-3,233,48,4,241,231,4,232,172,1,238,9,1,34,171,218,124,225,180,2,
-105,104,192,63,128,3,193,61,138,33,233,27,0,193,17,129,70,76,49,72,
-45,73,198,246,186,14,2,115,116,36,128,239,103,85,244,63,0,206,126,234,
-56,0,225,106,0,160,33,233,134,11,234,137,13,197,126,131,40,251,35,0,
-99,19,233,155,2,65,207,124,130,96,9,129,165,90,123,128,9,128,17,44,
-245,143,80,95,162,142,127,79,97,32,22,142,213,90,254,108,55,33,54,32,
-20,142,193,155,21,129,113,43,45,2,58,53,56,221,37,80,145,162,172,220,
-104,175,216,193,150,230,58,6,251,107,6,69,218,127,69,238,121,10,2,53,
-48,49,230,6,8,35,12,226,128,0,64,204,73,170,250,4,11,65,96,224,
-18,6,99,170,250,23,11,229,154,9,98,66,2,52,32,35,73,159,161,67,
-174,181,2,35,57,52,131,19,2,53,49,52,66,176,104,193,161,124,137,84,
-224,98,6,231,136,0,229,18,5,160,45,64,104,247,229,10,224,22,14,224,
-209,7,67,236,227,233,31,160,80,160,75,99,227,128,226,64,141,128,28,2,
-53,49,56,67,136,229,245,0,224,36,2,105,43,128,36,182,2,225,56,9,
-201,202,128,49,65,128,224,12,4,192,62,250,201,3,224,30,8,235,148,2,
-33,219,191,70,253,78,1,128,124,32,6,98,183,92,213,128,17,32,43,144,
-53,2,102,115,104,2,111,119,32,32,14,175,251,96,58,2,53,50,53,90,
-83,2,53,51,57,100,230,97,211,32,25,2,53,32,95,128,141,192,73,64,
-11,32,58,176,40,35,153,64,52,33,129,32,52,138,44,2,53,54,57,64,
-39,64,64,2,95,53,55,96,143,96,11,70,123,192,10,224,33,2,2,56,
-50,32,67,93,224,28,0,33,241,32,94,223,60,141,66,255,230,0,32,107,
-2,50,48,49,229,68,2,2,73,110,116,2,101,103,101,2,114,58,32,2,
-100,105,118,2,105,115,105,2,111,110,32,2,98,121,32,2,48,34,32,164,
-35,242,247,0,136,177,64,79,2,85,32,80,32,241,2,55,55,32,32,4,
-64,181,223,30,224,17,7,196,81,245,237,5,101,159,240,18,5,240,180,2,
-128,16,191,178,206,247,144,201,238,243,1,33,20,2,50,32,67,238,164,3,
-208,129,227,247,4,32,38,161,66,168,28,207,9,143,110,2,53,55,56,69,
-196,100,200,131,102,234,222,5,138,113,116,67,143,217,128,86,79,197,223,52,
-68,254,254,66,3,2,56,48,32,175,47,97,151,249,102,4,33,146,133,16,
-225,129,8,2,105,110,105,2,116,58,32,175,134,129,96,193,65,244,119,5,
-178,207,224,88,0,32,82,133,76,129,40,64,153,2,95,52,48,103,100,65,
-134,32,30,133,86,227,187,2,32,60,37,73,64,63,97,50,98,15,128,107,
-100,122,96,55,97,89,34,181,2,49,56,51,64,39,192,197,98,86,64,31,
-146,202,174,110,146,212,210,21,238,130,4,85,74,67,190,37,79,193,38,241,
-17,5,241,144,1,112,16,235,182,3,194,9,160,98,64,70,32,148,35,10,
-2,49,48,57,255,225,2,166,148,32,28,69,200,224,27,0,129,161,55,177,
-160,195,32,31,2,52,49,32,160,12,32,6,205,81,2,53,52,48,97,170,
-2,51,54,54,134,225,33,8,32,227,133,235,160,201,202,106,32,7,242,4,
-3,235,163,3,139,202,65,92,68,98,35,190,97,187,130,137,33,2,33,85,
-99,254,128,6,194,71,96,26,97,114,32,21,64,59,39,243,64,59,169,29,
-136,183,96,49,64,28,53,207,226,223,2,66,107,64,46,96,26,135,19,244,
-81,2,227,60,0,33,152,160,170,65,85,64,5,160,33,97,112,98,177,69,
-113,32,66,242,53,4,227,135,0,236,83,2,65,131,185,250,206,249,2,53,
-55,53,224,95,3,160,163,128,220,160,12,99,170,132,10,32,8,99,22,166,
-188,224,197,15,64,39,64,48,192,243,225,16,3,104,170,228,101,1,96,232,
-131,135,107,22,79,22,146,186,226,187,0,242,187,2,98,238,135,220,131,236,
-235,241,0,224,80,2,224,13,4,34,8,198,24,224,20,0,42,152,168,22,
-32,29,134,10,129,36,133,133,32,24,32,23,217,172,36,89,32,13,133,230,
-200,167,245,156,3,130,250,244,21,0,32,240,101,71,2,53,53,50,132,63,
-96,14,32,65,197,201,73,1,2,53,55,49,208,174,64,26,132,81,2,95,
-51,51,67,25,71,98,119,213,32,24,132,23,234,213,1,33,21,32,29,128,
-145,164,20,224,27,6,96,187,74,7,120,62,69,88,129,127,162,150,74,185,
-2,53,53,48,194,45,159,117,33,165,32,24,134,241,194,247,32,6,135,60,
-192,13,65,191,100,59,70,220,225,78,8,187,166,32,29,225,108,5,32,43,
-224,29,4,129,108,230,100,8,32,25,193,110,2,75,32,95,225,203,3,32,
-25,129,122,2,83,32,66,165,67,166,255,230,168,10,229,103,1,231,48,11,
-224,48,20,103,24,183,165,247,42,0,198,214,245,254,8,230,255,0,234,157,
-4,96,97,225,250,1,100,13,65,87,132,158,246,11,2,160,62,248,20,0,
-246,133,3,167,58,246,237,9,247,30,0,224,117,21,224,115,5,224,113,5,
-224,51,17,121,57,224,0,4,33,120,194,177,66,212,2,53,53,32,32,84,
-235,183,1,2,53,53,54,163,181,98,197,69,154,67,185,99,159,32,28,33,
-105,2,53,54,49,248,83,3,130,236,224,157,5,32,99,162,250,2,53,53,
-56,136,10,229,236,0,2,95,54,52,160,10,32,5,2,49,32,35,134,191,
-230,212,5,224,35,13,33,247,32,2,45,138,102,85,96,171,192,142,128,63,
-224,99,0,160,48,131,205,69,102,214,174,237,37,0,249,50,6,224,62,5,
-224,142,7,205,212,168,152,59,145,231,170,4,225,24,4,210,30,226,3,0,
-128,76,70,223,128,30,161,242,224,70,0,2,50,56,55,224,71,0,65,176,
-74,79,160,14,224,42,7,224,113,2,224,41,6,33,112,132,82,109,241,2,
-52,32,90,162,30,32,23,205,186,168,6,232,80,0,250,66,1,65,5,2,
-82,32,95,224,22,2,225,38,0,2,58,53,53,237,226,1,250,170,3,238,
-164,4,224,20,5,224,17,8,224,14,5,224,11,2,192,8,130,254,96,109,
-205,199,96,195,224,197,1,33,94,224,197,4,64,164,239,224,2,241,10,0,
-2,39,32,85,239,246,2,227,24,2,227,112,1,239,40,2,64,88,132,184,
-235,120,10,2,102,111,108,2,100,108,49,184,42,80,175,64,45,132,204,224,
-134,0,2,83,32,80,228,53,2,96,79,164,212,228,91,0,80,118,136,125,
-235,14,6,233,120,1,234,77,1,212,120,136,31,128,169,233,89,5,233,29,
-0,134,28,130,29,34,163,233,98,4,233,66,1,210,148,226,220,3,233,109,
-4,128,180,253,0,0,128,82,71,48,160,173,137,120,69,238,64,6,106,181,
-64,194,96,45,200,71,134,120,32,24,170,237,69,160,242,152,0,241,148,5,
-255,247,0,230,70,1,231,227,7,96,144,203,24,252,255,0,219,100,229,194,
-1,253,6,2,251,26,0,234,221,2,165,11,192,86,196,227,169,135,134,10,
-128,8,39,31,105,198,168,243,103,23,231,240,0,224,63,2,96,171,224,25,
-4,149,243,64,14,128,27,230,64,3,224,173,13,224,123,7,106,148,98,142,
-224,126,21,224,100,3,224,129,8,224,155,5,225,89,4,192,245,97,100,2,
-54,32,102,226,221,0,2,92,51,52,2,38,46,47,2,108,105,98,2,47,
-68,97,2,116,97,47,174,101,2,46,104,115,64,24,2,44,49,50,2,55,
-58,49,98,250,2,58,53,52,168,115,2,53,52,55,165,224,32,19,131,166,
-246,3,0,196,231,176,9,156,47,97,254,226,245,1,229,211,7,226,161,0,
-234,191,3,227,215,4,195,254,192,7,35,162,77,80,2,75,50,32,224,204,
-37,2,54,51,58,2,54,34,32,249,110,6,160,170,226,45,0,227,114,3,
-174,117,227,98,2,32,251,206,77,228,94,0,202,89,80,171,230,249,0,245,
-148,1,224,80,10,235,216,2,224,80,2,172,234,107,126,33,90,196,233,131,
-63,100,57,65,121,238,20,1,142,74,227,240,11,228,42,14,160,48,235,123,
-5,224,63,11,103,54,228,46,6,224,83,12,228,96,21,231,58,4,32,209,
-203,136,208,158,233,176,21,168,194,97,19,101,116,75,103,66,128,32,96,110,
-8,116,105,34,8,240,97,10,174,41,32,51,177,189,2,53,52,50,226,180,
-1,132,229,228,41,6,193,77,229,162,6,161,208,229,164,8,226,42,15,135,
-167,32,109,161,213,230,132,1,99,186,107,164,202,46,226,130,46,224,91,0,
-226,130,10,224,95,3,226,130,32,224,80,1,161,110,104,75,33,40,214,25,
-168,31,226,109,37,164,133,226,15,5,224,12,1,32,94,134,38,33,177,32,
-11,133,232,33,207,243,99,0,53,108,236,177,0,143,175,2,51,54,32,64,
-5,113,56,143,16,83,93,128,34,105,4,96,10,2,58,53,51,246,141,2,
-2,50,52,48,224,65,0,32,25,132,175,208,2,32,16,227,101,1,160,42,
-192,27,64,28,162,176,171,202,226,45,3,96,19,241,93,4,96,100,148,62,
-64,55,97,240,167,195,100,202,176,108,229,231,0,96,96,130,209,143,198,174,
-114,162,3,134,230,47,74,150,166,227,250,1,239,253,4,142,76,129,129,194,
-177,230,124,0,2,89,32,67,224,82,2,229,148,0,229,94,3,96,169,197,
-86,208,65,144,132,232,134,3,241,77,0,111,220,159,40,224,143,2,236,123,
-8,182,68,224,146,3,121,9,233,87,4,2,108,116,87,2,46,99,109,2,
-112,34,32,128,28,177,219,128,6,208,18,160,6,33,41,131,199,224,208,1,
-237,201,3,152,178,33,88,176,59,160,34,239,57,2,74,78,32,31,111,147,
-2,53,51,50,132,34,91,70,32,89,132,13,97,4,32,13,130,242,121,55,
-32,13,203,75,74,130,192,1,227,40,0,32,31,194,181,66,135,2,50,55,
-32,32,92,54,58,32,24,66,193,226,129,7,64,31,32,25,194,129,238,93,
-0,225,62,22,193,14,64,13,2,49,54,48,225,81,1,32,75,175,138,32,
-126,201,79,39,26,153,196,130,131,75,228,99,53,130,125,55,239,96,169,133,
-27,64,6,105,166,49,104,99,113,2,50,52,32,64,22,162,148,96,24,55,
-47,100,36,79,163,66,50,68,59,97,112,33,53,196,73,173,154,131,245,32,
-50,97,86,64,75,96,92,230,184,6,96,38,65,21,104,10,228,16,1,230,
-43,2,45,36,2,55,32,35,96,177,192,85,224,49,13,64,38,168,241,32,
-112,229,213,0,226,173,2,194,6,234,54,0,229,98,2,229,127,1,98,30,
-165,1,224,236,30,229,192,0,131,31,201,232,198,73,128,86,231,219,2,224,
-86,29,217,140,224,90,3,128,204,160,196,192,195,224,92,5,82,114,33,27,
-224,91,15,224,125,37,227,165,6,2,78,117,109,2,101,114,105,2,99,46,
-115,57,72,41,79,2,65,116,66,62,186,2,58,32,110,2,101,103,97,2,
-116,105,118,2,101,32,97,2,114,103,117,2,109,101,110,191,90,240,241,2,
-64,114,237,231,2,224,212,3,64,5,224,177,22,97,186,32,22,80,82,224,
-21,3,224,74,50,70,163,224,22,2,224,235,33,2,117,110,115,2,117,112,
-112,2,111,114,116,2,101,100,32,2,98,97,115,223,184,128,140,117,187,226,
-116,6,194,106,35,64,2,52,51,57,233,31,4,164,144,224,49,6,194,57,
-208,158,160,11,226,69,8,224,70,4,153,110,175,83,224,61,0,240,203,0,
-225,63,11,70,39,217,64,241,2,12,225,85,3,2,53,50,49,98,214,39,
-245,128,65,238,41,0,225,81,16,35,133,133,63,194,189,98,117,160,33,96,
-82,96,48,96,203,32,43,240,169,0,2,50,32,75,2,52,32,65,160,21,
-133,83,225,32,6,237,42,0,227,96,59,193,126,237,150,0,204,173,185,123,
-241,164,1,125,174,240,185,2,156,160,117,240,161,7,128,161,226,130,22,224,
-64,8,233,33,2,224,86,9,244,25,5,224,98,30,160,66,218,4,2,58,
-53,49,134,130,100,50,124,247,255,131,2,174,99,151,170,158,189,33,73,224,
-249,5,183,206,249,237,4,99,209,64,38,69,221,127,64,192,22,38,102,2,
-53,32,102,227,73,0,2,32,37,32,163,37,224,45,5,180,40,70,98,126,
-94,192,15,103,158,96,15,32,184,199,33,121,175,225,50,5,97,12,224,234,
-4,32,47,201,194,251,144,2,71,167,97,206,202,243,66,35,96,231,32,193,
-226,18,0,2,51,56,51,96,187,103,161,32,27,221,12,40,221,34,44,160,
-16,32,96,167,39,201,142,201,109,2,49,51,50,65,40,96,5,224,28,15,
-185,93,224,18,3,134,210,32,86,135,103,242,111,8,2,108,97,115,252,102,
-1,138,26,33,181,64,209,252,253,0,32,60,135,94,2,85,32,67,104,60,
-2,95,52,54,97,66,32,72,125,36,32,109,2,52,54,55,224,84,2,2,
-45,62,34,200,53,72,246,97,47,32,85,144,66,139,183,2,53,49,49,128,
-238,227,194,0,157,130,247,46,2,100,35,254,5,1,246,212,3,103,80,234,
-10,0,235,21,2,224,160,0,72,134,64,5,96,153,132,206,43,192,132,81,
-239,225,7,128,152,2,52,54,51,162,235,150,89,225,57,0,132,56,147,83,
-226,158,3,96,100,154,101,64,9,160,17,225,10,6,2,32,124,34,164,197,
-36,63,32,73,96,7,161,48,56,202,78,49,160,157,64,118,33,29,244,37,
-0,160,174,32,128,228,163,1,97,156,253,254,5,97,82,130,10,192,245,224,
-127,3,2,119,104,101,2,114,101,34,232,214,0,2,53,48,48,122,172,128,
-173,104,215,128,118,209,176,32,111,65,160,140,182,2,52,57,55,250,60,0,
-64,99,98,3,99,227,132,187,2,60,32,64,2,35,51,32,66,115,224,18,
-4,156,158,164,231,128,18,66,219,2,85,32,66,170,163,90,178,41,128,253,
-251,7,130,87,207,219,192,12,224,25,1,224,21,0,129,26,225,67,9,193,
-51,225,3,6,2,46,46,34,224,30,4,104,245,224,137,7,224,117,81,224,
-110,14,224,97,21,224,189,20,225,112,7,152,138,225,112,4,65,227,64,117,
-224,115,2,224,102,30,224,173,20,34,96,226,240,0,225,15,5,101,119,227,
-79,0,226,236,39,64,116,32,15,64,113,192,228,34,114,239,46,3,224,140,
-1,224,15,0,96,99,195,189,224,103,12,189,19,96,76,253,152,0,161,4,
-64,5,192,49,2,57,49,32,192,153,192,17,32,133,168,57,64,117,99,15,
-2,80,32,67,225,7,13,69,8,225,78,6,2,60,45,34,226,28,5,128,
-6,64,60,2,57,56,32,224,44,6,2,108,101,116,228,37,0,227,161,23,
-32,143,174,157,32,143,135,15,64,218,64,133,64,53,224,161,23,32,218,71,
-113,226,185,5,224,53,14,2,52,56,52,224,215,8,2,58,58,34,224,58,
-0,65,89,32,142,251,215,1,2,80,32,35,96,78,41,196,32,23,219,139,
-32,98,32,13,222,123,64,102,81,234,2,95,52,53,115,31,73,213,102,152,
-2,58,52,57,228,120,6,110,76,32,22,132,121,137,153,91,16,255,47,0,
-234,150,5,78,149,2,61,61,32,252,36,0,202,22,163,218,200,90,224,46,
-15,32,232,64,9,107,239,96,5,32,121,238,242,0,46,45,101,6,2,52,
-57,54,249,185,1,2,52,54,50,195,120,70,124,32,38,97,47,64,215,128,
-85,32,46,249,186,2,235,147,5,235,124,0,64,58,64,242,75,187,241,205,
-0,243,78,2,217,162,253,219,8,229,115,8,224,25,1,224,27,5,137,71,
-228,30,4,73,111,40,167,40,145,232,14,5,2,115,101,112,2,49,32,65,
-2,98,111,118,198,51,224,37,17,2,66,101,115,2,105,100,101,228,227,1,
-231,157,4,229,249,7,61,206,201,226,237,86,2,238,198,0,236,94,5,66,
-33,252,138,2,96,189,231,237,3,65,185,32,34,126,44,161,47,64,51,65,
-119,167,197,247,117,2,225,56,4,224,97,0,225,31,4,210,52,203,155,171,
-172,255,40,1,230,237,5,224,195,5,224,79,0,74,43,2,52,51,50,253,
-66,3,224,182,1,178,25,253,221,6,224,72,19,237,45,2,224,72,5,97,
-2,34,107,227,184,0,254,194,4,146,200,192,92,236,121,12,230,51,1,128,
-22,139,165,129,119,129,78,225,105,39,224,197,4,227,226,1,64,165,234,229,
-0,2,64,95,56,105,241,99,36,195,18,206,185,237,25,10,98,16,225,146,
-3,225,195,21,192,139,225,179,0,98,82,227,227,0,224,30,5,225,111,0,
-41,67,226,99,5,224,66,18,205,205,226,191,4,160,135,32,232,64,220,129,
-67,2,57,50,32,196,124,33,7,36,188,128,22,100,22,252,137,0,2,52,
-56,57,148,216,205,67,161,54,35,107,129,105,226,209,12,132,98,65,68,133,
-116,233,141,8,64,29,227,253,49,2,111,110,101,2,76,105,110,2,101,114,
-32,228,1,24,224,41,0,228,5,6,227,252,20,84,217,161,30,99,157,227,
-133,9,224,62,6,64,248,140,116,131,89,224,60,0,224,20,0,101,112,192,
-81,224,61,6,65,89,77,139,228,123,0,64,137,116,237,71,70,96,53,110,
-178,230,33,0,255,173,1,225,244,6,164,143,224,63,1,32,61,166,207,232,
-20,15,64,16,65,226,232,154,7,32,26,233,2,3,103,98,232,118,2,231,
-155,9,224,72,38,233,214,14,32,176,182,61,90,207,97,54,105,64,66,96,
-2,51,51,48,99,230,80,208,162,124,166,218,32,54,64,122,233,54,0,236,
-229,16,2,102,111,114,2,97,108,108,236,233,5,192,151,187,86,224,183,7,
-32,90,204,81,233,208,1,2,54,57,32,235,27,16,232,141,21,2,52,56,
-54,160,85,167,179,72,158,32,13,135,174,2,80,32,75,98,123,129,36,224,
-9,0,32,31,135,159,130,38,32,90,96,19,238,237,3,2,95,51,52,80,
-62,2,52,56,50,32,10,2,55,52,32,128,99,131,125,2,75,32,89,176,
-8,181,24,196,80,133,115,65,83,154,157,132,227,174,169,51,167,111,160,2,
-50,49,57,65,36,2,53,49,32,32,4,202,109,32,31,190,111,97,5,239,
-204,4,97,59,165,70,240,55,0,32,33,2,51,48,48,239,238,0,157,207,
-162,225,32,179,229,105,0,137,158,219,194,165,220,210,226,243,156,0,32,51,
-130,215,240,97,0,33,203,32,5,224,14,3,32,181,224,14,1,2,49,52,
-56,240,162,9,148,132,32,75,238,184,0,152,101,32,5,2,56,32,35,119,
-106,64,50,91,30,2,35,57,48,97,115,64,85,224,118,6,178,35,240,222,
-3,113,33,96,144,224,86,9,73,171,224,86,1,114,130,64,43,204,66,42,
-154,132,245,64,20,233,195,1,99,224,128,20,201,169,32,20,78,2,128,20,
-203,106,2,95,52,49,94,60,96,135,226,126,1,2,64,92,57,2,50,38,
-61,2,43,45,58,2,60,62,46,2,33,35,36,2,37,94,38,2,42,47,
-124,2,126,63,92,2,50,50,54,2,38,92,49,2,51,54,38,2,92,49,
-56,2,51,38,92,160,14,2,53,38,92,2,49,52,54,224,14,0,2,52,
-38,92,224,14,8,32,4,224,59,2,2,50,56,38,66,222,32,134,203,98,
-225,193,0,225,211,0,221,40,222,48,167,128,64,27,103,68,178,209,155,213,
-110,219,162,28,36,75,228,15,27,97,173,228,14,1,67,216,101,52,43,135,
-239,186,1,229,46,0,218,6,2,52,53,56,133,240,224,35,1,32,19,58,
-13,96,84,64,13,128,115,96,112,103,6,133,104,32,96,130,51,237,166,13,
-83,57,237,166,5,69,151,164,78,68,59,161,171,250,148,1,32,22,253,132,
-0,2,52,51,51,105,89,91,25,99,235,224,45,3,139,221,68,225,236,106,
-93,65,6,236,106,3,64,127,254,253,0,34,130,248,205,1,72,151,33,226,
-64,35,130,141,225,178,5,70,49,225,178,1,65,191,229,194,7,72,63,108,
-197,32,249,32,13,198,246,225,193,13,101,173,225,193,21,187,83,161,193,157,
-150,192,7,64,110,211,47,160,201,133,255,224,201,6,129,229,253,243,1,248,
-106,2,225,60,1,233,233,0,233,131,14,141,132,128,168,249,174,11,128,71,
-129,101,193,103,32,194,64,121,2,65,32,58,96,56,97,23,2,53,52,32,
-32,4,98,45,2,53,55,32,160,19,2,53,32,35,120,113,92,227,32,31,
-188,4,87,214,105,142,224,20,7,136,130,32,64,198,112,32,10,252,218,0,
-66,204,37,231,78,27,142,249,64,66,94,1,64,122,134,107,94,1,96,23,
-166,141,64,13,197,190,206,7,194,139,200,165,121,135,247,49,3,139,72,108,
-30,157,201,235,200,0,33,252,159,72,106,133,171,87,89,175,37,96,101,174,
-36,224,236,153,1,32,123,227,231,2,64,87,234,62,10,192,138,41,28,103,
-33,160,89,226,84,0,228,20,5,224,47,4,70,248,224,47,0,32,108,230,
-39,0,227,68,0,238,236,28,224,39,24,167,12,236,63,0,237,213,15,170,
-19,236,28,14,224,7,5,224,190,7,238,208,13,227,252,2,192,13,253,94,
-0,167,124,134,218,2,52,52,54,243,51,1,224,89,4,236,132,3,175,20,
-127,169,96,37,231,195,1,224,15,0,227,101,1,239,127,20,192,171,239,120,
-3,239,117,5,224,88,7,224,104,11,225,119,1,239,77,14,238,121,18,219,
-214,238,121,1,201,240,64,224,239,67,2,224,118,7,224,50,7,133,209,219,
-179,197,174,227,37,3,229,127,14,224,225,9,128,88,141,174,204,202,239,59,
-39,32,189,207,64,224,188,10,132,134,2,58,52,52,132,128,167,192,234,25,
-1,165,3,225,85,15,253,11,0,238,217,13,96,137,135,26,238,184,13,236,
-251,3,73,249,176,99,39,66,65,110,172,114,32,157,169,91,68,11,103,17,
-65,146,147,2,97,69,110,187,122,193,2,64,73,32,74,56,102,18,98,195,
-32,43,250,186,0,131,199,242,182,0,225,67,11,230,22,1,225,210,1,228,
-80,3,225,67,3,240,68,0,227,201,1,225,222,12,163,74,225,1,0,97,
-190,144,191,97,5,195,91,227,232,26,224,67,5,97,222,243,220,6,228,2,
-3,64,252,165,237,243,225,0,243,222,19,241,202,0,224,210,2,243,217,86,
-2,97,98,111,2,118,101,78,2,101,115,116,239,220,25,224,42,1,243,227,
-58,225,178,13,243,227,10,225,238,1,224,241,2,224,24,12,226,9,4,225,
-54,15,176,19,229,251,24,243,209,49,224,151,7,243,221,8,242,41,8,242,
-235,5,66,25,32,70,196,197,164,198,97,36,228,198,0,233,12,29,160,152,
-224,139,2,243,145,5,99,4,224,150,0,244,51,18,244,255,24,174,123,225,
-45,8,244,59,1,225,182,19,229,103,2,210,4,142,207,35,62,244,21,2,
-227,67,29,244,26,0,254,48,8,224,23,1,226,24,11,225,240,2,244,38,
-15,192,167,169,120,33,44,43,105,225,216,1,229,97,27,96,127,225,78,0,
-240,211,0,142,176,133,64,72,2,73,117,107,57,128,67,225,72,2,193,35,
-210,230,64,255,2,50,53,32,32,163,193,58,213,80,65,217,255,66,4,230,
-74,30,192,48,224,28,4,253,11,1,224,224,3,96,21,232,69,5,230,136,
-19,163,223,118,2,225,59,6,225,60,26,240,151,0,137,33,107,50,235,109,
-6,211,150,97,11,70,136,33,5,174,207,2,52,52,48,43,123,68,91,250,
-148,1,98,128,90,148,64,28,96,37,70,221,2,58,52,51,206,50,32,148,
-66,119,246,129,1,34,124,228,57,0,76,178,226,230,0,135,198,128,39,201,
-58,226,108,25,227,87,11,229,228,17,253,221,6,157,187,227,248,2,111,146,
-229,178,5,2,98,101,115,2,116,32,103,220,70,229,139,4,249,112,21,160,
-198,99,93,97,85,105,70,231,152,5,229,10,5,227,20,1,248,203,6,250,
-223,14,228,60,10,233,90,18,229,109,1,224,125,8,97,35,65,163,96,125,
-228,179,0,224,43,3,228,132,0,226,81,5,193,188,193,190,247,184,1,248,
-87,32,248,134,3,152,41,224,46,12,196,234,229,172,1,225,202,48,2,49,
-34,32,225,203,9,226,135,12,225,210,4,227,208,0,133,13,64,61,106,130,
-225,215,2,229,185,0,72,232,225,185,5,224,220,20,212,120,251,39,26,164,
-163,250,222,23,236,223,0,64,56,134,150,228,45,0,250,202,3,230,111,19,
-226,143,15,229,143,4,32,13,47,97,152,15,32,6,64,4,35,254,138,236,
-148,5,33,31,32,17,202,237,2,51,53,32,32,13,244,39,2,151,255,64,
-34,137,231,103,181,32,13,198,182,96,36,96,245,100,103,71,210,128,37,2,
-49,32,58,99,56,255,34,10,64,28,202,51,111,179,33,168,64,138,32,24,
-243,5,0,241,19,1,225,151,2,32,42,108,167,134,82,224,247,2,182,120,
-98,209,51,84,166,91,65,250,129,254,96,228,64,102,208,151,199,89,192,42,
-101,89,202,243,230,73,0,232,183,2,233,99,10,230,73,44,254,232,2,224,
-35,8,192,86,230,73,0,96,237,252,234,19,249,249,15,116,189,96,111,160,
-9,227,108,7,2,102,105,116,2,115,34,32,128,25,180,48,64,108,130,21,
-32,50,129,48,130,21,2,75,50,32,230,41,0,231,222,2,65,152,254,104,
-3,129,168,250,81,7,65,249,227,190,8,252,221,3,234,198,21,229,51,7,
-231,208,12,143,21,231,144,4,224,238,6,2,100,105,115,2,112,108,97,2,
-121,32,108,2,97,121,34,229,62,6,232,235,14,224,31,0,65,79,174,38,
-225,180,0,239,29,31,33,90,71,191,248,234,0,46,117,2,49,48,32,206,
-117,239,29,1,241,34,1,64,5,96,53,232,247,9,228,70,2,96,32,224,
-186,0,228,64,18,225,118,7,234,59,7,240,192,24,225,111,57,2,50,34,
-32,225,80,5,133,124,230,233,10,224,213,32,225,136,82,65,237,101,48,125,
-180,128,31,160,7,100,34,35,20,133,28,145,135,2,48,55,32,68,191,32,
-183,32,24,214,201,35,39,152,123,32,19,185,71,44,237,58,171,2,50,51,
-32,102,153,2,50,52,54,107,12,69,164,120,217,128,26,2,95,49,54,64,
-17,85,53,192,44,2,95,50,57,36,180,203,67,2,49,50,32,192,22,113,
-94,96,19,192,18,2,49,54,56,208,204,64,16,101,132,2,50,49,32,32,
-13,133,132,2,94,71,69,2,84,84,73,2,77,69,77,2,73,76,76,2,
-73,32,58,64,27,160,154,34,12,163,199,255,191,0,117,82,153,251,2,50,
-56,52,173,77,124,21,53,53,32,23,123,2,88,52,251,67,1,252,204,0,
-66,9,229,163,0,225,118,5,226,32,1,2,114,101,99,2,117,114,115,2,
-105,118,101,2,32,109,111,2,100,117,108,2,101,58,32,162,38,236,47,0,
-80,117,2,51,48,54,160,230,224,71,15,2,44,32,105,2,109,112,111,2,
-114,116,32,2,99,104,97,2,105,110,58,160,69,64,168,94,168,157,138,128,
-69,220,59,92,125,32,253,134,104,65,228,161,222,2,58,52,49,134,31,2,
-95,51,49,2,48,32,75,118,140,237,210,7,2,50,54,50,250,72,1,65,
-4,97,239,32,83,65,207,75,180,64,22,219,121,32,22,114,73,64,28,128,
-16,88,182,97,44,96,151,64,26,167,83,88,198,220,88,133,140,64,38,198,
-171,139,153,194,22,157,89,225,109,1,95,206,96,241,2,50,57,51,65,50,
-66,48,227,198,0,197,133,69,131,128,66,66,190,65,30,95,82,157,215,32,
-6,38,91,2,51,55,55,227,53,0,225,110,17,2,77,111,100,33,172,2,
-32,110,111,2,116,32,102,2,111,117,110,2,100,58,32,161,182,151,87,129,
-181,2,49,50,49,65,116,96,79,224,76,19,2,92,49,48,2,38,115,101,
-2,97,114,99,2,104,32,112,2,97,116,104,2,61,34,32,160,184,128,71,
-64,58,64,73,2,49,50,57,192,4,178,120,32,234,187,77,224,91,20,2,
-112,97,99,2,107,97,103,2,101,32,112,224,92,1,224,83,18,193,56,233,
-119,15,195,195,97,127,225,124,4,2,95,51,56,208,146,240,238,0,132,143,
-163,178,192,30,209,63,80,251,130,147,246,231,4,132,255,160,57,100,90,193,
-86,231,252,8,160,6,104,220,228,221,12,68,91,221,23,128,30,2,52,48,
-56,96,56,224,42,18,224,250,0,224,232,0,32,5,99,204,229,108,1,247,
-202,2,33,227,157,146,227,248,35,193,148,2,100,111,101,2,115,32,110,34,
-71,2,99,111,110,2,116,97,105,2,110,32,109,130,90,226,79,1,193,16,
-224,223,12,245,188,1,227,222,2,197,15,97,111,128,175,2,67,32,80,100,
-200,64,153,239,76,13,237,197,2,162,191,2,50,57,54,96,51,159,73,2,
-49,51,32,67,137,224,193,1,2,46,116,120,78,110,32,25,133,88,91,139,
-70,76,128,5,32,22,133,88,33,112,66,94,67,226,33,29,96,87,64,5,
-32,31,220,3,252,24,0,2,58,52,48,132,122,225,38,8,73,163,32,29,
-221,202,234,184,1,59,195,234,184,2,255,32,4,135,56,100,103,198,162,121,
-116,226,67,0,236,207,0,128,50,32,95,190,19,226,179,9,165,141,164,52,
-2,50,54,55,32,4,2,55,54,32,131,165,132,176,2,50,54,57,133,27,
-95,34,248,104,1,227,31,2,192,12,104,200,226,25,17,2,108,111,97,2,
-100,105,110,2,103,32,112,162,33,245,125,0,227,121,18,2,50,53,57,224,
-19,1,2,51,48,56,114,63,98,149,64,214,247,150,0,64,173,134,185,92,
-217,198,185,70,228,128,22,2,51,49,49,224,22,3,64,112,69,146,131,135,
-158,103,127,66,69,225,100,126,151,7,2,48,51,32,244,86,0,65,111,32,
-17,65,117,32,121,133,215,38,66,2,50,32,65,128,17,220,239,32,17,230,
-112,0,64,63,32,20,2,90,32,85,97,133,177,200,2,51,51,49,2,32,
-95,56,96,17,162,73,198,144,215,163,230,135,0,32,34,198,199,42,164,2,
-52,32,75,128,2,168,7,100,209,129,0,213,40,236,210,11,2,95,51,54,
-100,249,235,185,9,232,134,0,96,243,132,143,232,175,9,169,58,160,81,232,
-231,15,166,127,70,136,226,84,5,230,137,18,226,43,17,2,70,105,108,230,
-133,10,229,219,3,248,163,2,214,78,224,207,3,132,198,170,53,32,114,66,
-201,133,198,197,235,233,109,8,70,34,166,211,233,120,3,160,14,105,125,108,
-234,65,120,200,26,225,67,1,32,93,2,53,32,102,224,192,0,2,109,104,
-115,2,99,112,112,2,46,104,115,228,239,0,204,141,163,134,248,51,2,224,
-138,2,96,132,131,217,224,207,3,160,186,234,39,9,2,51,57,54,99,115,
-224,172,0,128,158,227,239,0,225,173,3,67,191,32,48,145,170,227,243,6,
-68,49,32,34,2,51,48,48,148,151,163,232,235,245,6,2,114,101,109,57,
-64,97,155,2,102,97,105,2,108,101,100,128,220,32,112,131,137,2,94,117,
-110,2,108,105,110,2,107,32,58,96,101,161,32,225,34,2,2,50,49,50,
-224,77,2,2,77,72,83,2,67,80,80,2,72,83,34,160,183,237,33,1,
-231,94,6,227,133,0,228,169,7,160,181,228,153,3,228,139,4,226,97,19,
-2,69,120,101,2,99,117,116,234,151,0,226,90,12,33,118,233,52,1,233,
-1,3,2,50,48,52,224,85,13,33,243,225,242,0,225,222,1,224,131,15,
-2,32,45,45,2,110,111,108,2,105,110,101,229,11,0,249,129,0,233,34,
-0,106,231,192,68,2,51,57,50,129,245,247,207,2,231,60,20,164,188,137,
-182,224,134,17,2,79,34,32,231,40,1,33,189,228,204,2,132,114,75,69,
-205,46,128,34,132,218,2,79,32,102,224,70,0,2,39,45,68,2,77,73,
-78,2,95,86,69,2,82,83,73,2,79,78,95,2,98,97,115,2,101,40,
-120,2,44,121,44,2,122,41,61,2,40,120,60,2,61,52,124,2,124,121,
-60,2,61,49,52,2,41,39,34,32,70,224,56,3,2,45,68,95,2,95,
-77,72,2,83,95,95,64,24,114,193,96,231,101,25,37,137,224,208,2,32,
-24,246,255,1,33,157,102,15,2,51,56,57,37,76,64,41,210,212,231,42,
-13,126,151,224,30,2,233,174,3,172,227,224,47,2,128,230,64,90,235,192,
-0,161,70,103,83,96,123,133,123,227,99,9,105,187,235,142,4,227,101,20,
-233,97,38,2,99,97,108,2,108,67,111,2,109,109,97,69,24,131,135,235,
-165,16,2,49,52,54,235,165,23,2,44,32,34,229,92,19,32,233,132,77,
-2,94,115,121,2,115,116,101,2,109,32,58,96,222,97,105,228,96,3,224,
-236,2,65,4,180,143,64,33,224,20,3,111,122,33,32,96,230,239,8,5,
-71,162,228,224,9,2,55,48,32,224,40,5,65,63,121,57,2,51,56,50,
-239,252,0,228,254,0,133,160,96,98,73,139,69,147,193,165,2,51,56,51,
-74,115,97,124,2,49,51,50,65,125,129,28,39,31,96,162,212,29,40,52,
-121,159,2,50,49,57,65,70,225,50,0,203,110,66,64,41,35,236,139,2,
-2,51,52,38,2,46,47,108,2,105,98,47,2,83,121,115,33,34,2,47,
-73,79,37,248,64,21,2,44,51,48,2,48,58,56,129,95,2,90,32,66,
-64,98,74,174,96,112,138,205,2,52,32,35,96,133,160,19,179,244,64,36,
-224,120,7,32,204,240,108,0,162,202,135,111,224,84,3,194,218,248,8,2,
-166,55,251,175,4,68,97,224,136,1,239,226,0,241,154,0,227,4,2,226,
-239,0,131,240,136,240,32,14,176,116,2,116,109,112,2,110,97,109,2,101,
-32,58,97,211,227,16,6,41,190,32,20,146,109,65,87,106,166,186,249,43,
-173,32,9,106,176,170,175,161,252,192,60,104,58,65,129,173,125,231,149,8,
-169,147,2,50,53,50,250,139,0,231,212,8,232,203,2,225,78,6,64,195,
-196,49,2,95,53,32,74,2,64,215,64,113,233,111,4,132,249,228,251,2,
-64,36,131,251,32,159,2,54,32,85,96,25,32,19,131,37,2,85,32,58,
-64,21,128,10,85,100,72,242,160,44,55,87,105,7,32,13,49,160,64,15,
-97,81,132,204,227,254,2,241,34,5,67,56,229,188,18,239,161,0,64,106,
-129,148,2,85,32,67,204,73,98,114,64,68,232,62,0,230,92,1,227,240,
-11,228,121,21,241,196,1,236,169,2,225,209,1,151,99,224,26,12,225,236,
-1,237,164,7,255,120,2,236,58,18,231,35,2,225,29,4,228,228,33,2,
-99,111,108,228,232,5,128,52,96,15,224,48,10,2,101,110,100,2,45,111,
-102,2,45,102,105,2,108,101,34,195,8,224,38,10,2,110,111,32,2,108,
-111,99,2,97,116,105,2,111,110,34,194,32,224,29,17,33,161,131,36,36,
-66,87,183,35,76,184,47,32,25,194,140,99,38,2,51,54,56,164,165,224,
-118,12,234,87,0,171,162,170,158,43,196,99,171,75,239,130,216,2,51,54,
-55,242,185,0,64,83,249,124,0,213,128,2,51,54,53,228,7,0,128,6,
-32,39,130,202,2,89,32,66,32,140,235,208,1,228,22,3,196,21,64,48,
-213,19,214,55,248,148,1,192,17,34,116,249,25,7,177,19,236,141,1,32,
-30,250,211,0,32,87,195,52,2,48,32,80,64,164,103,86,109,20,35,83,
-128,237,32,81,2,51,54,51,97,59,79,119,237,142,4,96,24,127,14,53,
-28,107,120,100,28,85,173,64,13,64,35,37,195,130,122,32,22,76,148,96,
-92,32,11,33,119,128,11,32,68,200,132,2,49,32,75,32,61,42,228,33,
-135,2,52,32,102,225,134,0,2,67,111,110,2,116,114,111,2,108,46,69,
-2,120,99,101,2,112,116,105,2,111,110,46,2,73,110,116,2,101,114,110,
-2,97,108,34,32,64,224,39,1,2,83,111,109,2,101,69,120,160,35,97,
-184,197,167,32,100,181,166,178,84,32,230,2,53,55,32,38,247,67,61,96,
-13,117,245,84,90,246,10,1,2,51,53,57,128,160,194,51,46,52,78,98,
-96,23,238,112,0,96,58,167,167,65,233,2,53,53,32,212,233,155,71,2,
-51,53,54,69,63,97,118,32,45,196,192,73,244,96,94,64,30,32,17,34,
-192,51,193,32,14,129,147,229,166,6,231,143,1,66,162,242,222,0,235,185,
-3,32,8,237,103,3,32,73,129,175,2,75,32,90,192,105,129,174,237,197,
-7,142,96,134,223,69,34,111,170,227,227,16,2,111,112,101,2,110,70,105,
-86,106,2,99,97,110,78,59,64,16,196,53,230,57,2,32,110,197,39,192,
-129,64,19,207,139,2,52,56,32,32,4,106,82,69,21,241,181,4,97,222,
-2,97,99,116,54,215,81,184,96,38,128,52,66,66,79,7,32,19,198,28,
-32,187,32,91,69,20,124,251,96,30,128,228,140,230,2,115,101,113,202,38,
-32,16,192,13,67,115,128,11,131,32,238,117,2,65,12,224,64,0,96,35,
-82,91,64,123,163,237,241,36,1,240,250,2,2,52,50,32,240,250,0,124,
-248,32,18,161,7,2,52,52,32,225,242,6,64,25,240,145,5,34,90,192,
-135,32,56,165,173,32,40,253,249,1,128,28,224,173,4,32,31,129,78,247,
-127,3,2,51,52,48,242,230,1,33,218,116,126,64,39,238,33,3,34,210,
-32,4,171,5,240,139,3,2,50,54,53,170,51,100,58,226,96,2,238,204,
-12,242,191,21,238,35,1,226,78,17,2,76,111,97,114,174,2,115,97,118,
-43,96,2,99,97,99,2,104,101,32,163,187,231,55,6,192,176,106,75,95,
-123,226,112,4,160,185,2,58,51,51,190,158,249,144,6,214,78,32,160,168,
-216,96,12,56,192,243,164,1,96,18,138,51,245,190,12,202,13,131,219,85,
-186,2,50,57,49,200,253,96,40,2,49,56,55,231,62,3,248,58,2,248,
-116,18,65,53,80,75,230,120,10,248,128,5,152,126,247,82,4,82,199,253,
-246,0,243,222,16,215,147,207,96,235,254,2,224,46,11,145,167,252,30,2,
-97,248,192,183,244,188,0,237,100,0,2,49,54,51,246,3,4,118,77,225,
-49,1,38,180,224,163,18,2,51,48,50,128,12,96,11,133,120,148,122,248,
-53,6,64,131,224,126,4,239,200,3,245,113,32,226,162,0,192,159,245,97,
-15,232,231,19,2,105,110,118,2,97,108,105,2,100,97,116,2,101,32,99,
-66,177,206,25,249,179,4,254,109,3,225,108,6,100,61,2,95,51,50,129,
-103,225,145,0,128,225,226,146,2,238,178,3,64,138,172,117,119,213,2,50,
-56,57,97,43,222,215,195,24,101,29,67,30,168,48,66,54,68,25,204,31,
-100,23,193,89,126,68,225,229,0,207,194,108,179,75,168,96,0,222,104,32,
-18,96,159,117,181,32,98,133,103,103,50,124,30,120,101,32,6,104,177,64,
-42,100,132,64,128,131,130,32,120,131,55,224,105,0,133,113,192,135,249,18,
-0,168,181,75,87,64,169,212,74,249,225,2,224,61,2,101,20,233,42,2,
-64,126,101,17,109,63,64,147,229,31,0,236,99,8,32,31,197,136,41,1,
-101,181,214,179,129,99,118,67,223,79,49,33,204,212,184,131,97,123,229,158,
-0,66,230,134,103,255,251,1,250,153,4,64,176,37,242,68,185,255,156,0,
-154,0,32,186,32,82,205,163,128,10,226,254,3,129,130,214,89,224,98,1,
-174,120,160,43,225,64,1,224,126,2,227,31,1,225,246,0,96,8,2,95,
-54,51,66,67,165,70,65,221,95,120,251,124,3,138,138,2,51,49,57,237,
-247,0,246,215,0,224,44,1,33,3,242,42,1,131,232,64,34,202,206,96,
-32,235,114,1,248,38,10,137,52,42,15,226,89,1,67,22,202,237,251,39,
-2,64,64,42,141,161,28,193,22,251,82,1,201,115,155,234,87,13,122,122,
-224,233,3,32,18,168,241,225,97,3,160,70,225,85,10,225,110,0,225,76,
-8,74,67,225,76,25,128,73,219,66,183,38,35,80,98,70,226,142,7,224,
-44,4,192,120,120,22,224,48,20,44,200,222,219,45,109,34,175,103,37,32,
-233,131,142,96,6,64,185,195,132,247,172,0,65,216,67,24,128,78,111,138,
-224,9,0,114,64,65,230,217,202,68,54,145,223,128,54,160,34,224,63,11,
-96,55,197,1,226,53,15,65,240,100,31,40,124,71,92,225,198,1,68,124,
-161,158,2,90,32,83,225,144,4,227,0,0,227,90,1,227,17,1,254,111,
-6,224,80,4,225,115,16,201,88,224,177,0,230,110,0,237,59,1,228,106,
-0,224,192,5,183,252,224,192,69,226,98,0,234,150,6,224,190,14,245,90,
-2,225,170,0,224,191,18,192,14,131,41,227,242,2,128,209,206,100,228,204,
-0,228,202,1,195,17,248,60,3,67,143,195,111,253,71,0,240,55,0,60,
-53,223,107,226,138,4,208,137,224,91,0,249,161,2,225,35,6,192,116,224,
-229,1,235,1,1,224,11,0,251,146,4,160,209,229,86,23,225,71,8,225,
-54,1,224,210,0,138,51,2,82,32,64,229,170,29,242,191,9,224,225,1,
-96,197,225,57,1,64,15,182,65,227,174,7,132,186,225,57,0,94,119,70,
-128,113,198,2,51,49,54,225,76,4,163,97,224,101,14,228,19,18,224,100,
-41,166,4,225,252,3,162,245,81,90,171,27,230,172,6,224,13,19,229,105,
-3,193,201,233,235,4,136,168,94,54,41,183,224,187,3,224,172,5,41,41,
-224,25,0,195,160,128,44,48,143,233,129,3,145,97,224,177,8,224,178,65,
-208,86,64,159,224,178,40,131,36,81,53,233,199,2,97,113,35,148,251,225,
-3,228,108,0,224,196,10,169,201,172,185,199,181,192,8,32,72,137,9,224,
-72,30,232,196,5,227,29,1,96,226,224,5,1,39,142,224,61,0,254,248,
-9,234,102,0,234,111,1,225,58,0,224,167,5,229,20,1,128,17,227,170,
-2,96,16,224,15,0,192,224,225,152,1,224,119,33,192,35,225,39,19,229,
-35,10,192,24,129,69,138,47,228,145,1,227,7,16,225,143,2,231,3,5,
-160,79,224,103,17,32,101,138,86,224,101,31,232,184,4,225,181,1,225,46,
-6,160,67,228,239,6,230,145,5,225,150,67,224,98,10,225,129,60,138,110,
-2,35,50,32,32,11,138,89,231,99,15,230,63,0,227,157,1,224,5,1,
-135,112,224,225,1,231,137,6,200,71,171,175,231,127,14,231,151,17,224,128,
-3,192,208,170,54,102,67,231,39,10,229,151,6,132,36,135,46,228,48,0,
-53,150,33,3,65,16,212,144,193,114,146,15,64,172,65,29,2,48,32,58,
-101,188,64,11,89,15,69,214,227,253,0,228,239,21,226,8,3,242,113,8,
-97,130,64,190,168,250,81,232,34,149,128,165,83,230,193,3,32,37,212,125,
-32,16,32,13,173,104,48,90,234,136,0,97,106,100,138,119,29,150,184,214,
-191,96,23,96,11,150,230,224,23,10,160,48,146,177,47,162,108,90,150,83,
-64,6,243,96,17,2,50,54,50,224,203,0,211,64,32,10,130,77,186,79,
-44,168,243,238,2,2,50,55,52,253,5,9,147,57,177,241,32,49,180,145,
-87,12,39,117,47,197,144,8,32,6,96,173,118,243,96,17,32,43,214,5,
-110,165,64,31,223,109,33,193,44,73,117,233,47,242,205,32,111,236,237,32,
-0,81,30,120,222,129,109,128,175,129,110,193,28,55,73,179,15,81,82,224,
-200,22,97,137,65,222,66,94,64,50,245,184,1,64,13,193,34,128,171,251,
-205,0,64,78,2,49,49,56,146,96,32,6,2,58,50,57,129,51,2,94,
-109,100,2,53,66,70,2,73,76,69,2,32,58,50,64,24,228,202,2,81,
-105,115,172,48,49,220,75,122,97,2,50,57,54,64,173,115,7,128,94,80,
-84,76,116,218,224,254,76,3,64,167,2,35,52,55,141,202,121,140,96,63,
-224,165,0,96,19,128,193,2,51,32,90,224,1,10,233,166,2,64,241,96,
-142,160,166,89,66,252,205,0,121,246,240,153,2,253,119,4,81,132,64,142,
-32,5,130,3,239,236,7,115,216,238,173,0,226,57,4,64,14,122,76,235,
-154,0,64,231,145,66,242,118,6,2,79,32,35,64,95,192,178,32,172,225,
-209,10,98,37,253,211,1,225,222,6,182,218,114,229,226,104,9,2,50,56,
-51,226,104,13,116,221,246,185,4,96,24,239,155,12,66,120,97,45,238,192,
-3,111,37,171,57,239,133,2,251,77,5,161,100,239,138,6,230,47,5,230,
-64,7,98,75,224,85,5,224,80,0,98,196,32,170,64,201,100,114,96,232,
-33,36,113,224,2,90,32,67,128,6,160,58,244,73,0,224,28,5,73,197,
-224,28,16,76,237,224,28,16,107,111,224,29,16,2,50,56,55,224,29,3,
-2,95,53,57,225,21,0,119,147,96,10,32,187,131,54,191,31,229,84,0,
-64,61,224,211,1,135,146,2,56,53,32,225,115,2,246,153,1,64,23,229,
-58,4,160,6,224,43,22,224,49,3,224,42,16,224,80,4,128,50,224,43,
-23,224,93,3,128,244,128,22,96,244,131,251,64,6,32,220,2,115,99,109,
-2,112,32,58,96,60,198,49,225,97,6,68,14,96,253,222,49,96,79,67,
-6,32,54,197,7,144,161,37,7,104,245,32,24,211,234,137,11,130,117,227,
-134,0,2,64,95,57,163,14,64,42,166,61,227,94,0,227,78,3,125,171,
-133,40,120,22,101,242,182,93,245,174,1,99,148,243,74,0,251,108,4,2,
-55,50,32,64,120,40,93,64,44,96,13,128,23,246,163,0,32,6,96,141,
-131,132,64,6,195,238,156,73,101,108,32,34,249,250,7,96,25,228,246,1,
-192,20,162,51,65,52,2,55,53,32,246,229,0,230,9,11,100,40,38,170,
-246,171,1,224,208,36,66,224,224,208,0,106,32,160,207,64,45,96,10,32,
-142,129,229,97,135,224,92,5,246,135,0,225,44,14,224,171,6,185,16,96,
-107,96,106,102,239,96,6,135,209,96,86,223,137,224,85,8,67,91,224,77,
-3,32,46,130,33,136,0,96,35,166,137,239,65,1,2,50,55,48,96,27,
-251,118,3,224,1,13,230,97,5,96,94,200,95,163,211,224,47,18,2,58,
-50,54,129,221,2,82,32,95,67,50,32,15,215,208,95,100,194,9,136,123,
-32,28,254,83,0,224,76,5,32,25,161,108,72,241,151,33,160,5,118,192,
-183,51,123,57,128,37,42,43,96,25,126,221,71,253,107,225,252,129,18,105,
-74,253,188,4,2,46,109,104,2,115,99,97,57,20,93,186,123,178,139,162,
-231,54,15,252,127,5,166,12,177,31,252,124,0,186,147,166,182,127,178,166,
-61,2,50,53,57,161,190,191,166,225,234,3,64,106,92,59,160,106,224,133,
-3,32,24,165,56,226,26,3,249,36,1,232,118,6,73,212,254,223,5,255,
-126,5,32,78,32,6,224,159,3,2,50,50,53,128,23,133,235,224,123,6,
-32,187,251,134,4,224,228,2,226,148,3,64,215,64,224,97,157,2,53,55,
-32,32,13,130,8,2,73,79,46,2,100,101,115,2,101,114,105,58,135,2,
-122,101,32,32,23,130,3,2,94,97,100,2,100,95,108,2,122,55,55,2,
-95,100,101,2,99,111,109,2,112,114,101,2,115,115,111,2,114,32,58,96,
-134,225,136,6,128,179,168,212,224,134,1,157,233,2,53,52,32,32,137,97,
-54,255,212,3,97,53,64,103,2,117,110,103,2,101,116,98,64,88,227,100,
-0,224,88,3,85,17,233,188,2,2,53,50,32,69,236,65,79,69,135,140,
-47,227,205,3,32,50,129,96,2,50,48,49,226,76,2,2,104,71,101,2,
-116,67,104,2,97,114,58,2,32,69,79,2,70,34,32,161,16,165,201,2,
-49,52,50,64,127,130,128,2,94,103,101,128,142,226,112,0,227,243,6,95,
-115,32,18,34,181,251,82,0,64,133,251,230,19,2,111,112,101,2,110,66,
-105,2,110,97,114,2,121,70,105,2,108,101,58,59,235,2,110,110,111,2,
-116,32,111,32,22,251,240,4,254,164,2,161,62,225,9,1,86,232,224,232,
-5,181,116,32,170,130,176,32,154,2,56,32,58,97,251,64,199,2,99,108,
-111,2,115,101,98,64,16,129,233,195,207,32,16,182,114,224,218,12,227,68,
-9,224,36,3,64,242,2,52,53,32,191,41,118,235,128,154,224,155,4,199,
-13,224,163,0,64,116,204,155,32,64,66,18,100,255,32,74,142,1,32,10,
-229,99,13,252,209,3,69,45,253,144,6,64,18,67,99,64,181,234,232,3,
-123,217,100,189,224,23,7,33,29,132,213,224,24,5,76,47,224,23,8,225,
-193,1,2,119,43,34,198,34,2,50,52,50,172,235,226,149,0,2,50,48,
-55,134,157,196,91,225,164,0,200,20,228,151,7,32,239,130,124,2,94,102,
-111,66,5,32,15,237,43,0,43,34,229,214,7,229,212,3,32,42,130,154,
-238,239,4,32,21,199,222,235,192,1,32,171,197,104,229,56,7,32,56,79,
-115,225,97,0,144,248,227,189,3,254,78,5,64,51,93,169,224,52,0,189,
-61,32,21,139,52,173,153,225,185,3,253,105,4,228,21,1,224,73,4,228,
-164,7,2,51,57,32,160,219,227,192,6,2,101,97,100,97,130,102,76,190,
-150,2,65,46,119,2,114,105,116,68,181,190,68,167,19,128,2,154,123,64,
-45,205,210,224,26,0,230,217,2,189,231,224,105,1,2,118,55,46,2,48,
-92,49,2,48,38,34,96,104,130,149,224,29,1,2,48,46,57,32,1,2,
-48,34,32,64,28,164,63,2,50,50,52,64,195,33,149,32,19,201,242,67,
-202,2,50,51,48,96,19,129,175,37,106,2,115,116,100,2,111,117,116,64,
-175,163,178,68,62,65,139,64,8,64,78,32,13,64,18,227,93,0,163,92,
-32,68,188,204,101,151,175,19,186,251,96,18,2,117,116,102,67,252,186,77,
-173,75,114,37,137,252,185,148,2,73,32,58,96,111,228,217,1,225,153,2,
-32,108,68,219,64,146,32,197,2,35,49,48,128,57,213,240,32,22,228,142,
-2,32,33,32,27,212,198,64,28,125,140,68,91,32,23,165,75,2,112,117,
-116,68,129,179,107,218,15,248,194,2,37,69,67,68,96,58,177,0,250,115,
-4,149,140,98,86,115,30,129,10,161,60,36,233,43,190,68,103,139,185,150,
-234,96,6,75,254,2,101,113,117,2,97,108,32,32,15,177,79,2,50,49,
-53,64,4,2,54,32,102,225,205,0,2,72,79,77,2,69,34,32,64,250,
-227,49,0,224,31,4,2,85,83,69,2,82,78,65,160,35,240,170,0,225,
-47,0,229,240,16,2,67,58,47,2,85,115,101,2,114,115,47,196,53,32,
-133,129,153,231,55,5,82,94,230,75,10,224,88,17,38,156,2,69,110,118,
-2,58,32,110,38,62,2,102,111,117,2,110,100,32,160,97,231,91,4,179,
-165,2,95,53,48,98,85,32,103,219,49,32,27,167,119,2,105,115,119,2,
-105,110,100,2,111,119,115,65,33,129,226,96,143,224,107,1,2,77,72,83,
-2,68,73,82,64,95,32,33,225,232,1,228,69,2,69,125,32,178,109,182,
-229,14,19,233,106,7,65,239,229,20,12,211,110,2,50,49,48,64,150,130,
-54,2,112,101,101,2,107,67,65,2,83,116,114,2,105,110,103,64,21,198,
-237,51,39,2,58,50,48,129,236,2,112,110,117,2,108,108,32,32,14,161,
-235,98,26,147,46,98,26,147,46,96,6,64,45,2,61,61,32,32,12,129,
-37,71,240,2,101,110,118,64,16,244,143,1,115,11,2,50,48,52,128,77,
-229,78,3,234,22,8,164,201,226,29,9,2,50,48,50,128,213,179,57,228,
-211,8,2,116,97,105,2,108,34,32,32,34,114,106,179,44,114,218,82,181,
-105,194,2,50,48,48,96,27,164,65,64,164,160,254,36,65,70,244,70,183,
-32,5,145,0,80,79,160,56,2,49,55,50,224,11,2,34,3,128,11,2,
-58,49,57,170,5,244,93,1,192,61,34,115,224,155,1,2,101,114,114,2,
-111,114,58,130,93,148,114,128,38,32,64,161,98,36,213,76,248,51,47,32,
-120,224,58,3,2,67,111,110,2,116,114,111,2,108,46,69,64,66,64,64,
-224,26,1,96,18,2,67,97,108,128,246,140,54,96,83,163,28,146,7,145,
-190,241,198,6,253,155,3,238,80,3,2,49,57,51,171,232,166,145,65,14,
-67,61,83,186,214,234,96,99,198,5,169,6,96,32,210,130,184,216,160,144,
-164,120,102,183,151,47,32,45,130,11,2,83,32,85,225,198,7,52,165,2,
-67,111,109,2,98,105,110,41,217,2,101,109,112,2,116,121,34,199,62,110,
-87,71,191,160,171,69,225,107,192,168,189,2,49,57,49,2,32,95,57,64,
-20,2,89,32,66,112,106,172,177,69,37,229,7,1,116,2,83,84,192,141,
-211,249,245,57,1,254,192,0,32,83,65,30,124,243,220,45,69,91,99,10,
-101,209,200,70,97,56,181,101,2,65,114,114,2,97,121,32,32,18,218,48,
-231,186,2,234,31,1,2,49,57,48,131,233,233,160,10,236,125,2,78,159,
-231,215,4,32,87,235,76,0,224,59,8,32,155,108,33,113,187,249,57,0,
-232,136,7,96,33,236,212,6,32,86,237,169,0,185,124,198,97,218,51,245,
-133,6,166,97,230,99,5,103,7,148,12,218,75,224,124,3,64,54,97,97,
-64,36,154,72,249,92,2,140,128,32,0,68,3,2,58,49,56,209,75,246,
-46,0,200,103,96,68,131,194,96,134,32,10,65,243,114,4,32,120,34,232,
-241,18,0,2,83,32,95,2,49,56,53,137,42,100,99,224,111,10,160,110,
-178,232,2,101,113,32,32,12,253,225,1,2,95,52,48,186,247,226,4,2,
-64,73,81,139,187,189,32,48,164,221,42,121,2,95,52,51,32,24,107,151,
-75,146,2,95,52,54,53,149,133,209,254,134,0,100,229,67,76,237,126,1,
-123,18,142,227,85,4,224,38,1,224,34,1,2,95,54,52,192,9,2,49,
-56,49,185,224,160,37,96,12,32,22,72,74,96,34,97,58,162,80,64,135,
-58,23,70,97,32,151,64,47,160,59,154,44,97,56,130,79,227,30,0,128,
-196,39,228,2,49,56,48,193,207,132,65,138,154,64,31,130,211,224,36,2,
-224,57,12,227,35,0,179,193,33,9,98,96,33,19,220,1,154,115,2,95,
-53,55,202,201,244,178,0,160,34,52,158,32,23,96,110,43,166,37,132,232,
-88,3,2,92,51,52,2,38,46,47,2,108,105,98,2,47,68,97,2,116,
-97,47,2,73,110,116,2,101,103,101,2,114,95,84,2,121,112,101,2,46,
-104,115,64,29,2,44,50,56,2,58,49,34,252,201,1,32,64,33,137,2,
-49,55,56,64,18,92,81,101,216,192,18,44,193,32,108,224,5,0,32,181,
-236,50,0,224,60,3,112,226,96,60,2,89,32,67,176,162,97,229,64,170,
-128,198,140,42,100,105,32,23,69,52,225,41,0,69,157,71,245,129,204,161,
-40,197,51,225,166,0,65,53,180,206,72,127,84,53,2,35,54,52,32,50,
-224,13,0,69,192,229,67,6,161,0,2,58,32,117,2,110,115,117,2,112,
-112,111,2,114,116,101,2,100,32,119,2,111,114,100,2,32,115,105,2,122,
-101,34,64,96,32,54,2,55,54,56,66,54,40,175,2,55,52,56,2,51,
-54,52,84,191,96,136,124,31,2,58,49,55,131,126,2,65,32,58,97,20,
-103,115,32,10,250,10,0,103,88,116,35,32,6,82,177,65,148,195,149,179,
-239,199,88,80,159,32,5,150,159,103,88,192,56,66,218,192,11,71,88,96,
-11,32,63,235,39,0,79,203,116,107,76,129,32,31,118,55,64,43,243,121,
-0,161,147,163,165,170,0,123,38,192,47,224,15,8,64,65,206,34,245,169,
-1,96,28,186,112,133,152,146,108,65,112,141,164,78,34,192,73,83,197,224,
-21,3,128,159,96,21,201,132,198,85,217,82,136,52,180,114,2,95,51,56,
-33,40,180,82,2,90,32,85,65,65,180,80,65,126,180,62,65,76,180,47,
-149,2,96,109,247,130,3,189,69,68,244,224,14,5,192,189,206,15,215,148,
-128,207,32,72,196,178,64,19,128,42,72,192,157,134,192,42,64,60,32,42,
-254,40,1,2,95,55,52,106,100,74,255,96,43,32,23,2,47,61,32,32,
-11,244,84,1,81,53,147,174,67,216,175,90,47,138,222,46,239,14,0,2,
-39,32,85,224,20,1,198,59,236,171,2,166,65,78,144,64,146,138,3,127,
-160,66,245,64,175,160,77,96,174,192,17,32,139,230,203,7,224,9,1,160,
-59,249,81,2,2,58,49,53,201,198,83,204,66,159,194,237,179,191,105,223,
-2,75,32,66,128,140,2,53,32,102,227,106,0,2,110,111,32,2,109,97,
-116,2,99,104,32,2,97,116,32,210,124,79,4,105,231,68,168,162,243,105,
-243,96,11,32,84,215,107,233,243,24,2,120,99,101,2,112,116,105,2,111,
-110,46,67,209,2,114,110,97,105,233,224,39,1,2,80,97,116,64,22,2,
-77,97,116,2,99,104,70,202,254,234,7,1,180,20,159,217,174,160,98,158,
-232,238,1,77,252,224,15,4,243,55,10,179,139,253,1,12,126,211,162,92,
-70,205,98,160,180,123,32,37,2,50,32,73,96,16,198,141,32,10,195,117,
-128,24,217,169,97,94,76,245,245,222,2,2,35,51,57,131,66,64,152,41,
-236,128,15,99,113,169,240,65,104,71,209,66,110,178,158,224,39,1,161,137,
-225,45,1,2,39,92,57,2,50,38,39,2,39,34,32,160,28,129,158,172,
-109,224,99,0,106,19,138,64,224,17,3,214,130,135,36,136,71,246,135,1,
-128,35,169,108,225,97,0,130,8,128,158,130,164,96,101,224,147,3,64,146,
-70,159,206,217,129,183,226,188,3,175,226,254,193,4,231,56,0,32,77,99,
-105,161,162,83,121,230,172,0,202,74,64,155,165,70,32,138,130,141,159,25,
-211,234,67,3,125,34,211,93,64,182,224,163,5,224,160,0,2,67,32,79,
-192,96,152,113,253,248,4,225,22,5,96,0,2,79,32,80,2,32,35,55,
-239,117,3,64,79,2,97,34,32,192,27,32,116,224,27,5,2,98,34,32,
-192,27,78,193,224,28,5,2,102,34,32,224,28,0,33,38,224,28,5,2,
-110,34,32,224,28,0,239,232,4,64,28,109,60,128,28,33,51,224,27,5,
-2,116,34,32,224,56,0,34,146,224,28,5,2,118,34,32,224,56,0,224,
-143,8,64,3,211,73,225,193,1,182,53,102,65,68,187,32,5,2,56,32,
-35,97,95,65,34,83,112,2,35,53,55,100,12,182,79,33,125,57,229,97,
-152,238,79,6,193,178,103,65,100,70,96,17,32,43,184,59,234,89,11,123,
-31,67,179,234,93,2,205,129,2,35,52,53,128,81,134,5,182,53,64,68,
-226,220,2,251,92,1,234,124,17,228,33,2,226,104,3,64,87,72,236,64,
-45,112,180,192,41,226,59,2,224,10,1,96,49,33,86,101,212,106,51,96,
-96,33,13,129,47,130,83,65,8,224,75,4,32,183,132,101,72,213,32,12,
-132,97,2,99,104,114,64,12,245,252,0,149,249,191,166,64,211,135,106,224,
-175,1,152,42,96,28,131,116,225,178,6,98,199,225,178,0,2,49,50,54,
-96,43,181,86,2,60,61,32,32,11,221,220,198,75,181,60,71,194,181,42,
-96,106,32,13,229,142,0,35,211,65,52,83,174,238,136,2,32,33,197,56,
-32,16,32,13,231,115,2,2,49,51,48,96,146,103,116,181,21,103,116,181,
-13,81,130,96,35,130,16,64,196,84,53,67,213,248,67,0,117,25,69,220,
-161,117,84,240,160,15,2,58,49,50,128,210,96,23,106,165,84,251,32,22,
-128,221,65,1,81,174,141,40,245,22,2,135,224,194,88,78,152,68,63,64,
-10,168,116,238,5,2,192,32,133,77,74,253,196,211,142,100,130,71,33,20,
-224,65,4,224,64,5,98,179,162,115,195,108,181,140,172,49,224,169,2,118,
-221,96,246,240,169,4,181,130,73,198,73,178,32,16,253,76,1,189,65,32,
-19,226,67,0,192,53,213,117,240,123,1,117,168,217,74,101,219,149,62,117,
-57,64,50,129,143,80,18,211,111,96,27,128,70,211,6,78,57,112,182,32,
-56,97,30,170,121,239,53,1,244,229,4,2,49,49,54,224,46,4,240,49,
-14,249,55,5,85,46,129,44,181,190,74,85,181,67,236,185,0,134,82,76,
-190,36,100,228,74,1,233,58,2,239,84,0,241,81,0,192,25,161,166,228,
-64,1,228,142,0,228,53,7,238,17,0,240,53,6,240,51,2,240,210,1,
-64,186,248,254,7,96,95,141,59,228,48,1,206,206,242,182,0,249,12,6,
-224,44,11,201,40,240,210,2,96,16,33,25,130,81,67,194,181,224,2,79,
-32,58,96,87,218,83,250,74,7,32,29,200,227,90,113,128,69,181,126,229,
-8,0,240,62,1,146,60,70,250,33,174,99,104,181,157,2,35,49,54,64,
-105,172,32,51,83,39,159,73,50,210,122,110,45,110,70,52,56,165,18,2,
-95,57,57,224,10,0,2,49,48,49,224,11,2,224,34,1,110,68,2,58,
-49,48,230,151,0,97,75,42,22,178,35,136,100,160,2,250,111,7,65,224,
-128,50,239,175,0,139,68,237,85,1,85,148,171,152,102,5,205,13,128,23,
-216,163,34,18,160,53,224,29,3,224,53,16,72,232,42,38,193,101,192,68,
-233,10,6,128,193,198,63,224,69,8,128,161,138,53,224,100,9,241,70,4,
-147,26,96,72,106,96,224,142,8,128,16,96,18,97,180,183,31,187,39,230,
-104,1,183,24,142,90,226,40,7,183,40,64,52,224,28,10,196,172,155,121,
-132,71,183,56,224,78,3,252,196,2,32,31,226,122,0,96,148,177,100,193,
-206,65,37,34,35,107,192,118,255,66,35,226,200,18,183,18,237,48,2,86,
-79,87,84,182,236,224,25,6,64,116,182,197,221,110,128,183,182,134,2,114,
-101,109,2,32,58,57,222,175,224,1,3,100,56,229,227,3,224,20,3,224,
-17,8,224,14,5,224,11,2,229,183,2,128,194,182,138,225,97,3,225,47,
-3,182,123,2,95,55,50,77,126,114,2,192,7,2,95,56,50,182,66,2,
-95,56,52,224,9,0,35,70,128,9,53,33,192,9,69,241,74,13,2,58,
-57,51,187,156,2,111,107,101,2,87,111,114,40,140,181,246,2,94,112,101,
-2,101,107,87,128,17,240,86,1,83,57,149,122,84,183,2,58,57,48,225,
-56,4,98,94,2,58,56,57,224,46,5,105,174,96,46,180,246,2,95,56,
-54,2,32,58,56,185,125,2,43,32,58,180,185,225,126,5,180,193,179,106,
-197,172,254,191,0,64,82,136,25,147,179,128,100,101,157,77,154,180,206,226,
-218,7,180,87,204,144,2,95,55,57,143,232,128,63,245,19,6,179,238,242,
-156,6,59,102,2,101,102,105,2,110,101,100,123,11,178,220,226,219,15,178,
-142,233,202,7,178,154,69,14,147,4,82,187,178,164,243,139,2,230,141,0,
-80,178,230,204,2,102,61,179,126,90,113,167,118,116,184,164,12,117,154,50,
-207,149,90,67,54,178,248,2,105,110,118,2,32,58,55,182,42,74,110,178,
-233,73,129,178,180,2,113,117,111,62,149,242,161,0,226,242,91,178,204,213,
-237,72,142,140,108,113,141,232,38,1,72,214,184,82,144,36,178,241,69,154,
-70,161,74,217,2,58,55,48,130,192,2,102,114,101,2,101,32,58,178,160,
-121,3,64,87,33,6,65,173,160,63,178,176,2,110,101,119,220,84,2,76,
-101,110,32,52,202,34,233,82,1,178,196,52,78,178,192,162,91,130,243,178,
-139,227,179,15,178,127,248,10,0,162,7,178,126,2,95,52,56,167,38,80,
-105,2,95,53,52,64,4,74,237,81,105,118,84,2,95,53,57,232,143,0,
-35,196,96,9,2,58,54,49,241,31,0,242,36,3,70,255,73,3,240,208,
-0,242,76,4,64,29,224,49,1,224,39,4,178,69,248,175,10,178,81,2,
-62,61,32,2,58,53,55,128,10,32,9,129,16,76,69,177,169,2,60,32,
-58,177,59,2,105,99,109,2,112,32,58,177,55,108,1,80,20,2,95,53,
-49,64,102,235,254,1,177,63,66,123,176,52,50,180,174,124,226,120,93,174,
-190,230,75,13,174,205,2,110,101,103,32,149,128,237,2,42,32,58,174,112,
-2,45,32,58,173,194,36,193,173,191,224,156,68,2,58,52,50,224,155,7,
-193,143,174,9,162,211,34,252,114,223,116,101,32,12,66,57,114,67,2,58,
-52,48,245,169,1,173,244,43,57,173,242,64,54,96,42,77,246,173,245,64,
-29,247,4,0,173,240,2,94,109,97,2,108,108,111,2,99,32,58,173,222,
-2,73,79,46,2,112,101,114,2,102,111,114,2,109,73,79,32,20,236,124,
-9,173,223,51,46,173,221,224,227,14,2,58,51,48,250,164,1,77,148,56,
-7,69,8,173,203,131,75,134,12,173,199,2,114,97,105,2,115,101,32,2,
-58,50,55,255,0,0,163,148,2,46,114,101,2,97,100,32,2,58,50,53,
-192,161,63,198,2,65,114,103,2,82,101,102,32,20,206,149,32,100,122,64,
-88,111,99,108,64,107,128,190,32,49,2,62,62,32,2,58,50,50,165,241,
-73,67,128,33,45,142,236,134,0,44,19,111,109,52,243,192,9,45,35,128,
-9,2,58,50,49,234,155,3,111,134,172,199,109,84,107,153,173,81,128,35,
-96,32,119,127,192,32,2,95,56,32,124,200,166,28,91,198,224,47,12,105,
-11,96,155,143,207,247,105,2,230,141,6,252,112,0,196,178,73,7,236,8,
-7,201,246,231,27,6,91,87,224,11,2,96,210,188,44,226,152,2,142,130,
-181,7,2,51,32,66,103,76,226,135,0,72,106,129,75,73,153,226,180,0,
-110,116,128,239,2,58,57,32,172,171,234,140,1,37,194,162,24,2,58,54,
-32,161,158,2,114,101,116,2,117,114,110,36,39,225,175,1,36,53,128,201,
-36,52,227,127,7,227,107,37,2,58,50,32,226,167,19,234,111,0,226,143,
-0,64,202,75,123,181,169,224,0,255,224,0,255,224,0,255,224,0,255,224,
-0,255,224,0,255,224,0,222,1,32,125,
+80,32,64,96,59,34,3,65,222,2,95,55,53,33,117,2,51,52,54,2,
+32,102,114,192,204,33,39,2,109,97,110,2,100,45,108,2,105,110,101,64,
+199,2,35,48,32,96,3,32,0,2,75,50,32,34,51,64,255,2,56,49,
+52,192,200,65,30,2,56,50,51,96,14,64,100,98,96,2,51,48,32,32,
+14,2,85,32,90,160,240,64,153,192,250,128,36,128,143,32,42,2,52,52,
+32,160,207,32,137,2,48,57,32,64,18,32,251,2,95,49,54,64,233,64,
+13,64,7,32,43,2,79,32,64,64,107,65,168,225,231,17,2,47,46,109,
+2,99,97,98,2,97,108,47,2,109,104,115,2,45,34,32,129,218,96,156,
+96,126,2,95,49,49,97,87,64,0,2,58,49,56,2,52,55,32,2,64,
+10,65,32,142,224,1,13,33,111,33,61,2,50,32,35,67,44,2,49,51,
+54,97,134,2,79,32,79,227,39,2,224,151,5,224,135,2,2,108,105,98,
+96,126,128,245,224,24,1,2,111,117,116,2,46,99,111,2,109,98,34,162,
+186,128,228,224,6,19,96,177,224,13,0,2,54,55,32,224,20,7,224,92,
+1,2,100,101,102,2,97,117,108,2,116,34,32,128,221,32,28,68,7,2,
+51,49,48,33,124,2,85,32,66,224,1,14,2,90,32,64,224,0,2,224,
+37,15,64,1,33,183,224,0,4,224,41,32,129,71,225,119,1,32,189,32,
+153,2,66,32,89,2,32,64,83,132,76,66,172,130,157,66,23,64,62,32,
+13,193,174,99,138,163,42,227,58,0,132,114,227,155,25,163,140,224,69,53,
+2,118,34,32,224,69,58,2,113,34,32,224,69,58,2,114,34,32,224,69,
+58,2,108,34,32,224,69,58,2,67,82,34,224,70,60,2,87,34,32,224,
+70,59,224,69,60,2,84,34,32,224,69,58,2,88,67,80,2,80,34,32,
+224,72,58,2,122,34,32,224,69,58,2,81,34,32,197,176,101,107,230,86,
+3,128,66,64,14,64,98,131,144,192,25,64,10,230,172,0,224,10,0,231,
+239,9,2,49,51,50,38,39,67,216,228,25,2,104,31,224,52,3,231,80,
+4,128,50,2,49,48,53,224,51,2,64,217,96,41,198,25,128,130,198,25,
+2,51,49,32,198,25,166,50,134,15,2,50,57,52,64,18,69,139,231,97,
+0,161,49,224,206,103,2,49,49,32,224,206,18,224,200,0,104,232,96,200,
+224,170,114,192,126,224,170,21,105,88,224,170,9,224,176,1,230,8,1,224,
+116,3,224,171,26,224,41,1,160,57,230,81,2,166,149,224,75,2,72,53,
+224,192,4,2,54,56,32,224,71,0,226,50,17,104,47,226,50,9,2,51,
+57,51,226,50,11,224,219,127,2,55,51,32,224,219,72,194,6,128,115,194,
+106,226,94,7,32,2,226,94,60,2,56,48,32,226,93,18,106,133,192,198,
+233,239,3,225,212,1,160,49,225,26,8,160,139,138,252,106,144,96,12,234,
+19,16,2,85,110,107,2,110,111,119,2,110,32,102,2,108,97,103,2,58,
+32,34,138,169,234,73,14,41,219,77,26,170,44,234,230,2,229,60,4,171,
+67,64,64,225,100,4,107,88,64,222,32,94,192,219,32,213,192,219,2,54,
+53,32,224,38,16,41,214,224,38,27,33,28,224,38,27,102,6,224,38,15,
+33,132,203,104,106,216,130,63,224,20,1,229,99,1,128,60,224,105,19,224,
+44,8,224,38,14,224,104,1,224,38,18,2,55,50,51,224,77,29,229,60,
+1,224,38,20,224,77,3,66,61,2,56,51,32,32,9,65,239,96,9,33,
+222,33,237,225,224,0,224,65,0,43,246,224,65,9,98,186,2,48,54,32,
+128,59,38,113,2,55,48,32,37,66,226,226,6,74,193,138,225,32,71,235,
+123,3,2,75,32,66,235,87,75,224,38,29,224,35,26,224,32,23,224,29,
+20,224,26,17,224,23,14,224,20,11,224,17,8,224,14,5,224,11,2,228,
+79,2,132,26,236,91,1,224,0,4,65,134,33,171,225,134,3,2,90,32,
+66,225,134,255,225,134,69,225,132,15,65,131,32,23,238,134,15,206,122,225,
+149,255,239,43,7,225,68,1,36,105,225,68,13,232,75,6,226,215,255,224,
+20,7,226,160,10,65,86,37,196,241,34,17,241,24,0,225,92,236,225,49,
+8,33,47,72,88,242,82,19,242,74,1,225,50,210,225,24,7,65,23,41,
+151,243,106,23,243,102,3,225,29,149,224,224,5,64,222,149,39,244,73,24,
+244,75,7,224,231,36,224,117,2,64,114,244,188,28,224,110,4,225,84,114,
+225,49,4,64,189,148,224,224,189,18,224,185,2,227,42,181,227,13,6,64,
+252,234,251,6,224,223,19,226,47,6,224,77,2,64,72,233,189,6,224,50,
+2,230,238,255,233,198,46,233,174,12,65,113,233,171,10,65,111,225,110,255,
+235,53,57,235,40,13,65,122,137,225,244,6,5,57,0,124,61,251,243,0,
+251,240,1,58,8,53,239,206,153,42,31,2,95,54,49,238,152,1,145,123,
+209,34,65,214,251,52,18,2,66,117,105,2,108,100,105,2,110,103,32,2,
+112,97,99,2,107,97,103,2,101,32,34,246,43,1,145,217,249,164,2,222,
+12,251,237,2,92,96,32,104,220,177,242,99,0,82,35,83,39,96,63,178,
+89,178,124,128,8,114,105,224,229,5,192,105,224,231,38,224,233,4,160,84,
+224,238,15,2,87,114,105,2,116,105,110,224,237,8,65,160,145,211,242,77,
+20,2,32,116,111,160,49,33,202,242,172,3,221,147,125,150,2,49,55,51,
+113,25,192,33,210,201,151,188,115,64,115,11,2,50,53,32,64,109,2,51,
+52,56,157,190,125,43,157,195,224,14,6,160,225,2,49,57,52,187,42,80,
+152,96,99,2,56,50,50,160,143,2,54,53,56,128,143,64,20,96,10,162,
+52,2,54,56,51,145,248,33,84,32,229,2,52,49,55,32,77,2,56,52,
+32,64,42,2,51,51,51,178,237,2,50,57,32,128,60,32,99,128,146,130,
+153,139,36,91,173,94,209,64,149,224,198,4,129,111,196,38,128,7,65,74,
+243,60,0,133,228,64,230,115,13,2,50,57,48,156,160,64,111,66,242,98,
+49,64,30,32,165,65,22,2,50,54,56,64,215,64,128,243,249,4,51,250,
+150,133,2,95,51,54,64,8,130,43,33,10,194,52,244,133,10,180,44,64,
+25,244,219,3,2,85,32,64,32,8,32,152,96,4,128,127,65,83,128,88,
+65,11,93,103,128,181,161,117,32,144,34,9,32,5,2,55,55,32,64,131,
+32,22,2,53,49,54,64,168,32,28,85,16,224,171,11,2,73,32,64,2,
+64,35,51,163,240,160,93,244,188,36,194,164,2,110,97,109,32,4,2,111,
+116,32,2,111,102,32,2,116,104,101,2,32,102,111,2,114,109,32,64,20,
+2,45,118,101,2,114,115,105,2,111,110,58,194,148,35,44,32,4,82,191,
+2,53,48,32,196,93,66,13,69,216,32,9,2,54,32,58,128,222,32,15,
+2,85,32,58,96,17,129,223,239,232,22,114,220,64,47,221,189,131,102,2,
+56,32,95,85,50,33,220,129,239,131,140,2,55,50,32,128,229,2,50,48,
+32,34,106,64,137,65,31,2,54,53,54,117,116,2,57,56,32,192,153,136,
+45,126,11,253,252,1,246,100,2,100,59,196,81,158,36,98,96,133,35,117,
+127,191,134,64,110,117,33,2,51,57,57,32,20,181,149,129,220,128,90,96,
+60,247,223,0,228,119,3,227,190,0,228,121,11,64,207,67,106,244,69,28,
+228,138,35,2,73,110,115,2,116,97,108,2,108,105,110,228,141,8,246,97,
+1,228,138,18,2,105,110,32,229,170,0,133,157,133,59,197,162,2,95,50,
+53,99,210,161,87,155,242,160,13,229,146,0,225,8,5,64,207,33,209,213,
+86,132,185,161,25,128,50,225,53,11,64,53,64,105,229,67,2,247,89,10,
+2,52,55,32,248,143,3,248,142,5,194,42,224,87,2,163,207,220,175,231,
+12,28,161,170,2,35,50,32,231,0,34,2,99,114,101,2,97,116,101,225,
+75,1,224,110,7,98,230,225,22,0,67,68,2,48,32,67,86,37,32,176,
+195,237,164,47,64,22,2,53,52,32,225,195,6,226,3,9,225,14,4,97,
+85,160,39,2,50,57,54,99,76,97,140,2,52,49,50,208,191,2,52,48,
+51,96,248,248,184,17,224,79,0,32,43,131,94,96,197,224,87,0,185,101,
+228,113,13,64,63,32,32,224,143,9,32,236,230,101,2,67,193,134,37,133,
+216,161,206,100,200,249,47,0,67,213,139,186,70,195,2,90,32,90,160,38,
+64,23,138,96,74,89,35,165,65,62,224,129,4,32,250,128,42,165,113,100,
+203,165,244,64,61,137,35,120,193,70,149,228,47,1,130,219,226,208,0,160,
+225,65,147,2,95,51,55,68,124,166,142,32,6,129,194,64,6,64,81,134,
+219,162,78,194,127,66,69,69,60,2,95,50,52,97,214,224,30,15,2,51,
+53,51,224,30,10,38,199,64,113,227,45,9,34,225,68,49,2,50,52,57,
+192,208,67,52,64,126,167,72,64,47,224,100,0,103,8,32,46,66,206,65,
+245,2,56,49,53,34,215,2,53,48,57,64,60,2,75,32,95,62,104,96,
+41,32,25,230,171,1,227,67,0,162,176,2,49,51,54,128,121,35,5,120,
+188,39,249,228,90,17,227,163,6,71,239,133,113,250,229,1,133,57,197,162,
+128,13,252,41,5,128,140,251,40,20,131,217,161,146,2,85,32,95,129,148,
+97,246,192,9,65,28,134,179,71,152,225,182,0,2,56,49,54,97,183,32,
+198,230,53,0,255,47,1,200,115,134,154,224,54,0,224,141,0,160,87,134,
+239,2,94,109,107,2,100,105,114,71,0,64,36,32,16,252,49,2,2,115,
+97,103,2,101,58,32,2,109,104,115,2,32,91,45,199,96,2,93,32,91,
+2,45,45,110,2,117,109,101,2,114,105,99,224,19,3,2,118,93,32,2,
+91,45,113,64,4,2,108,93,32,2,91,45,114,64,4,2,67,91,82,2,
+124,87,93,64,9,2,88,67,80,2,80,93,32,2,91,45,68,2,100,101,
+102,64,7,2,84,93,32,2,91,45,122,64,4,2,105,80,65,2,84,72,
+93,32,8,2,111,70,73,2,76,69,93,32,8,2,80,80,75,2,71,93,
+32,2,91,45,81,2,32,80,75,64,8,2,77,111,100,2,117,108,101,2,
+78,97,109,2,101,46,46,2,46,93,34,128,248,135,46,162,92,229,48,0,
+229,250,9,2,51,51,57,226,132,0,235,182,4,100,4,33,62,65,17,137,
+6,137,180,229,142,7,229,230,3,160,94,231,30,13,76,210,225,102,2,138,
+255,224,60,0,194,199,229,166,13,104,161,229,163,1,229,162,17,2,83,97,
+118,71,37,2,99,97,99,40,252,101,168,232,233,8,32,70,231,135,0,227,
+177,7,32,132,2,52,51,57,152,167,125,106,227,60,7,97,11,75,182,64,
+183,224,71,1,224,40,0,198,24,32,37,168,248,195,104,2,52,50,50,226,
+99,2,163,28,235,237,0,129,128,227,45,0,236,246,15,230,207,24,237,208,
+10,232,88,19,2,116,111,112,2,32,108,101,2,118,101,108,2,32,100,101,
+2,102,110,115,222,246,64,50,229,83,1,32,252,202,143,195,216,174,120,128,
+161,224,167,43,172,138,228,135,0,144,67,233,17,3,160,66,132,128,2,51,
+48,54,237,111,23,2,61,32,34,255,178,0,2,55,51,55,232,66,4,232,
+218,1,64,184,226,165,2,65,115,64,46,103,7,129,176,231,210,5,226,17,
+2,65,4,229,77,10,239,195,0,225,233,8,236,111,5,227,47,11,234,76,
+26,161,209,234,48,38,2,102,105,110,2,97,108,32,2,112,97,115,2,115,
+32,32,224,0,1,234,51,0,128,136,174,195,64,71,2,54,54,52,2,32,
+35,54,224,87,1,231,80,2,108,174,2,53,32,95,158,208,32,0,224,101,
+1,2,109,115,34,226,23,3,143,250,239,197,0,97,61,160,245,74,80,143,
+234,44,220,102,111,99,197,224,185,10,2,46,99,111,2,109,98,34,160,86,
+132,147,224,60,35,192,57,225,146,6,2,51,56,53,229,183,2,37,176,2,
+99,46,99,224,42,5,68,226,234,196,6,226,208,4,71,51,161,0,172,243,
+235,15,5,199,173,226,11,14,226,36,8,2,50,49,50,224,145,2,2,77,
+72,83,2,67,67,34,193,76,2,83,32,83,206,131,224,5,9,229,164,4,
+80,57,167,9,242,111,3,96,204,224,19,4,181,64,228,124,1,99,9,96,
+27,196,118,224,8,5,227,36,2,235,83,39,228,131,38,2,69,120,101,2,
+99,117,116,39,71,238,153,17,225,116,15,2,51,56,55,241,54,0,228,130,
+6,42,54,226,207,1,225,141,6,227,118,80,2,67,32,99,2,111,109,112,
+2,105,108,97,2,116,105,111,2,110,32,32,227,118,90,237,124,7,210,88,
+106,18,34,28,73,204,227,46,16,2,36,73,78,224,73,2,224,66,4,224,
+59,25,2,79,85,84,243,255,5,141,156,2,48,52,32,233,185,2,224,235,
+2,229,184,16,2,45,119,32,2,45,87,97,2,108,108,32,2,45,79,51,
+2,32,45,73,160,84,201,169,140,94,224,64,19,2,47,115,114,2,99,47,
+114,2,117,110,116,2,105,109,101,239,22,9,224,57,31,2,47,101,118,2,
+97,108,45,230,66,1,239,82,21,2,46,99,32,168,92,224,209,11,33,87,
+2,32,45,108,2,109,32,45,2,111,32,36,225,38,3,248,192,5,73,92,
+225,123,0,238,14,3,224,11,0,244,23,0,230,72,1,239,54,1,2,55,
+56,53,170,234,227,36,0,64,12,136,146,64,9,162,175,107,150,51,217,34,
+225,2,51,55,52,99,25,51,49,226,77,2,2,97,105,110,224,161,1,74,
+58,205,147,129,210,225,124,1,2,50,51,52,132,24,225,89,1,226,176,1,
+77,194,2,85,32,90,205,233,238,58,13,64,170,128,32,84,31,64,50,148,
+180,225,59,2,2,125,34,32,231,179,7,75,188,240,156,13,176,159,206,140,
+240,177,4,226,70,0,224,24,0,224,48,6,224,51,10,224,57,3,241,0,
+2,224,29,18,224,65,3,140,57,247,249,13,224,45,5,128,41,224,37,8,
+230,124,3,210,194,231,66,0,2,95,54,57,66,48,139,138,2,67,32,80,
+32,16,242,92,5,203,35,163,128,169,5,65,100,2,75,52,32,129,103,224,
+158,6,69,23,2,55,48,50,78,60,131,182,224,29,4,166,68,224,231,6,
+225,2,2,192,40,247,245,2,106,195,51,199,207,251,224,34,2,228,35,1,
+101,164,96,119,231,25,4,2,55,48,53,244,82,9,64,254,65,7,39,251,
+2,52,48,49,115,81,247,75,2,211,177,163,27,75,56,230,174,2,160,98,
+230,175,2,138,111,160,23,2,95,54,55,133,90,225,12,15,232,24,4,225,
+53,2,192,168,230,119,1,231,80,5,192,187,193,23,131,129,2,49,48,54,
+197,205,244,22,15,100,181,96,230,166,116,128,236,160,12,151,105,227,87,12,
+81,179,209,16,241,11,3,229,216,5,64,151,34,14,2,50,32,90,241,108,
+2,132,113,98,106,225,84,0,2,82,32,64,33,65,203,244,176,67,129,27,
+234,246,1,128,236,206,25,152,62,229,107,18,2,65,32,34,227,216,2,192,
+144,152,106,226,173,1,217,2,64,21,243,20,20,88,193,242,132,6,224,250,
+3,228,80,2,2,64,92,49,2,48,38,34,193,97,96,89,224,79,10,67,
+53,236,48,10,186,154,234,193,0,129,41,246,106,1,33,161,67,118,87,190,
+210,229,96,4,120,71,227,124,0,192,88,2,80,32,90,224,1,0,192,19,
+133,6,192,13,65,78,32,15,2,52,32,90,192,18,32,13,2,51,32,90,
+224,48,2,211,43,225,194,5,224,88,9,251,34,9,66,214,153,55,154,76,
+55,123,230,18,0,2,55,53,32,32,4,97,129,231,49,19,2,78,111,32,
+46,40,2,105,110,105,104,224,2,102,111,117,2,110,100,32,56,98,233,187,
+0,141,167,100,135,132,3,70,79,147,203,218,152,2,54,57,32,102,190,67,
+68,64,29,147,171,2,75,32,66,33,98,133,155,114,228,234,242,1,249,234,
+0,64,65,65,110,96,187,32,7,250,103,10,196,3,228,26,1,188,150,33,
+182,225,28,0,97,173,250,124,6,128,19,131,107,224,99,32,230,80,5,248,
+62,1,175,201,33,204,225,144,3,224,112,4,96,111,192,116,228,130,0,99,
+243,119,33,241,36,4,195,5,52,235,225,156,19,2,35,105,110,2,99,108,
+117,2,100,101,32,2,92,51,52,162,241,232,201,1,226,236,3,64,17,231,
+167,3,32,147,224,80,12,45,39,2,102,102,105,2,46,104,34,240,20,0,
+72,70,225,119,25,172,110,225,30,9,67,60,252,4,22,129,19,225,25,1,
+226,198,1,160,200,117,240,2,55,57,57,229,99,0,224,24,4,2,56,48,
+48,235,166,4,2,79,32,95,224,217,11,57,78,2,116,105,99,2,32,115,
+116,2,114,117,99,2,116,32,102,2,102,105,95,2,101,110,116,2,114,121,
+32,2,116,97,98,2,108,101,91,2,93,32,61,2,32,123,34,227,204,0,
+240,138,5,96,103,101,202,102,143,2,51,48,49,228,134,7,224,32,1,69,
+49,160,32,2,79,32,102,224,125,0,2,123,32,48,2,44,48,32,104,233,
+224,22,3,2,125,59,34,224,17,6,224,159,8,2,42,120,102,32,11,96,
+165,32,163,96,7,96,52,228,186,4,151,102,244,166,2,2,110,105,109,2,
+112,108,101,2,109,101,110,2,116,101,100,2,32,70,70,2,73,32,102,56,
+199,2,117,114,101,225,215,1,2,56,48,52,226,235,32,233,112,5,225,222,
+3,65,202,98,251,226,6,4,217,161,177,7,136,86,195,42,161,249,230,129,
+2,65,250,227,29,4,224,159,93,224,37,12,242,236,4,230,2,0,99,84,
+2,57,50,32,46,49,132,203,2,56,48,53,246,176,1,224,213,13,224,215,
+10,227,70,24,195,37,128,30,224,5,0,32,83,32,52,164,87,228,94,0,
+232,172,6,196,250,64,173,2,61,61,32,2,64,35,57,224,38,1,170,66,
+224,169,4,234,112,0,96,19,2,56,48,57,66,185,70,20,2,55,53,51,
+228,170,5,224,11,0,69,188,223,242,159,155,161,229,177,179,221,153,129,58,
+233,158,1,216,7,97,61,227,157,12,2,100,121,110,2,97,109,105,209,160,
+64,85,87,252,2,56,48,54,32,16,229,79,3,224,87,39,2,119,114,97,
+2,112,112,101,2,114,34,32,224,87,6,70,246,224,87,1,225,58,1,224,
+79,23,132,69,237,222,2,97,25,159,238,98,59,225,4,3,236,35,1,77,
+224,242,199,22,165,114,64,43,164,252,2,56,48,56,123,151,170,253,128,184,
+64,68,206,70,190,174,255,20,8,227,18,2,235,139,0,249,140,1,224,220,
+7,70,29,233,90,0,193,100,161,16,226,92,0,244,215,4,193,38,153,214,
+149,73,253,181,7,224,148,0,131,87,225,97,1,96,85,190,69,249,249,3,
+225,141,2,224,35,4,224,15,1,186,177,236,4,7,169,177,96,17,66,206,
+225,214,3,236,6,1,232,250,2,232,238,20,2,98,97,100,72,222,2,101,
+105,103,2,110,32,105,2,109,112,111,2,114,116,32,242,164,18,35,16,67,
+55,99,16,228,93,4,228,104,3,32,8,100,20,64,44,154,184,111,4,64,
+14,154,171,106,12,64,14,154,126,230,14,3,2,71,69,84,2,82,65,87,
+230,36,7,32,21,2,84,73,77,2,69,77,73,2,76,76,73,224,27,7,
+2,97,99,111,114,44,224,19,4,2,100,100,95,90,74,224,23,11,2,117,
+116,102,2,56,34,32,224,23,6,2,115,105,110,224,19,8,2,116,97,110,
+224,19,11,2,50,34,32,224,20,5,2,99,97,108,2,108,111,99,224,21,
+8,2,108,111,115,2,101,98,34,224,21,7,224,171,9,2,101,120,112,224,
+18,7,2,102,108,117,2,115,104,98,224,21,8,2,111,112,101,224,145,8,
+2,102,114,101,102,227,224,19,3,2,103,101,116,224,60,8,32,19,2,101,
+110,118,224,21,7,2,105,115,119,2,105,110,100,2,111,119,115,224,24,7,
+2,108,111,103,224,18,8,2,122,55,55,224,229,8,2,109,97,108,224,251,
+10,2,109,100,53,2,65,114,114,2,97,121,34,224,23,9,2,66,70,73,
+225,150,9,32,23,2,83,116,114,58,212,224,24,8,2,101,109,99,2,112,
+121,34,224,21,9,2,109,111,118,224,246,8,2,112,117,116,224,246,8,225,
+215,10,2,115,113,114,2,116,34,32,224,19,6,2,121,115,116,2,101,109,
+34,224,21,6,226,0,10,2,116,109,112,37,183,224,122,8,2,117,110,103,
+225,115,10,2,117,110,108,2,105,110,107,224,166,8,2,101,101,107,2,80,
+116,114,224,22,8,2,111,107,101,224,22,14,2,87,111,114,2,100,34,32,
+224,69,9,224,23,11,66,225,65,169,2,95,99,111,2,109,112,114,2,101,
+115,115,2,111,114,34,224,34,15,2,100,101,99,224,36,16,64,95,2,95,
+117,105,2,110,116,56,224,145,11,224,25,14,192,51,2,49,54,34,224,52,
+15,224,26,10,192,53,2,51,50,34,224,53,15,224,26,10,192,53,2,54,
+52,34,224,53,15,224,26,10,64,53,224,212,16,224,211,16,224,210,17,224,
+209,17,224,208,17,224,207,17,224,206,17,224,205,17,36,41,37,179,225,3,
+13,224,26,13,64,53,224,52,17,224,51,17,65,82,225,107,16,224,207,15,
+224,205,15,224,97,13,2,108,111,110,228,3,8,128,98,224,25,12,64,51,
+224,50,16,224,49,16,2,117,108,108,224,102,17,224,103,17,224,104,17,224,
+51,16,2,102,108,116,224,49,12,224,23,10,2,115,105,122,2,101,111,102,
+225,25,11,160,25,224,100,11,192,26,224,27,11,70,44,2,100,105,114,230,
+150,12,224,23,10,2,114,101,97,2,100,100,105,224,46,9,2,95,100,95,
+228,240,11,2,99,104,100,224,44,9,2,109,107,100,128,20,237,170,5,224,
+0,62,72,47,41,32,40,47,110,121,78,129,2,50,51,56,116,106,106,40,
+2,51,32,95,2,56,53,48,234,208,3,238,152,0,32,24,32,35,96,29,
+2,54,51,32,49,183,127,242,206,214,64,88,41,38,104,211,55,134,143,196,
+44,52,105,141,234,212,3,192,11,236,80,0,176,88,114,175,233,184,2,182,
+136,81,95,186,217,64,98,152,114,233,138,19,2,123,32,92,48,213,176,214,
+54,13,249,220,24,64,46,2,44,32,109,2,104,115,95,33,188,2,114,95,
+34,241,15,4,239,116,2,2,44,34,32,225,66,0,242,169,0,224,134,22,
+224,133,43,224,128,28,147,12,89,122,235,101,1,89,234,42,26,224,99,17,
+224,223,2,109,7,64,99,2,55,57,52,220,196,250,54,2,78,13,64,181,
+2,55,57,54,96,5,64,31,224,17,5,125,3,244,35,18,174,14,233,120,
+3,139,30,2,38,32,109,2,117,115,116,2,32,98,101,2,32,80,116,2,
+114,47,70,2,117,110,80,135,175,74,238,224,181,12,2,40,72,115,128,37,
+2,41,34,32,213,30,224,40,2,130,52,96,5,245,174,10,236,163,4,64,
+183,66,235,65,64,142,144,2,85,32,66,129,5,98,204,236,110,0,240,13,
+0,129,90,179,169,191,88,124,243,150,221,142,193,216,76,123,107,180,180,65,
+85,178,177,188,218,225,150,17,2,59,32,109,33,246,64,15,2,95,85,110,
+2,105,116,40,2,115,44,32,162,3,246,177,11,32,212,2,52,49,32,224,
+212,1,252,193,19,64,43,251,73,0,224,77,0,65,174,33,209,224,139,12,
+224,122,0,2,32,95,53,67,238,32,201,124,61,2,53,53,55,32,17,2,
+54,49,32,248,147,8,204,212,224,151,6,32,28,100,31,161,114,33,115,115,
+138,33,115,226,71,5,65,71,246,107,19,162,71,225,63,19,194,89,2,114,
+101,116,2,117,114,110,2,32,116,121,2,112,101,32,194,99,2,73,79,58,
+237,137,0,245,82,2,64,141,141,84,252,228,6,2,80,114,105,2,109,105,
+116,2,105,118,101,2,115,46,73,2,79,34,32,128,183,141,111,113,15,142,
+203,241,44,0,67,5,207,89,192,31,242,6,0,224,41,4,65,38,239,131,
+0,209,92,209,7,98,97,239,105,0,2,56,52,32,224,43,1,239,201,1,
+128,139,141,236,254,232,21,66,78,2,116,111,95,240,190,2,244,148,1,2,
+55,57,51,226,142,22,226,127,36,64,146,134,79,182,153,224,148,20,98,227,
+240,177,0,246,183,5,192,154,255,196,22,224,157,1,224,216,6,250,206,2,
+224,63,19,226,224,2,96,56,227,78,7,64,208,134,199,69,31,152,19,112,
+49,163,233,2,67,32,60,161,247,249,221,0,226,13,4,194,6,47,200,96,
+9,224,36,8,165,106,32,26,208,139,133,136,225,250,3,133,112,160,32,148,
+71,224,30,5,96,105,224,212,1,229,69,3,226,203,2,192,18,208,254,224,
+115,0,113,95,2,95,56,52,35,95,167,227,2,50,57,53,129,130,124,241,
+179,184,227,151,54,2,78,111,116,2,32,97,32,2,118,97,108,2,105,100,
+32,2,67,32,116,35,150,227,139,8,65,109,135,210,183,132,230,3,14,227,
+150,2,2,70,108,111,2,97,116,87,96,71,224,42,12,224,31,2,33,220,
+224,79,25,2,73,110,116,224,76,17,192,28,224,73,28,206,73,224,74,13,
+224,29,0,224,75,17,2,68,97,116,2,97,46,87,32,39,96,4,109,69,
+224,75,17,128,30,224,152,28,2,40,41,34,224,74,16,70,113,224,73,22,
+2,83,121,115,47,215,37,15,2,46,72,97,2,110,100,108,152,13,224,115,
+13,194,113,231,114,2,35,77,150,49,226,40,17,2,70,111,114,69,192,2,
+46,67,46,2,84,121,112,32,175,128,67,66,132,249,149,14,2,67,67,104,
+2,97,114,34,153,45,224,32,13,2,83,67,104,224,33,22,2,85,67,104,
+224,67,23,205,196,224,67,17,224,34,25,194,65,224,66,16,224,32,23,2,
+76,111,110,108,150,224,65,17,224,33,24,33,150,2,100,105,102,2,102,34,
+32,224,236,19,45,5,224,32,21,224,33,24,2,76,76,111,224,170,24,224,
+34,0,236,221,9,68,11,139,87,231,147,17,228,232,1,64,45,139,4,224,
+45,17,224,42,2,201,238,231,147,10,118,31,32,25,229,100,7,2,56,56,
+32,160,150,73,212,224,104,20,131,96,64,41,136,84,230,194,21,2,118,111,
+105,2,100,32,109,235,233,0,233,193,20,230,248,2,46,213,2,32,115,41,
+2,32,123,32,236,32,15,2,59,32,125,236,33,0,106,160,233,108,0,2,
+48,51,54,2,32,64,80,237,142,0,129,6,32,108,2,57,48,52,67,151,
+101,139,203,4,96,60,136,101,102,38,170,216,95,141,32,6,38,6,133,244,
+96,9,173,186,2,35,49,50,64,22,64,65,197,213,2,56,53,32,255,203,
+3,2,55,55,51,172,47,42,119,2,50,51,32,96,44,70,77,75,128,32,
+36,160,21,64,20,128,46,64,109,2,50,48,57,219,92,174,50,192,60,193,
+51,2,55,56,48,119,164,174,86,224,74,3,78,174,192,73,238,129,2,224,
+66,1,129,163,2,55,56,50,171,168,87,108,64,15,224,95,1,168,156,2,
+49,50,32,160,81,95,231,232,118,1,224,23,6,32,16,224,157,0,226,208,
+0,65,15,66,57,2,56,50,49,2,32,58,49,96,92,98,134,64,104,34,
+189,64,18,130,242,80,233,2,67,65,83,117,191,2,76,101,110,96,44,130,
+222,2,94,108,122,54,50,96,16,130,196,2,95,55,50,47,41,2,95,55,
+56,112,35,128,7,32,96,224,236,0,39,215,224,11,2,89,249,160,11,107,
+243,128,11,65,137,162,111,2,55,55,55,65,67,64,21,32,14,72,5,96,
+11,224,230,0,2,55,55,56,192,19,128,5,32,137,64,67,64,154,181,110,
+64,156,64,37,96,18,149,152,96,18,130,130,238,158,0,225,250,3,66,135,
+253,119,0,225,75,2,129,139,32,183,141,71,225,82,0,64,78,202,250,2,
+95,52,48,122,77,97,252,65,37,96,29,208,213,2,55,32,58,130,90,99,
+177,2,51,32,58,130,124,226,140,1,2,54,49,57,235,1,1,255,246,21,
+2,117,110,115,38,151,63,11,2,99,104,97,2,114,32,100,39,158,255,242,
+7,96,189,195,186,81,77,32,109,130,13,2,55,55,49,2,32,35,50,169,
+237,255,189,9,224,20,6,224,105,5,2,42,99,111,2,109,98,101,2,120,
+112,114,32,108,64,117,128,49,33,44,58,248,228,35,19,68,34,192,58,2,
+108,101,110,32,61,235,200,6,64,60,235,40,1,173,163,43,2,2,53,57,
+32,239,72,3,161,112,208,229,177,207,2,83,32,85,228,66,0,254,119,4,
+128,7,130,48,241,217,0,177,206,241,205,5,2,95,53,56,174,47,64,95,
+165,191,2,54,49,56,240,121,1,224,161,7,2,52,55,32,140,115,32,27,
+96,80,64,56,197,205,2,75,51,32,2,75,52,32,32,2,2,90,32,90,
+32,1,235,196,3,68,175,128,35,192,29,224,1,5,230,127,5,64,48,130,
+192,32,48,2,50,32,90,224,1,14,230,180,7,64,54,206,28,64,1,33,
+40,219,200,225,46,6,252,231,5,176,93,252,251,5,144,100,192,63,128,11,
+77,253,227,141,0,165,168,32,33,193,44,160,130,131,24,133,38,228,224,1,
+69,180,33,97,229,95,4,2,50,49,50,226,116,2,2,67,67,34,255,236,
+1,224,37,16,2,77,72,83,2,67,79,78,2,70,34,32,224,199,2,254,
+41,0,128,201,229,161,0,253,246,0,224,8,4,64,137,126,193,2,55,54,
+51,229,93,4,229,96,6,236,111,2,2,50,54,55,76,155,164,170,2,49,
+52,49,66,38,108,168,65,252,205,68,99,207,2,50,51,50,128,101,2,51,
+57,49,64,59,227,86,3,2,67,111,117,2,108,100,32,2,110,111,116,2,
+32,102,105,2,110,100,34,227,69,1,160,139,251,198,4,2,110,32,102,2,
+105,108,101,245,122,7,206,215,229,221,1,230,27,2,2,55,54,52,224,65,
+2,2,100,101,102,2,97,117,108,172,78,2,50,48,52,227,164,13,2,99,
+99,34,254,178,0,96,37,224,103,3,144,23,225,33,4,64,105,229,36,6,
+254,162,2,225,43,30,225,44,8,235,140,18,2,117,110,100,2,32,116,97,
+2,114,103,101,2,116,58,32,254,197,9,2,55,53,56,108,40,254,210,1,
+254,222,7,225,56,4,225,60,7,225,62,2,159,136,232,97,1,147,39,192,
+168,225,62,26,99,19,2,48,57,55,64,96,86,213,70,250,206,210,224,59,
+22,168,18,255,233,1,161,136,224,83,42,2,111,110,102,239,102,3,236,231,
+18,2,117,110,105,2,120,45,34,131,155,228,227,0,2,95,55,55,229,114,
+1,2,54,53,32,196,77,67,94,40,147,64,20,134,204,100,153,132,238,32,
+2,165,80,64,30,198,221,247,118,2,210,145,210,142,227,181,1,183,133,100,
+68,146,122,247,236,4,201,24,105,181,146,121,33,154,69,124,192,109,134,20,
+229,236,1,231,213,2,104,30,228,28,1,128,126,2,95,50,52,163,173,224,
+45,6,96,22,132,57,128,45,132,75,66,9,64,25,225,158,0,226,247,1,
+226,195,4,225,102,17,2,67,97,110,2,39,116,32,89,139,210,41,192,149,
+227,67,54,224,121,0,162,206,229,221,1,232,199,9,227,162,83,2,82,101,
+97,195,161,2,115,32,102,36,179,2,46,32,80,2,111,115,115,2,105,98,
+108,2,101,32,116,128,22,195,185,231,78,0,99,162,227,167,3,2,89,32,
+66,34,42,68,233,244,179,3,167,202,230,107,1,226,212,0,227,194,3,225,
+1,9,236,141,9,2,47,116,97,96,137,2,46,99,111,163,32,66,61,135,
+242,178,133,129,147,98,106,2,52,48,48,100,91,108,129,96,181,2,52,56,
+51,178,251,2,51,52,54,179,92,211,97,96,51,2,51,53,57,130,72,54,
+154,121,100,76,235,132,81,80,109,2,51,53,56,32,22,199,179,224,51,4,
+225,91,19,2,65,109,98,2,105,103,117,2,111,117,115,2,58,34,32,160,
+56,106,48,169,221,229,7,3,163,47,160,217,171,156,77,10,179,105,198,37,
+2,53,49,55,131,102,225,246,0,2,35,49,48,233,68,0,123,120,2,51,
+53,32,224,130,1,2,84,97,114,33,56,231,154,2,192,34,88,207,34,27,
+166,157,162,97,68,66,2,49,50,52,225,221,4,2,35,49,49,161,40,224,
+57,11,224,46,3,229,205,24,160,74,161,246,2,50,53,32,192,249,32,12,
+108,91,96,12,33,0,64,7,117,53,99,8,78,16,2,90,32,66,149,11,
+96,167,65,5,2,95,54,53,237,209,1,168,247,64,192,131,21,32,149,170,
+53,199,223,224,192,4,234,1,0,224,46,4,69,7,248,131,0,130,238,32,
+99,103,155,66,0,146,122,128,85,234,133,0,128,38,32,29,224,38,21,64,
+212,234,20,0,128,196,140,59,204,209,40,71,249,84,4,74,208,66,202,64,
+228,225,206,1,2,58,92,49,2,48,38,34,231,213,1,235,196,23,2,32,
+32,102,71,130,227,193,2,125,161,162,128,2,52,56,53,225,3,0,224,72,
+24,44,7,2,101,99,116,2,101,100,58,224,75,1,105,36,32,253,34,135,
+229,242,0,235,243,2,67,75,98,198,2,52,56,57,98,5,77,99,224,12,
+5,2,55,52,49,65,54,2,52,50,32,99,124,151,186,2,52,57,32,133,
+212,195,147,32,165,64,78,138,154,69,246,2,49,52,57,167,66,98,54,64,
+62,176,136,247,63,1,175,71,43,187,38,124,32,74,192,39,224,211,1,63,
+169,128,202,43,91,2,50,54,54,224,149,1,155,144,128,195,174,10,32,60,
+62,167,224,182,1,96,169,224,202,6,97,88,224,181,1,33,63,64,64,174,
+61,2,49,53,53,111,86,32,5,192,37,64,29,182,176,224,211,2,2,55,
+52,54,206,225,224,18,0,99,64,67,2,224,21,5,67,77,233,19,0,128,
+22,103,231,192,187,179,1,33,38,225,101,0,242,57,2,2,97,108,117,106,
+160,225,56,7,250,48,1,66,170,250,51,1,64,81,173,101,32,243,113,90,
+64,81,35,77,68,135,130,237,243,18,17,40,111,248,124,2,233,1,6,224,
+67,2,224,50,0,195,223,128,120,165,17,101,223,2,49,48,49,96,55,224,
+212,0,118,65,224,145,1,255,8,2,2,57,50,38,2,110,34,32,224,153,
+8,112,230,224,153,0,228,74,0,96,106,65,153,226,181,8,2,50,55,55,
+225,233,3,152,223,174,85,2,55,52,55,97,203,65,255,225,28,10,88,147,
+225,28,10,106,14,224,130,1,225,27,1,2,49,51,50,32,30,122,190,225,
+9,11,64,108,225,212,17,2,107,101,121,224,238,10,252,47,2,97,136,225,
+211,4,64,197,224,182,11,225,211,13,224,182,23,130,61,224,182,10,131,71,
+2,80,32,58,131,60,207,78,69,30,64,18,217,184,2,53,48,55,32,36,
+70,69,2,52,48,50,232,19,0,147,79,32,84,64,42,208,73,242,11,0,
+2,49,51,32,161,155,67,187,99,9,136,78,136,117,243,126,3,34,57,66,
+43,34,58,173,50,225,215,1,160,167,232,84,0,234,94,0,72,53,99,181,
+2,50,52,55,244,120,7,2,51,56,48,96,105,242,90,2,74,138,224,65,
+9,2,50,52,54,224,65,0,117,60,200,243,97,42,234,78,5,32,38,99,
+30,192,35,161,71,32,91,75,20,166,66,240,86,15,240,88,9,96,56,130,
+155,65,174,2,80,32,67,32,109,132,99,156,238,2,51,48,54,133,43,53,
+125,106,47,232,14,4,2,55,51,55,160,161,224,14,1,230,39,7,67,191,
+231,81,1,38,4,32,202,115,76,105,73,156,248,105,79,252,248,4,96,214,
+252,184,0,224,25,3,189,121,32,60,253,40,4,65,165,85,228,103,200,96,
+173,171,30,224,207,5,32,163,131,61,224,208,1,241,52,3,226,203,0,96,
+101,66,223,224,62,28,2,85,32,83,128,144,235,114,3,114,244,101,50,103,
+254,129,27,2,55,48,51,220,206,96,17,64,176,34,21,32,4,64,55,34,
+191,227,175,1,192,9,233,160,0,96,36,160,58,160,140,138,198,221,68,225,
+70,9,193,3,224,220,5,96,21,100,220,129,136,224,34,10,96,23,224,34,
+4,225,75,9,2,53,56,55,225,11,7,66,78,164,132,83,109,64,162,135,
+160,64,169,137,181,68,21,40,238,33,41,98,60,2,95,50,53,2,50,32,
+35,2,49,50,55,193,214,96,32,35,11,170,193,47,47,68,143,224,23,8,
+2,54,53,53,96,253,64,22,224,24,4,93,242,67,47,113,26,2,49,32,
+102,239,21,1,2,116,102,56,91,139,2,58,32,98,44,214,251,149,0,226,
+75,2,32,2,136,234,64,147,131,120,100,247,119,171,170,49,174,101,174,117,
+224,48,21,106,51,106,0,248,26,0,224,46,32,224,43,34,131,90,128,34,
+68,178,120,206,160,174,112,236,224,27,21,224,26,4,160,20,175,38,225,16,
+28,75,31,224,222,88,224,193,47,224,190,24,2,49,57,50,246,243,4,224,
+143,31,224,115,12,182,70,32,29,32,76,64,39,66,249,209,106,2,80,32,
+35,135,26,96,21,134,231,218,216,117,100,235,227,0,99,59,66,241,148,168,
+32,117,231,73,4,35,192,64,46,224,28,15,96,208,224,28,3,67,27,163,
+109,131,167,206,35,192,20,43,165,164,6,192,183,251,113,0,96,76,247,52,
+24,70,66,197,224,64,14,247,67,2,69,47,139,36,39,88,64,15,241,215,
+3,231,5,4,73,199,39,77,165,31,240,230,5,64,31,77,234,188,1,130,
+108,224,61,0,64,150,68,81,105,141,77,150,69,27,129,172,241,48,10,96,
+139,104,16,103,75,160,166,202,189,2,55,50,57,96,166,135,169,2,73,79,
+46,2,115,101,114,2,105,97,108,62,147,64,22,32,28,122,125,2,97,100,
+100,2,95,108,122,2,55,55,95,57,5,2,112,114,101,2,115,115,111,122,
+137,64,115,160,69,2,54,32,58,32,5,133,11,2,114,110,102,36,226,97,
+247,65,105,248,82,2,231,157,17,64,43,252,219,0,224,190,0,113,180,228,
+210,1,2,87,101,108,32,128,49,140,2,111,32,105,2,110,116,101,2,114,
+97,99,94,39,2,32,77,105,2,99,114,111,2,72,115,33,228,223,0,232,
+150,4,72,40,177,18,252,164,5,114,20,57,140,64,190,133,244,135,128,49,
+24,106,78,2,48,56,32,97,89,157,46,75,254,232,169,0,205,21,73,15,
+32,30,64,65,96,23,88,50,200,164,64,209,219,46,33,170,2,75,32,85,
+245,184,0,82,13,245,200,3,224,1,9,120,4,245,244,12,224,41,22,224,
+38,29,224,35,26,224,32,23,224,29,20,224,26,17,224,23,14,224,20,11,
+224,17,8,65,102,232,131,0,226,55,2,213,168,225,80,35,225,125,255,225,
+125,33,224,14,5,224,11,2,247,85,2,225,154,8,207,118,99,208,140,32,
+2,54,55,51,107,209,224,17,0,99,135,69,120,227,237,6,2,84,121,112,
+2,101,32,39,2,58,113,117,2,105,116,39,67,242,64,8,2,44,32,39,
+2,58,104,101,2,108,112,39,49,204,2,114,32,104,32,9,217,73,224,79,
+6,118,24,94,218,64,112,70,62,224,102,16,2,87,65,82,2,78,73,78,
+2,71,58,32,2,67,111,109,2,112,105,108,62,43,2,119,105,116,2,104,
+32,71,2,72,67,44,2,32,115,111,2,32,108,105,2,109,105,116,32,20,
+2,102,117,110,36,109,2,111,110,97,2,108,105,116,2,121,46,34,226,145,
+1,105,31,64,235,165,82,68,100,96,135,2,51,48,50,120,50,191,147,224,
+24,0,246,144,0,134,108,139,71,2,54,56,53,139,29,249,213,3,32,22,
+96,35,224,172,1,2,46,109,104,2,115,105,34,64,27,224,19,1,2,62,
+32,34,96,141,77,75,96,142,157,33,128,153,253,10,1,238,157,5,117,197,
+237,108,2,96,152,68,236,139,182,128,213,224,181,4,32,21,80,170,32,101,
+225,73,15,2,66,121,101,193,141,160,64,194,6,174,7,107,11,78,187,128,
+227,97,37,133,44,154,176,157,217,226,24,24,2,85,110,114,2,101,99,111,
+2,103,110,105,2,122,101,100,95,151,2,109,97,110,156,131,224,87,9,249,
+172,4,197,122,135,140,155,38,158,16,117,80,147,195,32,0,70,155,225,25,
+6,225,178,4,248,80,32,246,244,0,192,165,244,48,9,84,124,2,51,48,
+49,248,0,4,224,191,4,236,137,0,71,74,206,122,2,53,57,49,200,255,
+160,61,65,157,97,210,33,110,65,166,33,110,2,79,32,80,224,150,13,67,
+72,189,76,32,198,115,170,224,118,0,143,132,72,214,224,60,14,2,99,108,
+101,172,73,224,61,2,227,221,2,2,57,54,32,32,20,199,62,227,152,8,
+2,51,48,56,128,198,103,55,2,51,52,50,231,54,0,231,75,0,2,54,
+54,56,231,75,1,167,126,32,59,97,15,225,32,11,224,170,16,2,114,101,
+108,2,111,97,100,224,171,5,227,157,5,2,51,53,49,129,194,224,22,6,
+81,131,250,220,0,227,1,0,232,54,2,139,69,40,92,64,228,226,43,13,
+96,233,224,213,0,224,233,3,225,21,5,229,16,0,225,249,11,224,219,16,
+2,100,101,108,2,101,116,101,223,121,224,126,6,97,133,164,77,151,90,238,
+203,1,98,71,128,26,141,219,226,76,3,147,27,224,163,0,224,145,6,224,
+140,16,2,116,121,112,224,138,12,66,148,146,185,224,73,31,2,107,105,110,
+129,176,224,73,10,228,55,11,224,73,17,230,27,0,105,184,228,83,14,64,
+86,105,202,225,126,10,234,157,0,67,81,138,232,253,11,2,131,207,2,115,
+58,92,56,132,102,162,2,32,32,32,32,0,96,9,170,143,96,26,130,131,
+64,26,160,9,2,109,111,100,2,117,108,101,128,28,99,75,96,55,128,9,
+2,97,108,108,2,32,100,101,2,102,105,110,2,105,116,105,2,111,110,115,
+96,35,129,232,2,32,100,32,32,25,128,9,224,32,0,2,40,115,41,2,
+32,100,92,64,36,65,128,2,32,101,32,32,0,2,115,104,111,2,119,32,
+116,64,14,2,111,102,32,2,101,92,49,32,28,65,83,2,32,116,32,224,
+28,7,2,116,92,49,32,28,65,38,128,186,2,116,104,105,2,115,32,116,
+2,101,120,116,64,23,56,225,128,152,56,236,87,29,2,97,116,101,88,245,
+75,250,32,120,64,33,32,134,2,110,32,32,96,0,44,29,39,159,2,112,
+32,108,2,101,118,101,224,192,3,185,160,65,63,140,24,227,104,10,198,103,
+227,104,10,34,137,190,176,173,142,229,107,10,45,125,77,6,215,45,2,55,
+49,52,167,10,227,168,4,64,74,64,7,34,10,227,232,11,229,220,21,117,
+59,109,69,85,127,32,50,100,221,53,104,232,233,4,66,157,173,231,64,29,
+32,97,70,69,102,111,224,4,13,224,103,0,101,38,2,66,32,89,128,20,
+2,80,32,79,146,131,221,95,230,189,4,236,60,9,38,183,224,13,0,96,
+25,241,218,0,103,246,32,26,85,238,76,213,152,109,2,56,52,32,176,189,
+254,139,8,224,204,2,237,137,1,230,218,15,98,69,255,11,1,96,38,129,
+20,251,58,20,2,61,32,34,254,215,4,225,191,4,96,122,141,50,234,5,
+5,2,95,105,116,162,71,203,234,226,71,86,2,54,57,57,226,71,83,71,
+249,130,71,2,54,57,56,226,71,6,240,47,1,226,71,2,192,1,226,59,
+55,226,45,72,64,177,184,38,64,35,2,51,48,53,71,84,101,177,117,72,
+2,73,32,64,64,34,137,255,37,169,2,52,49,48,32,92,96,5,32,23,
+71,218,108,30,226,47,15,133,44,130,51,128,37,2,51,52,57,247,115,9,
+224,48,1,2,40,109,111,224,49,12,224,33,1,2,41,32,119,2,104,101,
+114,101,25,2,105,109,112,2,111,114,116,2,32,80,114,2,101,108,117,2,
+100,101,92,224,17,1,2,83,121,115,2,116,101,109,2,46,73,79,2,46,
+80,114,48,104,2,79,114,82,2,117,110,92,132,243,2,97,117,108,2,116,
+32,40,2,73,110,116,2,101,103,101,2,114,44,32,2,68,111,117,2,98,
+108,101,2,44,32,83,2,116,114,105,2,110,103,44,2,32,40,41,2,41,
+92,49,222,150,96,226,134,57,226,177,15,193,124,97,208,43,184,66,17,57,
+194,2,54,48,57,137,76,210,248,235,133,2,98,205,65,236,226,154,12,157,
+26,136,0,72,240,237,225,0,33,238,163,30,114,253,154,49,160,110,2,56,
+51,50,128,11,184,222,229,140,62,170,214,224,169,14,64,32,168,105,231,147,
+0,32,26,128,51,224,103,2,228,42,16,76,170,97,90,237,92,17,75,103,
+2,54,48,32,32,4,97,72,34,127,82,13,237,97,2,224,47,6,72,75,
+96,157,250,217,5,224,66,1,224,32,0,242,14,12,165,12,63,103,152,182,
+35,13,64,49,131,234,226,189,16,32,216,84,95,96,216,64,52,237,57,3,
+65,33,115,63,146,154,250,33,0,2,32,73,32,129,152,35,250,163,207,32,
+143,89,129,193,192,224,24,1,2,80,32,75,239,178,4,99,232,64,13,44,
+249,183,213,137,109,195,236,64,18,64,54,217,184,2,48,52,32,240,190,5,
+149,109,150,63,64,28,193,67,97,240,230,53,20,2,114,97,110,2,115,108,
+97,2,116,101,58,2,32,110,111,2,116,32,102,2,111,117,110,2,100,32,
+34,130,4,155,122,188,139,62,111,193,1,198,139,32,208,128,169,57,246,164,
+183,80,117,128,19,187,28,141,219,32,185,196,209,193,142,68,136,67,27,181,
+236,133,9,131,124,64,78,64,17,251,143,9,224,32,19,129,241,165,62,224,
+32,11,128,192,161,93,250,106,3,192,24,32,129,131,149,189,186,251,23,15,
+2,100,121,110,2,115,121,109,251,21,6,2,95,56,54,128,71,250,205,12,
+96,156,59,164,225,166,19,225,164,22,65,160,2,32,112,114,2,105,109,111,
+2,112,32,34,160,105,33,152,2,56,52,53,32,64,108,82,66,24,243,141,
+0,224,231,10,129,66,96,231,96,226,252,12,0,226,162,0,65,190,225,55,
+8,227,255,0,253,12,11,216,187,224,105,5,96,21,80,58,193,19,224,116,
+2,2,56,50,54,128,19,224,31,3,226,176,38,2,58,32,105,38,23,42,
+249,37,234,207,193,152,24,2,54,50,49,228,142,1,181,236,32,87,127,195,
+143,219,77,129,97,176,78,127,76,70,217,51,96,50,136,206,236,195,6,94,
+65,196,15,67,171,224,30,9,2,55,57,32,128,30,56,190,224,30,11,33,
+122,96,30,64,4,237,32,16,2,67,39,34,161,77,224,67,11,51,63,217,
+249,224,30,12,192,98,90,41,224,98,16,2,83,39,34,166,228,224,67,11,
+69,174,96,67,68,105,224,197,10,32,6,96,30,67,186,224,61,10,192,30,
+67,125,224,30,10,192,160,67,232,224,30,10,193,65,69,38,224,191,16,2,
+66,39,34,169,20,224,67,11,2,57,48,32,128,67,73,73,224,98,10,102,
+37,32,30,2,82,32,64,224,98,17,2,75,50,34,97,169,66,195,224,36,
+17,2,51,34,32,64,36,67,62,224,36,17,2,52,34,32,64,36,69,172,
+225,244,18,2,66,34,32,165,38,224,180,11,66,184,96,180,2,43,32,64,
+224,30,11,193,85,2,45,32,64,224,30,11,192,242,2,42,32,64,224,131,
+17,2,113,117,111,146,126,64,8,224,40,19,2,114,101,109,96,39,32,7,
+224,38,19,2,117,113,117,160,80,96,9,224,42,20,192,82,64,8,224,40,
+19,2,110,101,103,96,39,32,7,224,38,19,212,120,32,7,224,38,19,2,
+111,114,34,64,37,54,177,224,36,18,2,120,111,114,96,37,32,7,224,38,
+19,2,105,110,118,96,38,32,7,224,38,19,2,115,104,108,96,38,32,7,
+224,38,21,128,116,32,7,224,231,20,192,39,64,8,224,79,20,2,117,98,
+116,91,150,128,84,160,12,224,48,19,2,61,61,34,64,42,69,199,224,36,
+17,2,47,61,34,64,36,2,47,61,32,228,139,12,195,135,38,33,224,67,
+17,2,60,61,34,96,35,224,67,14,194,185,2,62,32,64,224,67,17,2,
+62,61,34,96,35,224,172,20,2,117,60,34,98,97,224,141,20,2,117,60,
+61,160,37,224,75,21,2,62,34,32,64,37,224,149,20,2,117,62,61,160,
+37,224,75,20,2,111,114,100,162,133,226,171,20,2,99,104,114,96,38,32,
+7,224,38,19,2,102,43,34,120,133,228,39,10,224,36,2,2,45,34,32,
+64,36,228,45,10,224,36,2,2,42,34,32,64,36,228,51,20,2,102,47,
+34,96,36,2,47,32,64,224,36,18,162,76,32,7,224,75,21,160,38,226,
+79,11,224,38,2,129,199,2,102,60,32,224,36,20,160,75,225,199,21,2,
+102,62,34,96,37,225,199,20,2,102,62,61,160,37,224,75,21,196,155,64,
+8,224,40,20,83,238,128,41,115,248,224,42,19,2,114,101,97,130,29,96,
+9,228,127,20,2,116,111,102,132,128,32,8,228,10,20,2,101,113,34,100,
+5,2,101,113,32,224,38,21,2,117,97,108,192,41,32,10,224,44,19,224,
+43,1,224,42,24,2,115,99,109,149,255,64,8,224,208,20,192,40,64,8,
+230,142,20,2,110,102,34,102,142,2,110,102,32,224,38,18,48,53,2,62,
+62,61,96,41,128,10,224,44,24,224,43,1,224,42,22,2,114,101,116,2,
+117,114,110,192,46,128,13,224,50,22,43,194,2,110,116,34,160,49,96,12,
+224,48,22,2,115,101,114,2,105,97,108,59,90,192,52,224,16,0,224,56,
+22,2,100,101,115,224,58,7,224,18,2,224,117,23,2,116,100,105,224,216,
+0,96,12,224,48,25,2,111,117,116,224,49,2,32,13,224,50,25,2,101,
+114,114,224,50,2,32,13,224,50,22,2,103,101,116,2,65,114,103,2,82,
+101,102,192,53,224,16,0,225,118,23,2,101,114,102,2,111,114,109,2,73,
+79,34,193,122,192,16,224,113,23,2,99,34,32,160,106,2,99,32,64,226,
+140,18,2,97,105,115,129,103,96,9,229,209,20,2,97,116,99,2,104,34,
+32,69,211,64,9,224,42,19,238,107,2,128,10,233,35,21,2,119,67,65,
+146,248,2,76,101,110,169,46,224,18,3,224,60,19,2,112,101,101,2,107,
+67,65,128,42,96,58,224,16,3,224,56,31,192,118,224,19,6,224,62,19,
+2,116,111,73,163,15,96,9,224,42,21,2,80,116,114,160,42,32,9,224,
+42,21,2,68,98,108,160,42,32,9,224,191,20,166,164,32,7,224,38,20,
+2,110,117,108,128,81,96,9,224,42,20,135,138,2,112,43,32,224,36,19,
+135,138,2,112,45,32,224,36,18,2,65,46,97,2,108,108,111,130,129,160,
+11,224,46,21,2,115,105,122,130,132,128,10,224,44,21,230,99,0,128,10,
+224,44,21,2,119,114,105,188,222,160,11,224,46,21,161,84,64,8,119,159,
+248,214,9,224,0,70,79,189,215,170,180,160,184,54,217,12,83,199,249,9,
+20,101,141,118,91,246,174,3,152,18,244,236,9,151,101,224,64,1,57,19,
+100,93,64,27,151,94,240,199,0,152,84,249,135,49,2,58,49,54,64,200,
+224,110,7,96,108,96,91,119,179,2,52,56,57,64,87,128,230,2,53,53,
+49,64,120,2,51,48,32,117,224,88,1,64,43,251,246,0,255,16,1,84,
+188,223,232,2,57,53,32,255,19,0,145,174,183,22,64,59,148,249,2,95,
+51,49,2,48,32,75,49,207,2,75,32,66,152,154,118,27,127,87,81,87,
+193,141,96,75,224,151,9,2,54,52,55,96,6,192,144,145,163,212,51,79,
+3,213,21,178,88,113,160,85,207,209,64,64,53,145,166,96,161,64,52,115,
+175,153,64,128,61,2,83,32,85,85,63,82,241,114,184,48,208,32,5,37,
+234,225,94,2,87,98,241,148,0,121,212,2,83,32,67,116,59,48,161,64,
+14,2,67,32,79,225,240,0,32,177,53,203,255,148,0,178,179,249,248,0,
+95,195,32,28,54,178,128,34,2,35,51,54,242,216,0,224,36,0,32,66,
+146,104,181,227,114,143,149,16,97,33,218,152,97,154,97,131,2,95,53,53,
+32,24,2,52,56,48,243,165,4,247,238,0,192,87,82,214,2,50,57,53,
+181,0,150,122,194,255,148,89,128,7,66,22,225,162,1,97,72,131,49,65,
+204,2,90,32,95,32,15,225,236,0,130,221,83,36,96,94,2,51,48,49,
+119,120,2,51,53,32,96,30,226,224,1,2,54,56,56,186,157,64,24,81,
+198,214,28,129,198,2,67,32,83,49,173,64,39,246,204,4,49,194,116,0,
+183,168,128,20,224,29,0,66,125,180,143,224,35,1,96,95,130,236,2,89,
+32,66,183,69,150,116,128,100,251,22,6,64,46,194,239,251,144,0,162,21,
+224,105,0,226,39,0,193,58,150,65,119,146,245,20,3,65,119,2,54,49,
+50,32,45,2,48,57,52,192,64,152,124,224,42,2,128,186,224,54,0,129,
+22,160,35,225,2,0,224,130,1,161,8,192,178,162,202,251,216,2,64,194,
+131,118,117,119,150,151,217,6,87,150,88,167,32,5,226,87,1,249,124,1,
+64,34,96,239,217,20,96,117,249,71,5,66,89,152,61,185,135,64,109,249,
+141,2,64,186,194,201,225,186,1,64,84,92,140,96,67,32,33,215,122,224,
+125,7,163,191,129,202,162,4,93,114,99,143,130,226,193,11,65,202,181,95,
+86,41,248,44,0,224,107,4,194,220,86,65,60,212,65,36,33,147,118,66,
+250,65,4,129,55,216,166,249,140,0,160,70,64,177,35,85,2,50,51,49,
+227,162,4,225,88,1,64,166,160,27,64,10,64,84,64,79,132,169,217,226,
+184,239,224,2,0,128,47,252,61,0,224,8,0,160,24,224,25,11,152,167,
+247,126,3,224,29,5,224,61,2,224,33,2,224,42,3,224,69,6,224,37,
+11,224,2,4,231,133,2,224,113,16,224,85,10,131,101,224,2,23,224,48,
+4,225,31,8,224,178,5,224,143,9,224,49,30,218,85,250,252,3,224,1,
+15,224,94,5,225,27,23,224,151,16,224,57,5,225,9,24,225,6,5,225,
+249,16,224,61,15,224,125,9,224,65,42,224,68,11,225,40,2,225,3,43,
+224,134,9,156,181,224,86,2,224,145,22,224,151,25,224,1,15,95,133,95,
+162,135,90,252,251,5,225,220,41,225,103,17,224,138,40,232,12,2,224,138,
+19,227,61,25,224,138,57,229,165,0,225,177,15,230,161,3,224,96,9,225,
+178,36,224,153,37,232,112,1,226,209,22,225,32,36,224,131,37,135,224,226,
+50,47,227,82,15,224,131,37,135,252,224,65,33,224,114,11,225,119,36,2,
+50,55,32,224,244,29,225,129,16,224,126,52,231,140,0,224,63,15,224,115,
+28,224,112,34,203,37,225,226,31,226,228,19,224,118,34,228,143,9,224,115,
+31,224,118,52,227,240,9,227,75,14,195,240,224,92,8,225,121,21,229,3,
+32,227,223,8,227,220,11,228,117,28,224,129,5,225,7,30,224,126,7,230,
+156,1,166,147,225,19,5,225,13,16,227,228,9,224,124,25,106,122,232,38,
+15,231,31,7,136,183,224,14,15,224,154,1,232,194,11,225,126,18,227,228,
+1,224,73,3,64,38,141,21,32,39,32,34,76,43,45,12,47,74,64,13,
+46,159,70,186,32,20,44,57,224,19,0,228,48,4,224,129,1,96,67,235,
+131,1,224,233,0,237,174,0,172,219,67,7,237,126,3,224,184,6,235,93,
+10,234,86,8,225,0,7,78,61,46,122,32,57,143,28,2,35,57,49,225,
+190,9,224,88,11,226,92,2,225,102,4,231,51,6,198,22,229,110,3,224,
+40,12,163,108,224,37,0,224,34,10,205,130,145,10,224,25,3,229,248,5,
+2,73,32,64,224,252,0,65,66,64,5,233,80,2,226,27,0,224,220,5,
+238,29,1,45,58,226,231,16,130,65,226,96,3,224,248,1,225,6,3,45,
+98,172,220,161,171,225,208,3,224,74,10,233,238,12,141,198,226,121,6,226,
+45,7,2,95,50,50,224,193,1,226,56,19,243,179,0,144,249,224,107,6,
+81,217,224,16,21,77,147,227,40,6,78,252,46,189,243,50,1,2,92,51,
+52,2,38,46,47,2,108,105,98,2,47,83,121,2,115,116,101,2,109,47,
+67,2,111,110,115,2,111,108,101,2,47,83,105,2,109,112,108,2,101,82,
+101,2,97,100,108,2,105,110,101,2,46,104,115,64,41,2,44,49,54,2,
+50,58,53,147,149,227,95,11,225,124,1,224,240,18,228,69,7,238,134,18,
+224,43,9,226,216,10,225,237,0,230,78,3,172,114,227,55,19,227,185,3,
+175,242,65,127,96,8,130,214,66,80,227,231,6,226,161,1,224,2,0,239,
+250,13,236,5,6,224,35,2,242,250,0,96,41,68,112,2,50,53,32,164,
+126,226,18,8,96,138,160,5,146,232,224,142,2,64,213,129,112,99,94,64,
+84,111,154,176,180,160,75,180,11,211,230,32,113,243,195,1,224,43,4,64,
+42,64,245,226,120,12,228,191,7,241,122,0,224,252,12,230,203,3,224,178,
+3,243,248,2,128,42,96,151,80,188,224,179,5,242,233,2,67,11,242,143,
+0,196,152,225,7,5,177,83,181,25,224,49,3,224,56,1,100,99,164,104,
+224,6,3,225,161,11,241,192,3,192,89,130,28,227,165,26,224,171,2,227,
+25,1,225,6,8,36,110,225,120,3,224,185,9,224,178,5,231,173,7,231,
+199,4,224,149,2,244,234,0,86,81,2,51,55,48,114,209,96,6,225,148,
+1,231,86,0,228,54,2,226,169,13,225,208,8,227,174,8,2,56,50,32,
+226,184,2,228,241,15,182,148,226,163,4,128,253,237,9,0,229,120,2,2,
+64,64,85,245,5,4,129,67,224,248,2,244,36,0,226,125,4,2,85,32,
+35,228,17,0,227,64,8,226,76,3,231,146,6,224,96,12,225,20,2,226,
+232,10,224,106,2,224,33,2,228,10,17,225,60,32,97,207,243,228,10,212,
+1,225,64,18,224,228,8,231,198,4,224,151,5,32,120,228,202,1,224,179,
+11,226,159,6,118,211,64,24,228,172,0,167,191,164,92,161,142,70,250,244,
+216,0,133,70,226,157,0,128,27,225,118,0,163,129,224,63,3,128,249,71,
+134,224,67,15,2,67,32,80,225,189,6,160,70,246,53,3,229,29,3,226,
+207,16,227,214,8,195,123,131,195,165,28,228,228,21,248,197,4,161,233,164,
+155,100,207,227,139,0,225,178,7,228,233,3,216,218,87,195,225,93,0,251,
+13,12,2,92,56,38,2,32,92,56,2,38,34,32,162,225,151,21,137,72,
+248,220,0,164,130,128,154,2,82,32,64,229,172,21,130,6,227,45,7,234,
+183,12,192,20,226,195,12,174,101,231,203,20,98,133,96,31,193,159,132,187,
+65,209,138,55,134,155,248,126,3,250,179,4,32,13,35,148,96,4,215,66,
+133,0,128,253,33,127,65,75,91,153,196,240,167,21,64,143,183,16,2,53,
+49,52,130,64,199,0,230,87,3,98,75,140,28,154,130,151,140,249,229,0,
+248,127,3,155,107,40,215,96,236,32,32,64,20,154,55,232,161,3,32,134,
+226,128,5,67,137,66,28,97,246,44,102,110,40,172,114,2,54,49,32,40,
+149,96,185,2,95,50,48,2,49,32,102,225,250,0,2,103,101,116,2,82,
+97,119,2,32,102,97,2,105,108,101,158,156,129,202,193,201,2,50,53,50,
+186,162,73,19,32,131,2,94,71,69,2,84,82,65,2,87,32,58,128,131,
+124,113,2,54,55,56,64,15,33,147,96,33,2,102,108,117,2,115,104,98,
+96,17,189,43,2,50,50,51,224,204,1,66,207,32,20,225,127,2,155,253,
+34,169,32,37,34,177,97,105,235,212,4,240,109,0,32,242,92,91,193,100,
+32,54,33,212,130,75,249,59,4,64,102,153,200,59,107,2,50,32,65,152,
+83,2,55,53,32,128,176,60,46,64,14,152,98,97,85,64,203,33,143,32,
+112,157,129,217,87,124,11,64,90,32,7,2,80,32,66,131,82,2,50,57,
+50,160,21,64,7,2,75,32,95,97,47,96,66,2,49,56,55,251,13,0,
+2,55,51,32,253,253,2,32,15,129,237,2,54,51,32,32,4,65,242,64,
+35,129,217,192,88,96,236,254,182,17,2,69,120,99,2,101,112,116,2,105,
+111,110,2,58,32,34,222,169,64,85,188,27,98,11,128,201,2,52,52,32,
+2,95,51,50,35,36,2,51,53,48,193,213,224,231,6,32,95,195,89,225,
+1,7,237,1,2,230,121,2,97,11,225,2,5,90,21,128,174,2,51,52,
+57,224,169,3,43,212,235,202,0,169,170,225,78,0,233,169,1,128,69,224,
+15,1,2,51,54,48,193,27,132,36,2,54,54,55,122,123,128,195,97,128,
+225,107,0,64,23,67,123,2,85,32,67,202,135,99,197,251,51,4,192,179,
+65,16,2,64,95,56,253,179,4,224,32,1,64,104,64,74,224,94,7,238,
+74,5,65,108,253,136,0,255,208,1,107,251,127,206,69,49,223,206,32,44,
+64,82,255,193,3,199,252,255,184,0,64,35,131,33,236,97,0,238,128,2,
+64,73,99,207,2,83,32,73,165,30,223,113,192,7,70,209,164,182,234,9,
+10,251,190,2,228,20,7,2,50,55,49,247,218,0,226,123,4,165,238,226,
+125,12,2,99,111,109,2,98,105,110,2,97,116,111,2,114,115,58,2,92,
+49,48,166,47,63,140,172,192,252,20,6,96,222,163,235,224,222,10,128,155,
+99,65,128,30,226,32,2,97,250,2,53,54,32,67,10,2,57,56,32,232,
+79,8,161,213,190,101,226,190,6,32,57,231,49,1,221,145,227,156,4,193,
+66,192,85,229,72,1,160,126,225,56,10,100,91,225,57,0,227,83,0,226,
+197,1,225,70,35,2,112,105,108,2,105,110,103,2,32,117,115,2,101,100,
+32,2,98,111,111,2,116,32,109,2,111,100,117,2,108,101,32,161,81,2,
+51,48,54,237,97,4,225,28,22,237,112,2,226,218,13,135,147,226,216,0,
+128,186,34,59,205,227,195,232,65,14,226,67,39,225,9,5,224,252,24,2,
+116,111,116,2,97,108,32,47,255,2,111,114,116,2,32,116,105,2,109,101,
+32,64,0,128,247,236,238,0,106,19,36,5,121,101,2,95,49,50,64,70,
+95,121,2,64,64,102,224,72,0,2,109,115,34,239,200,7,226,127,3,242,
+234,1,196,96,136,13,223,12,2,51,51,32,224,181,0,2,54,49,56,64,
+4,98,27,64,120,135,182,210,56,66,197,134,74,70,155,2,49,57,52,67,
+238,159,11,32,9,38,73,39,36,2,57,48,32,128,40,134,96,204,165,168,
+118,97,83,105,125,97,78,38,215,2,53,32,95,233,181,4,139,170,32,113,
+64,67,222,248,226,214,9,97,236,175,73,144,86,32,129,104,144,163,65,226,
+196,3,64,220,113,27,226,6,0,226,14,3,226,15,2,195,22,32,67,163,
+80,2,80,32,75,193,53,130,32,236,185,3,246,104,0,113,6,130,51,240,
+3,0,35,9,32,84,100,87,129,42,32,110,172,69,175,89,236,63,0,129,
+118,32,31,138,41,64,249,135,47,39,177,2,51,32,65,161,80,135,30,2,
+85,32,90,96,1,130,232,64,23,134,244,128,136,230,89,18,194,190,2,57,
+51,32,33,70,2,57,57,32,226,157,1,2,52,48,56,226,171,12,2,79,
+32,35,41,50,163,83,239,129,1,2,50,57,53,101,220,102,114,234,117,0,
+34,75,192,112,105,203,226,250,19,2,67,97,110,2,110,111,116,2,32,102,
+105,2,110,100,32,2,112,97,99,2,107,97,103,227,240,8,163,149,227,133,
+3,231,116,10,2,50,52,57,128,54,2,52,48,54,225,16,0,134,152,231,
+128,2,2,112,107,103,32,93,32,26,64,177,66,189,2,52,48,52,72,245,
+66,69,137,181,32,158,64,15,133,162,243,3,2,98,20,2,50,56,49,227,
+72,2,221,191,206,72,98,148,99,39,128,13,182,184,213,38,229,77,38,203,
+198,229,77,43,132,74,69,77,229,60,7,226,28,14,96,94,71,179,69,59,
+232,176,10,128,54,68,45,2,95,52,49,32,106,231,103,1,239,139,9,225,
+156,3,136,12,35,231,165,98,133,166,32,108,229,166,0,204,237,2,53,53,
+32,245,155,6,225,47,108,2,99,97,99,2,104,101,100,230,115,9,233,4,
+4,205,15,69,52,2,52,49,49,100,246,64,89,68,189,32,5,2,49,32,
+35,252,6,0,66,75,133,40,226,4,44,231,82,51,224,212,1,103,77,226,
+9,56,2,45,98,111,2,111,116,34,160,144,130,13,227,230,32,231,207,3,
+99,239,2,111,117,110,2,100,58,32,227,233,8,226,85,36,33,90,216,58,
+226,86,0,2,53,57,57,230,162,1,66,83,99,197,70,18,74,141,2,54,
+50,52,234,140,1,237,37,4,64,174,96,50,134,104,37,110,197,89,64,20,
+204,179,247,21,4,132,17,69,220,2,52,50,50,243,145,5,224,190,3,225,
+96,0,193,93,32,46,250,196,5,179,9,249,117,6,250,55,0,253,189,7,
+240,67,2,250,182,8,247,45,7,164,166,96,83,179,152,226,129,38,235,14,
+5,226,129,37,2,112,97,114,41,204,235,22,3,104,182,2,54,48,57,253,
+100,8,224,184,4,231,182,8,162,171,113,230,160,176,224,169,0,235,6,2,
+176,148,2,54,49,48,113,154,144,131,120,130,167,126,231,10,2,98,178,161,
+16,224,191,15,194,176,2,97,109,101,2,32,100,111,2,101,115,32,66,186,
+2,97,103,114,2,101,101,32,2,119,105,116,2,104,32,102,48,31,96,29,
+194,201,246,14,1,114,28,98,214,231,76,12,65,58,135,76,228,99,2,225,
+215,11,225,237,14,187,30,226,135,17,249,57,13,187,231,250,51,0,232,35,
+10,97,87,71,213,2,54,49,49,193,250,2,54,49,50,227,129,6,2,54,
+49,51,163,129,224,188,4,254,171,9,155,229,224,28,14,187,64,255,104,17,
+224,223,20,233,118,0,255,86,5,254,220,18,255,122,2,224,103,5,255,116,
+4,103,180,149,13,224,5,33,147,23,229,224,41,205,246,227,94,43,2,116,
+121,112,2,101,32,99,2,104,101,99,2,107,101,100,227,100,2,233,158,1,
+2,54,49,52,67,109,69,44,224,53,1,2,45,45,45,2,45,45,92,224,
+45,0,224,0,3,255,10,7,224,2,4,193,57,225,172,14,230,75,4,209,
+221,237,93,1,226,55,0,108,189,172,87,226,56,19,226,60,6,226,33,50,
+224,2,18,233,199,0,224,186,50,224,153,15,224,192,8,224,40,19,224,198,
+23,224,200,16,225,149,0,224,81,7,224,224,3,226,219,1,224,73,4,193,
+238,255,85,8,192,61,230,96,10,225,86,24,226,38,1,228,127,13,165,222,
+248,99,0,198,157,251,87,6,230,175,108,2,100,101,115,2,117,103,97,2,
+114,101,100,241,201,4,99,68,241,193,2,229,97,8,229,82,2,254,61,3,
+224,5,15,225,45,1,224,218,4,244,91,2,222,230,234,24,24,225,181,2,
+237,224,3,224,21,7,218,243,251,20,1,234,51,25,2,100,111,110,205,137,
+224,153,5,230,221,5,240,102,1,224,82,15,2,44,32,34,255,202,1,203,
+4,151,220,192,58,240,203,2,161,242,255,90,2,255,105,6,224,112,25,2,
+109,115,32,2,40,34,32,238,143,1,231,145,2,224,105,10,224,69,15,2,
+32,43,32,231,211,11,224,65,3,224,62,28,229,141,1,224,58,2,79,78,
+33,197,242,162,1,227,236,8,251,159,0,226,84,31,227,38,6,233,47,32,
+32,26,144,0,128,168,156,115,233,51,2,53,151,2,56,32,102,224,215,0,
+2,73,110,116,2,101,114,97,2,99,116,105,2,118,101,34,252,171,0,216,
+155,226,154,5,227,131,45,2,108,111,97,2,100,101,100,237,128,9,225,25,
+6,235,51,13,163,136,226,233,3,227,97,4,252,232,2,64,5,228,114,0,
+236,87,4,224,18,0,2,54,50,55,186,214,229,1,0,221,19,178,242,186,
+163,42,77,32,13,176,27,242,69,11,254,147,8,244,117,5,224,208,1,222,
+84,192,103,2,85,32,65,244,244,8,227,28,8,243,56,0,118,119,82,63,
+195,42,205,27,224,34,3,224,16,26,123,68,2,54,51,48,64,143,2,89,
+32,66,178,250,210,247,193,15,178,183,64,152,79,8,119,181,242,197,0,64,
+246,212,44,2,95,56,55,107,138,77,84,224,204,1,225,137,4,80,14,98,
+109,2,55,57,50,81,48,87,220,242,219,1,128,0,224,137,11,247,245,1,
+170,77,224,10,4,224,167,4,126,202,225,139,0,224,76,9,132,154,194,86,
+34,41,2,32,61,61,34,205,238,153,7,243,175,5,96,211,193,162,32,12,
+192,177,64,207,178,143,2,49,52,56,85,73,76,243,75,47,248,228,0,78,
+174,114,114,2,52,56,57,67,5,35,114,94,136,44,151,32,38,83,108,64,
+6,206,231,32,27,64,50,147,224,72,44,2,49,52,57,96,80,2,53,49,
+56,96,60,249,243,1,224,185,0,124,29,32,172,35,223,64,74,128,100,64,
+39,227,108,1,2,101,111,102,131,104,60,117,2,50,54,54,224,134,1,251,
+176,2,64,123,219,74,53,86,160,121,236,48,1,32,15,236,65,0,64,36,
+2,52,57,50,254,66,0,194,181,125,150,101,248,2,52,57,52,96,149,2,
+53,48,51,128,238,145,246,254,32,0,96,114,83,202,224,231,7,123,83,2,
+54,52,54,228,75,2,224,176,1,129,112,34,194,228,172,5,2,77,97,105,
+2,110,34,32,32,29,2,79,32,95,96,170,2,53,52,48,124,7,224,36,
+3,2,109,97,105,128,36,160,128,64,127,212,13,68,60,225,105,1,2,48,
+32,102,238,26,6,96,55,225,142,5,32,214,170,79,225,40,0,193,213,225,
+232,3,2,50,55,55,225,244,2,34,80,2,35,52,48,129,24,42,102,64,
+168,98,0,128,24,164,100,160,13,242,231,2,224,255,1,34,230,33,65,64,
+34,245,165,0,228,254,1,224,193,13,2,119,104,101,2,114,101,34,231,82,
+1,225,109,15,229,33,4,225,115,4,193,117,241,111,0,64,180,97,55,128,
+239,224,5,51,62,14,193,29,224,10,2,66,235,2,52,57,51,103,76,2,
+56,53,32,225,70,8,224,223,3,2,100,97,116,2,97,34,32,129,56,95,
+114,130,117,69,121,224,51,4,2,51,53,32,39,141,87,58,97,54,64,17,
+96,226,88,130,224,30,0,2,49,50,52,226,159,0,227,40,5,162,231,64,
+48,67,50,224,184,28,82,3,224,184,18,2,110,101,119,77,217,224,187,6,
+224,181,22,224,107,15,64,23,64,163,160,169,64,167,116,175,225,236,3,65,
+73,238,185,0,226,181,1,131,49,38,5,64,5,129,153,132,210,134,132,32,
+43,68,194,69,221,64,153,129,47,153,184,98,162,226,43,7,225,36,1,224,
+174,18,227,26,10,225,26,3,225,23,41,2,53,55,53,161,160,224,103,1,
+80,188,2,95,53,48,96,188,2,49,54,51,224,146,21,70,186,229,163,7,
+130,33,88,93,227,162,4,226,193,0,32,133,224,179,1,2,58,58,34,194,
+88,96,156,2,56,55,53,32,82,198,216,224,161,0,224,117,4,2,51,57,
+54,225,8,21,139,167,160,88,2,54,52,51,198,116,226,124,24,65,53,224,
+88,4,224,11,15,224,112,6,2,102,111,114,2,101,105,103,133,40,224,140,
+18,224,27,8,2,99,99,97,2,108,108,34,192,26,41,234,32,174,114,59,
+128,15,102,223,225,194,8,225,60,11,225,199,0,224,216,13,2,54,52,52,
+224,245,15,72,156,228,91,4,68,219,160,54,32,130,225,92,10,2,110,102,
+105,2,120,108,34,199,190,225,150,2,75,42,224,45,12,2,114,34,32,161,
+206,224,92,4,224,46,15,204,158,64,28,227,89,0,228,186,2,2,105,103,
+105,97,79,231,209,6,179,115,66,176,72,119,86,215,114,172,171,201,33,77,
+34,219,66,224,248,140,11,40,184,192,32,224,33,8,181,143,160,91,32,6,
+97,151,224,36,0,224,0,0,226,251,1,133,29,230,158,2,226,125,16,226,
+136,15,229,190,22,2,99,108,97,2,115,115,34,193,252,149,202,163,244,229,
+199,18,229,168,1,192,170,226,17,17,109,142,130,130,224,137,7,94,110,224,
+33,6,231,141,7,230,5,13,2,54,49,57,66,225,100,91,228,84,19,65,
+165,227,222,19,2,110,115,116,2,97,110,99,228,235,1,164,34,224,94,7,
+224,83,4,227,193,22,2,100,101,102,2,97,117,108,196,51,2,53,50,54,
+96,219,69,241,96,94,225,205,6,227,105,19,225,185,22,229,164,3,93,71,
+227,225,32,104,109,72,70,155,48,159,116,2,35,53,32,32,21,33,177,64,
+24,217,207,96,24,97,150,160,24,153,181,226,130,26,224,211,13,2,51,57,
+55,228,36,1,227,193,1,122,76,70,34,234,47,3,2,83,79,85,2,82,
+67,69,164,29,226,5,4,220,209,224,72,9,2,54,53,32,225,38,8,2,
+113,117,97,2,108,105,102,2,105,101,100,224,74,12,137,121,170,80,197,58,
+225,116,18,2,97,115,34,193,216,229,93,1,64,236,226,255,16,2,48,57,
+55,231,217,6,224,177,23,2,104,105,100,50,25,224,174,21,130,86,106,195,
+2,54,52,50,226,86,9,65,172,155,77,233,239,16,224,166,0,156,99,65,
+127,129,134,203,33,111,117,235,78,31,64,59,235,59,6,226,217,17,162,159,
+96,95,227,224,13,224,46,4,67,197,43,170,64,252,64,215,141,208,78,182,
+78,42,64,17,141,175,238,166,3,64,7,78,137,64,29,141,88,2,90,32,
+66,64,21,160,50,64,174,173,109,230,73,2,105,54,60,196,32,142,128,148,
+137,162,32,51,146,37,230,33,0,128,236,129,142,96,31,2,90,32,95,105,
+170,2,50,49,57,254,146,2,34,208,237,96,7,2,54,51,54,2,32,75,
+50,38,31,96,233,2,85,32,66,38,92,79,192,243,180,0,118,0,240,171,
+3,111,80,246,73,1,238,3,1,113,101,236,56,1,119,4,177,157,96,56,
+224,16,0,175,168,246,141,3,143,165,241,14,3,64,17,172,127,234,79,2,
+176,117,238,56,3,175,123,240,52,2,192,10,210,241,74,184,237,152,1,173,
+33,2,53,50,48,224,97,0,226,69,8,71,193,224,41,0,65,34,243,155,
+7,167,123,145,67,114,106,162,233,144,41,235,37,0,203,27,244,193,3,235,
+32,5,181,98,64,238,254,153,3,242,103,3,225,190,0,141,103,237,179,5,
+2,54,51,53,226,20,1,237,208,7,2,54,50,48,170,152,235,30,3,251,
+66,1,211,56,243,53,3,193,38,224,20,0,236,11,11,115,82,32,58,224,
+222,0,224,219,23,2,95,55,50,211,39,64,201,133,234,104,195,68,8,228,
+151,14,231,196,17,75,132,100,119,64,154,2,54,51,52,245,115,2,224,127,
+0,64,187,224,54,0,113,236,129,191,97,106,246,140,0,196,190,224,78,8,
+230,63,24,224,77,2,32,7,34,144,226,149,2,32,45,75,203,237,112,5,
+2,54,51,32,237,112,11,225,96,11,213,93,2,95,56,48,97,95,239,129,
+9,128,95,65,75,135,29,239,101,34,224,147,4,32,80,225,134,1,97,65,
+224,224,0,33,180,107,39,237,107,12,233,112,1,161,47,225,253,6,39,69,
+128,171,229,228,20,96,36,130,245,64,31,160,51,229,236,1,2,53,56,56,
+226,21,8,2,54,51,51,193,99,118,195,229,157,4,2,53,55,48,237,184,
+7,230,36,18,96,174,209,37,241,115,15,238,68,5,59,165,2,55,52,32,
+2,64,95,52,105,156,224,105,23,2,57,49,32,224,105,27,97,109,230,162,
+17,2,56,54,54,224,199,19,2,54,49,53,129,53,224,139,17,138,217,129,
+169,224,221,18,2,55,53,52,166,10,224,109,10,2,49,50,54,161,127,192,
+187,224,56,6,134,128,224,57,10,97,176,224,56,0,66,179,201,184,225,61,
+21,2,49,50,51,169,5,106,175,226,187,6,231,205,13,133,62,196,32,2,
+49,48,49,226,63,8,2,53,56,57,185,15,226,245,14,2,57,55,54,226,
+245,15,240,97,1,119,39,226,245,9,32,23,200,109,231,200,2,2,54,51,
+50,235,2,9,2,46,46,34,227,204,0,226,18,9,2,49,50,53,163,223,
+137,55,118,111,64,14,200,110,232,62,4,182,33,37,240,2,57,32,58,128,
+155,132,19,2,54,50,32,164,121,64,28,39,255,32,29,32,35,228,49,2,
+224,231,11,75,113,160,231,227,91,3,67,157,64,70,177,58,96,8,64,79,
+213,55,228,123,21,127,73,64,6,174,108,126,236,64,7,162,29,77,195,96,
+7,32,38,64,85,212,85,225,231,14,68,247,192,90,233,158,3,80,233,32,
+61,163,157,224,24,2,181,90,237,28,4,2,111,34,32,238,226,0,148,252,
+57,210,97,82,64,133,128,212,239,170,11,2,81,117,97,2,108,68,111,239,
+171,10,162,4,143,171,218,153,55,102,128,18,248,186,4,192,7,64,59,233,
+173,2,254,162,13,160,168,192,71,200,154,76,121,104,54,2,55,53,54,86,
+226,33,161,224,63,2,65,201,32,22,252,111,6,64,220,198,51,237,34,23,
+2,55,51,57,238,178,22,152,73,227,15,0,238,33,20,2,104,101,110,224,
+45,18,224,57,5,108,197,233,140,2,224,76,7,2,101,108,115,182,198,192,
+77,64,215,238,16,10,224,204,2,97,94,224,160,18,2,108,101,116,238,193,
+0,130,12,166,105,239,179,20,224,210,4,64,132,204,232,229,203,13,121,1,
+241,1,19,2,97,115,101,225,83,33,185,201,224,177,0,137,101,64,133,218,
+103,233,68,17,104,128,234,36,0,70,34,96,56,132,75,235,52,5,67,182,
+34,107,234,93,6,176,150,97,36,233,254,9,41,242,107,2,64,83,132,143,
+101,104,101,114,235,117,9,248,163,14,128,216,237,151,12,32,87,65,208,234,
+71,4,139,217,160,8,224,249,15,242,65,29,100,9,238,199,7,126,237,224,
+61,0,225,162,1,234,108,6,121,150,2,80,32,95,128,168,96,86,224,57,
+15,64,197,197,63,226,48,12,2,57,55,49,224,179,14,93,51,192,178,114,
+179,231,153,0,231,252,13,162,159,69,127,238,5,7,64,167,250,11,6,139,
+11,136,90,250,40,9,240,150,8,245,191,21,206,65,250,79,12,52,204,41,
+85,96,89,2,57,55,50,167,19,98,207,167,170,128,182,165,144,224,182,4,
+32,217,224,153,5,231,240,11,170,48,224,196,7,232,27,18,250,251,18,197,
+177,141,61,37,114,74,112,32,42,96,57,64,146,96,192,159,3,128,196,138,
+219,224,198,0,235,174,40,230,227,8,167,135,144,129,224,24,11,204,192,235,
+31,60,98,55,235,31,32,139,28,235,21,29,2,54,48,55,234,142,1,235,
+2,22,32,44,248,194,7,235,3,5,200,148,249,178,4,191,126,224,173,6,
+224,96,14,95,56,235,100,19,154,222,224,96,6,64,118,225,14,18,130,15,
+225,111,31,150,120,130,130,236,131,21,90,76,62,208,97,63,114,129,230,36,
+20,2,112,114,105,2,109,105,116,2,105,118,101,198,87,153,138,66,141,199,
+48,232,229,12,2,115,116,114,179,249,232,229,6,161,191,216,145,168,136,160,
+82,134,254,117,171,67,179,74,163,64,22,166,143,227,190,3,64,109,239,16,
+30,37,62,2,51,48,48,209,104,127,203,234,167,3,239,33,7,64,112,243,
+133,1,64,137,97,71,150,54,65,232,227,130,3,139,29,232,50,13,105,86,
+33,29,245,40,7,233,100,5,230,59,2,227,38,2,32,106,64,188,224,132,
+2,96,155,128,132,66,206,243,139,8,239,140,4,224,9,21,242,183,12,128,
+120,242,32,7,64,117,132,174,160,59,224,13,20,147,150,237,16,3,197,13,
+142,242,209,213,141,106,173,113,226,190,0,224,147,14,231,40,1,224,94,10,
+72,138,230,227,12,237,43,8,224,70,9,225,145,0,128,70,237,102,19,232,
+161,9,224,213,2,241,194,9,242,81,0,241,15,3,85,65,232,63,52,224,
+80,6,32,37,241,97,12,224,249,21,224,246,3,64,66,130,163,224,245,15,
+224,243,4,192,240,224,232,3,66,141,212,90,34,165,68,77,131,179,64,88,
+226,189,1,97,100,162,188,230,196,11,237,167,14,126,122,255,73,6,195,255,
+177,237,128,218,224,54,5,121,154,235,171,42,224,125,7,227,3,2,64,184,
+228,239,0,224,178,17,2,56,54,53,224,177,8,2,54,48,49,240,6,11,
+224,188,3,123,158,64,98,248,231,5,229,182,2,64,110,2,55,50,48,163,
+14,134,251,252,41,15,102,86,225,52,5,80,210,233,104,14,233,106,1,64,
+128,229,105,9,97,112,229,105,30,64,45,146,1,229,80,6,65,2,225,244,
+3,224,136,4,2,60,45,34,194,252,97,34,2,56,53,57,202,157,64,58,
+229,113,0,59,43,2,58,49,53,64,127,240,159,3,208,95,112,79,64,35,
+240,159,51,2,53,57,52,192,199,112,73,96,86,229,106,8,234,57,8,245,
+252,4,197,18,247,16,3,247,13,17,152,98,2,50,54,56,202,15,225,68,
+0,235,57,121,97,0,131,199,39,196,202,182,2,67,32,60,167,198,2,83,
+32,83,224,18,4,120,213,231,235,4,136,100,64,141,135,235,160,217,224,38,
+7,224,37,2,90,125,224,37,0,80,253,182,197,64,138,164,57,246,131,4,
+226,156,13,156,83,225,110,10,232,140,6,134,95,116,123,64,160,2,85,32,
+83,224,210,5,68,23,224,48,4,133,54,224,48,0,186,251,224,207,11,224,
+36,10,210,46,125,233,130,24,64,214,228,87,5,2,53,51,51,235,5,26,
+216,116,180,228,224,19,0,96,80,201,69,101,122,98,147,101,122,99,86,160,
+24,255,39,1,172,149,220,99,103,78,233,131,0,64,60,101,207,99,31,64,
+165,231,164,10,160,139,2,53,56,32,64,40,66,60,79,87,187,157,185,158,
+198,189,132,57,141,66,164,205,105,254,131,4,102,140,96,24,170,33,64,79,
+227,209,18,243,144,5,2,101,114,105,2,118,105,110,158,109,225,77,0,130,
+9,150,4,67,22,236,141,7,249,229,2,214,0,110,183,227,69,1,240,62,
+12,2,53,56,55,230,13,15,243,23,23,2,49,50,56,132,114,70,10,96,
+103,206,63,160,15,2,56,53,32,250,66,17,224,93,22,253,6,3,96,8,
+192,111,132,77,2,51,53,57,232,176,13,224,142,11,162,91,2,56,48,32,
+224,15,1,64,249,212,221,251,118,11,224,230,1,96,106,197,26,128,60,224,
+31,6,237,148,13,215,184,230,192,4,231,9,3,2,56,32,85,66,88,2,
+89,32,64,130,198,96,193,253,94,4,98,182,2,67,32,80,227,117,0,194,
+1,242,207,16,231,45,5,153,113,167,51,226,45,1,231,64,19,140,90,247,
+140,17,131,153,65,217,243,88,22,2,56,50,32,226,124,0,64,49,244,149,
+19,224,49,6,33,191,64,49,232,67,5,236,118,1,136,154,249,84,1,226,
+216,6,100,174,64,63,211,252,163,64,172,197,131,71,98,11,64,36,167,207,
+229,138,3,74,223,232,39,33,88,139,232,39,8,96,95,224,188,3,225,150,
+4,227,208,3,130,85,131,161,227,196,21,191,74,2,53,54,53,244,10,15,
+98,241,233,217,22,129,106,2,53,55,32,253,235,1,2,53,55,55,253,235,
+59,96,69,161,62,224,15,0,64,148,249,25,5,224,226,3,2,57,54,54,
+177,177,2,95,54,55,176,90,254,214,1,64,224,244,13,13,133,95,160,41,
+232,72,29,159,161,64,142,228,239,0,33,116,64,15,243,82,9,100,65,232,
+178,6,81,210,205,61,232,129,10,243,8,3,32,159,65,2,146,254,64,97,
+236,40,0,186,136,128,189,2,55,51,32,96,29,231,53,0,33,225,64,15,
+162,246,224,124,4,224,143,9,161,185,97,52,244,153,122,98,158,243,210,20,
+243,186,111,231,44,12,254,218,25,96,8,110,35,227,136,4,254,237,33,191,
+26,243,215,3,65,38,132,111,2,83,32,85,33,102,33,23,249,203,2,2,
+84,117,112,2,108,101,34,203,75,99,103,2,90,32,90,64,134,226,187,1,
+228,85,0,242,169,11,2,108,105,116,2,101,114,97,2,108,34,32,72,234,
+233,255,11,224,18,5,102,91,234,67,9,251,182,0,251,91,7,163,26,155,
+122,224,34,20,179,7,43,86,34,83,224,112,1,143,83,224,53,13,2,55,
+54,48,234,127,16,224,145,20,2,56,54,57,231,29,0,33,33,64,13,233,
+244,0,233,243,0,64,52,192,21,65,9,160,21,232,249,5,243,8,4,230,
+109,1,83,101,225,99,1,2,45,62,34,194,155,162,164,224,41,15,2,61,
+62,34,229,176,3,64,111,253,77,0,238,59,10,224,46,1,174,59,2,54,
+53,56,238,59,0,96,66,224,58,16,224,147,1,238,118,0,209,135,64,58,
+235,149,6,94,248,235,149,31,175,159,235,149,5,65,32,97,76,103,35,229,
+160,0,227,70,3,66,103,137,194,102,53,98,3,64,20,32,14,245,68,7,
+98,116,237,88,2,103,189,216,60,2,90,32,75,128,217,2,48,48,48,253,
+241,2,68,252,135,146,224,125,12,137,46,64,169,228,147,5,224,243,17,129,
+25,235,132,4,2,102,111,114,2,97,108,108,225,88,6,2,55,48,52,230,
+240,2,150,169,199,60,207,149,254,107,0,231,162,13,70,90,232,149,4,114,
+25,203,221,66,203,64,36,163,231,232,149,46,69,198,69,3,200,157,232,158,
+9,64,104,228,72,17,2,76,73,100,2,101,110,116,255,216,23,225,222,1,
+77,29,32,8,35,238,162,19,32,32,115,99,107,24,104,15,192,146,37,78,
+2,52,49,55,191,229,102,4,133,132,223,211,227,228,2,150,119,32,0,2,
+75,50,32,255,242,0,128,189,232,81,5,233,217,5,96,110,64,36,227,221,
+6,2,53,53,32,96,36,114,160,96,50,225,0,17,2,85,73,100,225,0,
+46,32,254,2,52,55,57,192,246,224,213,37,131,227,97,211,55,88,180,227,
+226,179,1,102,138,75,254,226,123,1,67,151,98,51,140,25,99,13,224,19,
+2,64,84,131,253,254,116,1,249,152,5,96,145,226,167,4,206,173,87,213,
+128,56,224,59,1,167,83,226,217,14,64,153,222,135,237,81,9,98,171,226,
+186,1,237,35,4,64,217,255,102,1,224,40,14,139,33,252,136,8,224,43,
+10,134,74,224,83,7,227,75,3,97,3,224,151,0,96,224,227,85,2,65,
+237,45,130,111,246,32,7,225,252,0,178,203,38,60,2,90,32,67,97,251,
+65,145,52,105,34,241,32,251,2,35,54,50,248,254,2,128,12,161,153,38,
+24,65,159,128,180,224,195,7,97,59,208,171,2,95,51,51,33,177,40,28,
+32,52,164,12,64,54,32,27,2,75,32,65,98,185,64,22,162,38,2,52,
+57,48,175,40,96,12,64,113,128,13,43,150,32,168,95,123,79,221,159,124,
+64,33,173,25,32,142,233,171,15,233,106,3,82,244,240,167,19,2,109,111,
+100,2,117,108,101,197,34,129,201,235,177,13,33,74,140,119,88,32,64,6,
+169,27,105,232,233,205,32,164,49,252,199,27,96,97,224,96,0,226,174,9,
+234,85,7,165,45,106,145,65,32,228,59,6,92,92,228,96,0,85,119,96,
+36,231,206,6,2,52,51,32,96,67,32,114,64,29,231,177,0,228,96,11,
+135,178,228,92,19,137,170,39,69,100,60,43,129,98,104,101,54,251,119,2,
+232,4,8,164,108,69,138,224,49,13,232,31,5,228,161,0,218,222,178,197,
+64,48,130,192,224,23,15,129,2,168,91,236,152,4,247,101,33,230,167,25,
+65,83,230,167,18,2,81,73,100,229,167,26,193,16,230,155,55,225,11,22,
+132,254,2,79,32,102,224,159,0,2,99,97,115,99,30,224,19,4,2,108,
+97,115,2,115,34,32,224,20,5,2,100,97,116,2,97,34,32,224,19,6,
+2,101,102,97,2,117,108,116,224,22,9,244,28,1,224,23,4,2,111,34,
+32,224,17,5,2,101,108,115,224,125,8,232,213,1,224,21,6,2,101,105,
+103,2,110,34,32,224,22,5,2,105,102,34,224,17,7,2,109,112,111,2,
+114,116,34,224,21,7,224,57,9,2,110,102,105,2,120,34,32,224,20,10,
+224,123,8,96,21,2,114,34,32,224,21,7,2,115,116,97,2,110,99,101,
+224,23,7,186,240,224,18,3,228,133,1,224,21,3,2,110,101,119,2,116,
+121,112,224,22,8,2,111,102,34,224,17,6,2,112,114,105,2,109,105,116,
+2,105,118,101,224,24,7,2,116,104,101,224,215,8,224,82,11,2,119,104,
+101,2,114,101,34,32,20,253,49,1,224,0,7,66,29,133,224,77,208,2,
+90,32,85,194,221,242,36,6,231,152,2,122,250,252,205,13,231,193,8,206,
+233,244,198,11,107,194,233,27,5,255,160,8,101,89,227,101,17,2,83,121,
+109,2,79,112,101,97,162,234,14,52,99,99,139,190,102,88,128,140,227,124,
+16,2,50,56,32,234,24,40,64,82,224,200,17,228,45,36,104,244,224,168,
+1,228,3,29,64,233,137,2,117,194,236,159,14,181,215,236,204,4,32,254,
+230,249,2,160,77,222,121,226,26,4,103,209,70,15,2,53,48,54,225,232,
+0,104,149,147,159,224,213,6,141,79,232,181,4,225,163,0,230,35,4,193,
+79,205,128,160,131,238,120,6,71,229,226,78,1,183,72,71,101,230,6,50,
+245,68,16,64,95,64,87,2,54,32,67,233,104,3,41,137,98,6,82,169,
+97,155,2,50,57,53,160,136,170,130,193,192,2,48,57,57,255,244,3,96,
+181,105,52,161,123,73,51,200,17,129,27,220,243,2,52,57,52,130,134,94,
+201,64,6,64,35,229,93,4,2,109,112,116,2,121,34,32,227,246,0,244,
+26,0,160,96,112,163,66,73,105,120,70,72,248,209,2,122,77,192,21,248,
+225,0,224,147,1,97,184,208,95,90,116,234,236,1,94,216,129,63,224,17,
+0,137,83,96,17,65,3,178,97,169,114,2,48,57,54,140,74,250,148,5,
+98,69,64,45,242,81,20,2,81,83,121,227,251,28,231,97,11,227,238,53,
+227,103,21,66,92,103,107,40,205,79,80,65,131,96,12,2,49,50,52,192,
+13,244,238,7,224,17,3,159,168,128,62,224,48,10,133,105,224,17,3,137,
+93,96,48,2,56,55,53,32,125,224,113,0,233,76,1,229,255,2,64,162,
+132,138,65,17,159,19,136,113,110,28,64,30,132,41,237,227,8,234,255,15,
+234,248,4,64,63,196,27,2,90,32,64,65,40,32,6,224,7,0,112,255,
+64,35,131,187,70,113,96,24,198,118,65,35,227,211,3,36,165,239,25,2,
+67,225,227,204,7,65,164,177,239,110,8,224,9,1,189,13,164,157,65,214,
+98,101,33,19,2,95,56,32,245,111,1,235,225,29,238,212,1,245,168,12,
+129,44,224,107,0,2,85,32,102,225,159,0,2,40,41,34,138,63,224,91,
+16,236,53,3,224,72,18,2,91,93,34,224,72,14,213,215,245,207,2,198,
+137,65,53,238,252,2,229,244,19,165,239,64,49,131,167,239,153,3,96,19,
+239,92,13,64,52,225,149,8,238,197,1,100,123,229,60,1,100,71,68,178,
+249,161,2,32,68,65,198,134,80,228,168,2,85,162,132,226,32,159,98,39,
+238,81,15,150,147,238,75,3,128,85,213,92,98,138,192,4,194,108,78,68,
+240,71,11,127,59,224,234,12,2,49,54,32,231,68,34,224,88,5,109,41,
+231,72,4,64,106,116,205,238,4,10,64,108,241,116,1,231,99,8,128,86,
+231,100,3,161,55,190,215,2,52,48,51,47,175,46,6,33,18,69,15,101,
+19,231,139,13,191,8,231,139,3,230,208,3,196,52,64,210,242,149,18,232,
+192,39,242,137,10,229,87,21,68,9,97,172,102,163,162,221,159,111,91,163,
+238,69,4,244,232,1,151,142,102,176,226,111,6,131,20,160,114,231,28,3,
+65,92,65,221,64,5,226,125,1,193,205,192,2,95,245,218,155,64,237,224,
+190,2,231,185,3,199,67,231,189,22,224,156,3,226,227,40,241,159,0,233,
+138,78,233,136,4,233,135,10,49,120,197,179,2,55,32,85,99,222,64,124,
+81,226,2,53,48,56,64,80,247,88,7,99,103,94,222,34,18,156,138,96,
+72,64,163,114,77,32,227,64,14,131,188,2,80,32,58,96,89,225,174,18,
+129,35,112,147,160,78,128,40,198,117,225,189,5,97,186,192,30,97,185,225,
+199,77,165,203,65,197,224,22,0,225,185,1,194,87,64,220,132,85,129,118,
+160,23,33,133,224,74,0,64,34,132,11,88,135,96,14,131,140,32,165,65,
+9,2,56,54,32,128,79,135,37,64,144,96,43,147,148,64,21,161,58,225,
+56,4,116,92,225,51,1,234,2,2,97,6,128,7,98,0,224,27,0,170,
+24,129,43,234,14,1,234,6,0,185,19,234,64,0,64,125,184,83,139,105,
+127,169,229,225,6,226,235,12,34,233,225,46,4,2,95,49,50,245,3,1,
+64,124,245,63,1,128,39,232,166,3,100,14,96,11,64,128,194,157,192,20,
+235,13,14,97,122,128,182,190,113,161,230,32,152,2,89,32,66,34,134,64,
+104,64,39,66,63,232,215,3,2,89,32,64,225,61,2,67,163,129,30,134,
+4,242,248,1,64,76,252,33,0,189,184,34,68,97,167,235,69,1,66,86,
+163,167,192,143,180,78,2,48,57,51,224,244,0,231,82,4,2,58,49,52,
+64,20,64,229,87,169,161,144,64,21,169,232,134,173,228,215,2,227,33,22,
+227,21,0,229,10,3,96,24,32,121,52,128,2,95,54,49,224,51,7,64,
+15,224,45,2,128,21,105,116,224,47,8,236,103,4,131,68,140,80,164,7,
+96,189,97,178,64,30,64,5,117,48,103,149,96,5,64,34,131,50,2,35,
+49,48,192,0,36,37,96,40,162,234,64,144,33,138,64,20,166,184,2,51,
+32,66,227,2,12,225,248,6,194,139,97,215,64,16,129,248,163,15,129,58,
+224,225,1,239,47,1,155,217,161,171,66,141,137,192,64,128,131,143,68,199,
+96,90,99,155,35,115,64,14,131,29,2,85,32,58,128,146,131,226,2,52,
+32,75,128,57,42,153,232,160,1,193,101,224,13,5,71,242,108,195,104,99,
+128,85,2,56,56,32,129,6,224,39,1,99,201,65,145,96,20,104,32,133,
+248,2,52,56,52,232,62,1,2,51,53,57,160,20,132,163,173,57,160,53,
+77,179,2,51,53,56,127,251,238,89,7,128,57,161,64,33,205,246,7,12,
+2,65,109,98,2,105,103,117,2,111,117,115,108,244,192,46,2,54,49,57,
+170,22,65,169,35,232,194,242,64,201,130,9,68,246,233,115,2,99,33,2,
+95,51,55,106,152,106,75,224,121,23,2,58,92,49,2,48,38,34,224,116,
+2,224,41,16,2,32,32,102,2,111,117,110,2,100,58,32,32,0,160,48,
+132,31,224,119,0,104,179,97,250,64,16,140,79,169,119,237,150,3,2,69,
+79,70,239,130,4,224,114,7,78,17,33,130,128,31,224,145,21,2,101,120,
+112,2,101,99,116,2,101,100,58,160,145,104,243,96,252,2,50,54,49,241,
+34,1,225,53,1,131,28,55,168,183,170,33,254,2,60,32,64,2,35,54,
+32,72,18,224,18,4,154,83,224,18,4,64,149,130,47,224,19,2,135,171,
+2,75,32,102,224,150,0,2,84,82,97,2,119,34,32,96,114,236,164,3,
+160,246,96,21,2,75,32,66,224,215,18,2,123,45,35,160,207,81,65,65,
+75,224,243,2,2,35,45,125,216,51,224,160,8,70,108,224,159,6,66,148,
+224,158,6,2,73,110,100,170,144,160,139,224,27,2,2,66,114,97,149,191,
+128,27,165,127,225,26,6,142,51,224,18,4,67,42,224,121,6,65,246,64,
+93,67,38,242,9,6,123,235,224,23,11,102,234,231,221,0,224,151,1,2,
+125,32,108,2,97,121,111,2,117,116,34,96,143,225,41,2,224,23,4,128,
+111,99,39,2,95,53,49,44,116,2,53,56,52,193,42,224,25,2,224,20,
+0,225,222,7,224,195,9,64,143,224,57,1,38,84,225,52,1,160,18,48,
+212,224,23,1,193,218,235,122,44,226,163,0,229,170,1,165,146,100,192,232,
+16,1,98,114,224,30,2,75,255,174,61,2,56,51,32,124,249,108,224,128,
+209,96,4,68,186,173,169,100,214,96,95,165,197,2,83,32,85,233,204,1,
+234,50,0,233,239,2,161,36,253,52,3,204,255,224,46,30,99,56,230,85,
+2,128,119,224,39,10,143,161,160,85,224,39,17,131,213,196,247,197,133,64,
+37,172,152,224,82,2,156,225,104,158,155,151,199,105,254,6,5,124,31,161,
+69,69,103,64,29,2,52,49,54,162,3,192,236,224,111,25,224,71,0,192,
+110,254,144,1,224,38,10,236,79,0,224,77,2,102,79,2,95,54,53,74,
+233,251,107,0,2,52,55,51,96,48,227,146,0,191,0,2,52,50,50,244,
+142,0,66,14,69,246,111,57,64,200,108,223,66,18,2,95,54,52,192,9,
+2,49,56,49,2,32,35,50,224,235,0,69,16,107,58,167,158,2,51,56,
+51,227,148,7,160,170,225,152,1,252,222,0,161,152,115,35,96,28,64,31,
+224,28,1,103,78,110,205,225,59,31,148,77,193,59,226,6,12,150,33,224,
+157,0,65,1,32,214,33,230,236,242,4,224,51,29,99,72,226,18,5,224,
+42,14,106,157,128,14,107,208,64,8,183,5,2,52,51,49,227,11,0,96,
+226,97,208,192,254,35,110,128,201,224,248,21,232,84,1,193,92,170,124,171,
+112,32,83,106,47,128,134,231,240,1,73,98,98,169,76,217,160,70,228,8,
+2,194,194,235,42,0,161,164,254,160,1,64,9,234,240,0,138,238,234,219,
+0,233,33,0,201,31,150,37,245,28,0,226,39,6,120,87,224,19,6,39,
+134,192,177,224,51,12,147,231,2,52,56,48,228,78,2,247,83,0,179,122,
+96,219,224,213,20,193,94,226,144,1,64,49,224,21,7,33,169,64,115,130,
+163,228,213,13,102,24,224,132,1,223,191,160,29,97,240,240,116,2,227,116,
+4,210,107,231,212,16,2,85,110,114,2,101,99,111,2,103,110,105,2,122,
+101,100,2,32,105,110,2,112,117,116,200,180,230,92,5,99,139,193,242,138,
+100,32,94,85,4,192,185,131,29,216,130,107,94,64,33,64,220,202,126,130,
+19,242,135,4,2,73,108,108,2,101,103,97,2,108,32,67,2,104,97,114,
+2,32,108,105,2,116,101,114,2,97,108,34,129,65,128,218,225,88,6,166,
+18,210,85,225,141,0,65,131,228,186,1,224,162,6,64,6,64,31,129,74,
+224,81,38,225,253,45,140,125,100,184,229,37,0,164,167,237,207,4,244,122,
+1,96,126,96,72,86,176,198,250,251,223,5,128,148,229,87,39,199,106,172,
+36,238,159,0,165,4,97,45,64,91,32,39,80,89,231,117,0,224,195,4,
+163,12,224,195,5,224,181,3,64,32,224,181,6,224,180,72,224,78,0,64,
+66,250,202,1,128,22,142,4,224,32,2,132,150,225,165,18,72,118,141,235,
+68,114,99,150,240,37,1,86,116,229,131,4,147,11,198,12,32,30,198,159,
+156,154,140,108,34,25,117,33,140,229,65,78,64,100,244,187,3,225,81,7,
+196,252,229,2,0,242,235,3,128,15,224,16,0,231,181,14,225,34,0,224,
+39,2,32,57,119,54,240,56,3,240,58,0,224,115,4,129,207,144,65,224,
+123,2,209,100,231,52,7,200,28,228,214,1,107,223,224,153,1,130,238,41,
+189,232,29,1,224,236,1,240,84,6,232,252,1,162,128,226,39,56,65,26,
+177,200,224,202,1,166,169,65,119,192,229,244,130,1,162,203,228,1,1,128,
+172,139,47,92,232,224,83,3,244,108,1,128,75,160,52,224,177,6,238,130,
+0,224,182,0,224,196,35,227,169,7,224,172,2,228,57,14,196,52,128,174,
+227,120,24,224,96,1,66,156,214,142,129,232,168,110,168,16,108,114,253,93,
+3,239,49,3,2,108,101,116,252,219,7,2,119,104,101,2,114,101,34,224,
+20,6,2,100,111,34,224,17,6,2,111,102,34,252,228,3,225,95,1,99,
+30,128,11,227,146,2,177,198,226,174,1,235,214,8,238,85,1,161,47,255,
+8,0,227,184,6,227,218,2,154,157,137,1,232,123,0,227,253,5,227,111,
+1,249,123,2,224,67,9,130,93,235,222,10,228,31,11,88,200,228,31,3,
+160,149,224,106,96,162,43,65,249,146,192,228,146,1,138,22,233,141,9,254,
+119,0,2,51,55,48,233,105,2,255,127,0,234,157,6,113,112,164,149,224,
+27,0,191,156,88,106,107,232,255,33,7,231,53,1,32,49,224,141,2,51,
+40,108,23,227,104,0,204,153,135,230,226,169,3,88,192,90,153,206,60,154,
+165,237,31,37,234,234,8,232,208,0,234,115,1,152,145,234,127,6,235,205,
+15,143,37,160,204,219,44,32,131,41,31,163,195,160,35,192,13,96,138,204,
+252,246,107,1,225,161,4,237,247,11,128,140,224,215,7,206,102,224,215,122,
+134,21,224,215,24,230,120,0,236,254,4,224,146,40,161,254,224,153,19,160,
+140,224,139,18,187,194,232,15,3,100,138,247,0,1,230,64,1,229,147,2,
+197,146,119,0,173,30,229,146,32,241,135,3,161,57,192,25,224,108,19,2,
+50,52,32,64,76,43,221,64,114,222,61,230,6,33,71,219,86,186,236,94,
+0,99,176,236,51,2,97,43,131,88,2,55,54,32,227,190,1,2,92,51,
+52,2,38,115,114,2,99,47,77,2,105,99,114,2,111,72,115,2,47,76,
+101,2,120,46,104,2,115,92,51,2,52,38,44,2,51,52,52,32,89,180,
+51,246,218,1,226,108,8,224,11,2,205,225,166,121,239,241,9,129,134,178,
+101,51,153,44,166,33,31,35,250,2,53,56,51,32,175,2,53,51,57,243,
+116,0,198,79,225,213,3,252,22,4,224,107,2,195,29,241,134,14,161,39,
+233,191,3,194,38,228,152,3,241,56,6,241,217,7,226,184,21,32,0,133,
+164,129,209,104,44,224,219,12,69,128,44,214,224,29,14,130,122,115,130,2,
+52,57,32,96,101,226,20,3,96,30,2,55,52,32,66,217,64,9,224,65,
+9,90,184,64,55,122,3,136,169,224,104,11,168,185,194,105,225,143,1,137,
+24,232,196,5,225,24,61,224,218,22,230,186,8,171,63,232,55,0,244,14,
+21,165,43,226,6,19,178,115,129,160,70,230,225,65,13,224,35,0,225,165,
+17,224,33,28,129,171,82,250,65,171,225,132,13,225,171,41,225,53,1,205,
+65,127,218,68,3,154,135,64,32,121,35,37,65,192,96,32,12,123,35,96,
+51,64,42,153,232,105,164,65,188,2,50,50,50,120,223,67,41,253,115,1,
+131,109,239,67,4,65,253,241,200,1,96,226,2,50,52,53,197,160,133,139,
+243,250,0,129,32,109,109,64,23,99,22,32,214,244,26,2,224,33,25,173,
+172,130,22,235,242,0,241,113,1,92,239,198,3,66,135,33,68,224,78,16,
+129,71,129,70,66,26,2,50,51,50,232,98,3,98,198,128,19,91,39,32,
+7,224,151,17,224,32,24,224,184,2,97,59,243,94,1,2,52,55,53,225,
+47,1,64,46,198,193,64,83,224,189,18,224,32,26,97,218,154,141,225,153,
+19,64,37,152,15,227,112,1,232,143,2,225,90,0,2,50,56,55,128,93,
+128,159,225,94,19,160,129,225,97,3,254,159,3,64,245,33,231,2,85,32,
+90,192,41,226,83,1,131,36,160,117,231,232,1,2,50,51,57,224,48,3,
+224,100,1,224,144,1,225,133,19,225,135,4,224,98,50,65,43,152,219,231,
+2,1,225,43,11,130,134,225,42,47,121,55,248,247,5,225,61,2,224,103,
+3,68,207,96,86,64,70,224,240,11,224,122,39,240,76,2,224,118,9,129,
+58,32,113,224,97,3,224,254,0,200,204,99,195,225,219,7,168,22,196,77,
+205,171,224,43,6,102,25,224,220,0,94,145,224,105,1,224,201,32,249,76,
+3,224,120,109,192,49,224,95,0,240,24,3,109,5,2,49,32,102,233,115,
+0,2,68,97,116,2,97,46,73,2,110,116,101,2,103,114,97,2,108,46,
+94,2,58,32,110,53,68,2,116,105,118,2,101,32,101,2,120,112,111,2,
+110,101,110,156,122,66,122,242,223,0,235,67,1,226,0,3,128,151,192,200,
+32,13,173,207,224,189,3,160,35,224,177,4,224,35,20,98,24,64,124,146,
+247,32,105,2,50,32,75,166,55,144,109,230,98,4,102,170,230,98,2,64,
+62,64,42,206,158,64,44,64,25,2,51,54,32,201,192,188,36,2,80,32,
+75,248,142,0,209,27,199,237,193,194,234,205,13,60,249,95,145,230,71,2,
+242,149,3,32,94,234,142,2,76,2,135,242,210,4,134,70,224,37,5,128,
+39,194,218,224,160,18,234,243,3,136,140,64,72,224,73,3,97,167,236,120,
+0,192,56,106,99,189,109,246,20,1,151,103,192,152,196,9,242,48,0,224,
+90,1,224,113,4,96,92,224,241,7,192,26,129,20,212,130,147,28,233,51,
+1,225,89,26,80,95,229,62,1,224,241,16,225,115,3,224,237,7,225,36,
+86,169,7,78,25,192,11,2,53,56,32,172,48,168,177,226,69,30,205,26,
+252,253,1,64,103,73,176,183,70,224,94,3,224,119,4,224,107,93,96,12,
+35,78,35,92,141,224,64,19,35,90,67,165,64,22,137,243,2,90,32,83,
+116,250,2,54,48,32,227,211,7,99,234,237,48,2,231,237,7,253,57,32,
+235,86,15,221,37,99,233,231,142,3,196,156,254,230,33,224,112,29,2,56,
+56,32,224,111,100,253,210,1,64,112,32,98,224,112,87,185,216,224,111,96,
+190,136,128,111,34,137,224,111,11,248,189,16,192,59,2,83,32,80,224,98,
+18,246,217,0,224,98,18,233,172,1,64,45,224,33,8,66,248,97,136,66,
+246,140,191,85,109,122,252,77,64,32,112,70,210,237,44,7,146,77,2,52,
+50,53,131,47,139,29,224,56,17,135,32,64,25,188,42,192,56,235,48,0,
+254,115,13,64,102,224,19,7,65,198,64,58,170,63,224,115,16,129,66,64,
+107,224,172,6,135,253,224,229,18,129,85,94,133,126,243,224,57,1,250,178,
+3,213,80,228,100,0,250,80,8,166,30,201,248,40,74,2,82,32,95,224,
+47,1,234,152,1,166,145,229,223,0,249,135,2,224,91,8,251,0,2,207,
+149,145,106,165,228,252,133,0,224,57,4,206,115,253,185,5,133,93,224,162,
+0,113,94,130,215,54,147,163,157,108,103,2,53,50,49,133,81,110,247,250,
+176,2,127,93,34,161,159,9,225,68,3,203,7,65,54,249,76,1,232,181,
+4,149,129,64,119,148,56,231,122,81,33,114,231,122,8,231,119,34,231,64,
+19,66,19,231,63,5,134,104,64,247,137,171,64,84,98,108,36,75,174,148,
+174,49,169,17,141,58,233,195,65,88,126,233,195,32,235,208,2,232,91,44,
+224,150,34,234,90,4,161,82,161,79,96,86,231,168,7,246,131,1,224,22,
+1,64,103,226,50,1,239,163,0,33,109,34,87,65,109,2,80,32,79,114,
+24,67,102,163,108,64,35,249,21,0,229,62,3,114,7,224,25,13,150,68,
+247,113,0,149,163,249,89,1,140,53,126,0,2,53,49,53,150,4,224,28,
+10,220,38,132,186,236,170,1,2,44,59,40,2,41,91,93,2,123,125,95,
+2,96,34,32,238,45,2,219,197,227,145,0,107,60,224,88,5,32,75,2,
+51,53,32,224,35,2,104,187,127,94,128,136,248,195,0,227,66,23,248,236,
+1,193,190,228,102,0,132,142,226,58,4,225,253,1,227,137,9,96,27,227,
+33,7,235,84,5,190,69,96,26,248,40,1,192,250,252,110,3,255,206,20,
+231,16,4,164,234,193,0,246,117,2,227,69,16,235,65,73,248,116,0,160,
+162,224,220,5,248,112,2,2,53,53,32,235,111,5,220,124,133,69,247,63,
+3,162,212,228,17,23,235,214,29,224,94,2,252,179,1,32,142,138,189,231,
+118,12,2,57,53,32,231,118,8,213,128,224,155,3,225,106,20,236,117,31,
+230,71,1,184,68,224,99,2,192,25,96,54,2,67,32,79,164,64,212,119,
+132,19,227,100,15,2,33,64,35,2,36,37,38,2,63,43,46,2,47,60,
+61,2,62,63,92,2,57,50,38,2,94,124,58,2,45,126,34,135,6,130,
+111,226,69,3,225,13,15,151,112,224,20,6,76,56,238,243,4,231,87,3,
+207,27,225,29,57,194,55,163,23,189,221,229,119,2,199,238,99,63,233,69,
+15,225,206,10,215,215,232,115,3,228,2,100,226,1,2,224,228,0,64,165,
+193,227,194,184,237,199,0,246,253,0,2,89,32,66,161,80,247,83,3,224,
+119,2,96,113,131,147,227,139,2,64,54,225,245,1,228,98,10,232,132,0,
+96,117,38,176,64,16,226,111,2,225,210,23,239,157,75,228,75,5,160,190,
+96,199,236,155,14,2,57,50,32,97,70,224,229,17,165,41,128,229,252,177,
+2,35,31,2,38,34,32,224,237,1,226,209,0,236,213,6,151,220,136,177,
+224,32,0,135,4,225,155,3,212,4,252,74,28,128,84,239,191,6,224,155,
+11,252,15,3,100,214,140,189,233,220,1,64,16,217,193,224,144,20,193,165,
+131,64,225,148,1,167,20,225,55,9,202,249,227,119,9,68,183,52,34,136,
+243,72,233,64,43,226,174,0,226,154,9,198,48,168,126,129,229,224,54,5,
+224,233,3,224,210,0,72,228,144,152,195,20,232,187,12,97,76,229,59,21,
+228,182,0,226,201,4,228,191,0,160,172,2,85,32,35,193,152,149,239,236,
+238,1,172,160,225,67,1,190,154,229,136,12,2,97,98,102,2,110,114,116,
+2,118,92,57,2,50,38,92,63,1,2,39,34,32,237,30,1,226,200,17,
+131,141,229,164,11,2,49,51,55,96,108,89,72,77,164,65,28,2,35,54,
+52,129,76,33,33,224,19,0,102,199,225,11,8,2,66,32,79,32,216,128,
+46,228,109,0,225,119,0,253,20,1,253,17,14,240,183,1,227,217,1,78,
+71,241,186,8,162,26,233,156,6,231,235,16,231,5,0,32,82,33,121,128,
+68,192,41,110,136,160,43,224,42,9,96,145,192,42,110,237,231,66,30,123,
+75,230,119,9,66,104,188,202,232,49,1,106,118,128,180,64,31,219,15,229,
+141,9,227,32,7,32,98,165,15,111,23,224,10,4,227,28,4,236,4,0,
+225,39,15,64,119,144,48,2,80,32,58,119,44,218,65,132,140,132,15,93,
+115,248,25,5,2,114,101,97,2,100,58,32,2,102,97,105,2,108,101,100,
+130,124,35,89,64,64,176,9,224,64,2,244,9,4,32,78,81,18,32,20,
+223,144,107,212,128,3,132,76,96,46,97,126,2,49,54,56,64,166,66,5,
+96,52,224,11,5,64,109,144,61,227,70,2,226,64,1,229,66,0,2,95,
+54,53,32,29,60,109,228,253,2,35,51,2,46,47,108,2,105,98,47,2,
+84,101,120,2,116,47,82,32,204,2,47,76,101,2,120,46,104,2,115,92,
+51,2,52,38,44,2,54,57,58,2,49,34,32,228,252,0,64,139,64,108,
+143,115,109,32,64,14,142,138,32,32,59,81,2,95,53,54,138,3,161,203,
+81,81,181,4,125,167,249,101,1,64,28,196,113,64,11,130,20,109,151,64,
+14,194,3,66,1,2,35,52,32,32,129,33,194,64,24,129,164,199,253,176,
+11,134,243,129,230,64,36,129,189,160,34,99,83,160,61,129,149,160,24,100,
+128,160,24,241,126,3,103,91,251,51,8,224,10,0,247,210,8,252,1,0,
+233,160,3,33,3,80,209,64,8,37,131,238,174,2,225,125,1,2,85,110,
+109,2,97,116,99,2,104,101,100,2,32,34,32,232,161,7,241,204,1,194,
+201,226,251,0,177,126,241,181,1,229,168,15,224,62,10,128,59,241,215,3,
+223,158,233,194,3,232,90,8,162,165,32,211,82,192,187,37,64,15,195,214,
+201,180,237,251,3,97,9,64,56,2,95,51,54,108,191,224,64,7,230,45,
+0,252,205,2,224,214,0,46,155,249,251,3,238,197,0,234,78,1,242,187,
+6,229,40,5,136,139,224,36,6,227,135,0,175,88,242,231,1,209,168,234,
+162,5,249,74,2,239,67,3,224,82,4,243,49,0,225,102,4,226,19,1,
+224,165,7,240,16,10,241,230,1,224,67,48,181,61,224,41,3,224,60,1,
+224,57,21,245,205,0,241,204,3,230,170,1,225,145,2,226,102,10,244,9,
+6,233,128,19,132,229,226,4,10,130,35,32,20,201,92,224,16,0,129,195,
+226,124,12,227,243,1,166,125,163,111,227,93,1,2,66,97,100,2,32,115,
+116,2,114,105,110,2,103,32,103,2,97,112,34,232,252,2,224,80,6,234,
+32,0,128,81,68,188,129,77,227,3,6,83,107,96,255,96,54,226,255,5,
+132,118,133,24,69,133,2,67,32,80,54,37,69,10,40,60,36,244,33,100,
+244,187,3,232,235,3,164,100,232,11,9,96,42,224,33,18,2,57,55,32,
+224,32,22,203,143,224,99,16,94,153,224,133,22,245,62,0,224,33,16,129,
+12,224,33,19,224,135,24,136,213,224,67,20,97,246,233,213,51,233,190,2,
+233,209,19,98,84,132,189,37,187,2,50,53,50,159,159,2,49,48,53,161,
+199,66,0,64,78,64,5,128,72,71,90,225,229,5,245,184,2,175,61,162,
+57,33,9,251,215,14,234,242,1,164,82,239,61,11,116,42,192,23,2,95,
+56,52,32,147,140,25,229,211,0,201,187,32,7,230,78,2,64,228,225,132,
+2,66,157,224,179,8,249,213,1,238,109,5,244,167,0,224,111,4,224,99,
+8,224,98,27,225,22,1,128,86,224,35,11,230,26,0,96,81,2,57,32,
+35,67,7,67,54,215,246,160,22,32,107,64,43,227,80,0,128,43,164,32,
+160,21,99,133,66,57,224,100,16,96,33,86,78,224,32,20,69,35,224,33,
+22,72,219,224,33,20,228,11,10,224,32,5,66,83,224,99,21,32,212,224,
+33,15,68,125,137,135,102,187,232,49,4,229,196,4,230,175,0,224,16,1,
+229,227,6,150,98,99,92,172,27,241,202,18,230,100,1,250,141,1,250,48,
+2,226,64,0,45,190,42,28,89,173,248,59,12,64,115,229,150,1,58,42,
+163,106,192,223,142,57,224,23,1,142,15,224,13,0,219,140,233,49,0,227,
+41,0,66,96,99,195,129,35,79,6,33,35,151,198,233,145,10,2,78,85,
+76,102,40,98,63,224,37,16,2,83,79,72,128,37,64,157,224,37,17,2,
+84,88,34,96,37,64,125,224,37,16,2,69,84,88,128,37,64,200,224,37,
+17,2,79,84,34,96,37,68,110,224,37,17,2,78,81,34,96,37,65,7,
+224,37,16,2,65,67,75,128,37,69,183,224,37,16,2,66,69,76,128,37,
+69,27,224,37,17,2,83,34,32,64,36,67,248,224,36,16,2,72,84,34,
+96,36,144,193,224,36,14,2,76,70,34,129,82,225,121,20,2,86,84,34,
+128,37,225,121,20,2,70,70,34,128,37,225,121,20,2,67,82,34,128,37,
+225,121,20,2,83,79,34,128,37,225,121,20,2,83,73,34,128,37,225,121,
+20,2,68,76,69,160,38,225,122,20,2,68,67,49,160,38,225,123,20,2,
+68,67,50,160,38,225,125,20,2,68,67,51,160,38,225,127,20,2,68,67,
+52,162,173,225,128,20,2,78,65,75,160,38,226,251,21,2,89,78,34,128,
+38,226,252,22,2,66,34,32,96,38,225,131,20,2,67,65,78,160,38,226,
+254,21,2,77,34,32,96,37,225,132,20,2,83,85,66,160,38,225,132,20,
+2,69,83,67,160,38,225,132,20,2,70,83,34,128,37,225,131,20,2,71,
+83,34,128,37,225,130,20,2,82,83,34,132,9,225,129,20,2,85,83,34,
+128,37,225,128,21,2,80,34,32,96,37,225,127,20,2,68,69,76,195,41,
+64,229,244,32,4,224,0,14,69,68,143,182,2,95,52,56,169,122,70,40,
+102,145,2,52,51,52,113,206,144,2,177,212,95,143,2,95,53,57,233,104,
+0,2,95,54,48,224,11,0,64,77,143,248,2,62,61,32,64,12,143,246,
+2,62,32,58,128,62,32,11,2,60,32,58,128,87,32,11,2,105,99,109,
+2,112,32,58,128,109,144,85,244,20,12,93,0,2,44,123,125,2,96,59,
+34,160,98,207,220,186,5,230,216,0,242,75,1,244,154,2,175,188,66,107,
+64,6,102,115,71,105,156,37,219,114,102,120,142,234,50,197,236,21,1,138,
+43,230,168,0,32,6,236,98,2,64,139,172,35,251,46,2,138,19,128,14,
+234,173,1,65,69,139,226,117,198,104,238,139,174,224,35,6,2,55,48,32,
+224,35,2,96,13,128,105,200,15,224,245,1,147,191,224,245,35,175,69,224,
+244,54,66,247,160,244,224,184,2,115,123,224,184,0,121,166,64,43,130,93,
+224,182,0,250,121,16,192,61,224,19,3,174,143,224,225,35,237,253,2,224,
+225,51,130,197,64,38,2,53,53,52,248,191,1,232,184,1,115,24,232,184,
+0,160,13,76,98,2,53,50,48,64,34,64,186,232,195,0,238,43,1,64,
+91,131,20,81,16,225,65,21,110,15,224,38,10,226,69,13,187,213,224,39,
+2,52,31,226,73,8,244,238,6,2,100,105,103,2,105,116,84,2,111,73,
+110,2,116,34,32,170,23,237,26,11,224,17,0,173,37,64,88,240,163,0,
+224,51,29,96,180,224,51,23,64,40,159,159,65,39,244,26,1,43,45,106,
+24,147,220,65,242,225,64,13,224,241,5,2,57,48,32,109,203,245,38,18,
+2,68,97,116,2,97,47,67,2,104,97,114,213,34,2,57,51,58,213,34,
+238,46,5,226,43,0,238,61,19,161,236,224,239,0,128,199,212,164,185,68,
+249,28,3,185,74,237,149,2,242,6,12,194,201,96,78,182,27,238,118,4,
+241,172,15,69,116,171,76,143,146,113,37,34,155,213,179,71,247,97,75,239,
+134,0,239,178,0,224,75,1,110,35,233,78,14,2,85,82,67,137,5,251,
+147,5,99,105,221,217,67,122,2,95,49,57,76,234,2,52,49,53,140,111,
+96,19,2,53,53,57,64,169,128,165,38,128,67,73,211,202,113,159,224,174,
+4,187,10,96,31,64,186,197,16,147,222,219,180,236,242,1,225,76,0,119,
+231,241,184,12,236,231,3,188,167,111,5,242,125,8,2,85,110,99,2,108,
+111,115,53,218,2,123,45,32,2,99,111,109,2,109,101,110,131,49,135,99,
+228,160,5,252,192,2,240,217,12,55,58,236,216,3,109,192,243,111,17,127,
+146,245,135,0,161,15,242,237,6,237,101,13,224,151,39,192,105,224,150,28,
+2,49,50,53,224,151,30,227,42,0,224,151,7,247,102,3,245,5,20,224,
+46,30,166,45,244,72,1,224,234,0,245,32,10,224,178,10,244,137,1,160,
+26,244,196,1,224,18,4,246,138,0,195,150,34,140,64,27,120,239,122,175,
+250,0,0,2,95,51,52,32,89,225,158,11,128,5,64,57,135,32,52,99,
+161,103,160,51,35,73,239,18,1,64,13,99,63,102,87,224,79,6,101,89,
+64,148,135,222,64,83,166,190,146,139,224,88,5,224,61,6,128,47,230,146,
+16,230,107,5,132,212,229,81,38,2,55,58,49,229,81,48,160,112,229,93,
+2,96,174,230,25,4,97,246,134,25,68,113,128,199,229,29,6,156,69,64,
+7,92,98,241,72,1,254,146,4,2,60,32,64,111,106,116,151,226,244,0,
+2,67,32,61,2,61,32,64,224,24,0,220,164,65,229,252,6,0,227,219,
+10,224,69,13,250,222,1,224,69,3,185,200,130,184,113,59,224,91,6,229,
+128,17,2,109,111,100,2,117,108,101,247,13,0,2,90,32,75,235,244,2,
+201,43,130,189,139,217,33,103,99,82,32,254,60,217,32,2,253,140,0,217,
+232,224,175,3,200,213,32,173,160,88,65,101,198,208,146,229,63,252,96,21,
+203,149,37,140,250,219,5,224,13,0,187,98,181,66,33,179,76,199,2,52,
+48,50,81,212,66,13,2,52,48,49,131,97,64,231,65,228,231,38,0,2,
+75,32,66,160,44,106,248,2,48,52,32,48,239,100,98,198,93,96,59,224,
+60,4,250,145,4,225,235,5,114,243,246,85,1,224,25,1,250,179,6,226,
+25,3,248,205,0,249,208,3,224,46,17,196,36,249,74,7,225,88,4,192,
+30,66,12,96,88,247,46,2,147,69,246,58,4,192,171,250,198,0,229,129,
+3,251,78,2,250,40,5,246,146,0,226,79,1,179,65,229,224,6,246,145,
+3,243,227,10,200,170,135,38,129,139,194,81,161,140,225,141,6,227,5,1,
+224,51,12,39,252,203,169,224,52,3,133,144,192,63,64,22,248,145,2,224,
+28,1,64,24,193,147,227,216,9,248,87,3,65,70,116,144,201,105,212,204,
+65,141,64,78,160,229,163,157,193,47,224,231,13,96,35,224,179,9,140,140,
+64,152,253,245,3,224,190,2,194,36,68,135,251,155,5,230,215,3,181,232,
+225,132,3,224,159,1,225,77,0,224,158,23,160,108,225,138,5,129,190,193,
+61,250,236,5,224,165,0,224,95,50,184,84,160,95,192,69,128,101,226,47,
+15,234,46,0,64,22,253,225,1,226,186,3,229,133,11,225,77,1,99,56,
+228,96,1,246,203,1,65,239,222,71,227,133,3,233,138,8,232,197,3,249,
+179,2,232,243,6,234,65,19,192,59,68,221,225,22,8,226,202,3,247,118,
+18,255,42,6,224,162,12,227,250,2,230,117,17,129,229,224,138,12,203,78,
+235,74,0,224,208,16,128,169,253,134,13,2,108,97,121,2,111,117,116,2,
+32,101,114,2,114,111,114,2,32,125,34,142,83,229,188,21,224,153,24,227,
+241,5,161,78,96,43,64,23,163,113,228,88,6,229,128,1,230,183,4,102,
+98,226,56,1,135,101,192,13,130,23,98,51,227,140,2,224,10,4,229,168,
+3,2,95,51,48,47,202,101,43,231,184,2,230,179,0,228,237,12,225,58,
+1,130,242,138,50,66,242,225,66,1,2,115,121,110,2,116,97,120,129,66,
+225,64,30,71,95,141,169,103,117,97,43,167,118,237,5,1,32,24,99,196,
+137,11,64,122,192,47,67,90,128,46,67,101,32,21,104,39,64,14,138,40,
+2,85,32,75,2,32,65,32,96,102,68,7,32,17,128,229,35,153,2,90,
+32,85,169,79,233,35,4,224,18,6,138,37,231,0,8,224,18,6,106,187,
+103,254,163,206,177,36,64,103,32,159,133,52,2,85,32,73,224,7,4,105,
+17,224,67,1,64,225,160,42,192,49,224,140,7,65,155,224,121,6,106,102,
+224,72,5,224,115,2,224,122,1,128,7,224,41,6,129,108,160,41,233,97,
+3,65,46,138,138,107,90,32,24,2,95,54,50,195,82,251,217,12,66,71,
+64,53,138,167,161,180,97,228,161,180,137,90,188,29,33,0,64,19,137,88,
+2,73,32,58,130,34,203,216,98,236,81,246,140,104,103,77,2,90,32,90,
+67,92,2,51,53,56,2,32,64,89,96,93,64,173,201,225,235,7,1,229,
+254,5,224,204,0,130,75,140,138,208,144,106,143,197,72,224,24,13,160,8,
+109,104,2,51,57,53,199,16,176,14,85,236,232,220,0,34,133,143,99,195,
+59,2,51,57,54,129,155,96,11,117,253,2,57,56,32,64,72,64,23,2,
+95,49,54,118,99,128,6,135,86,192,205,198,98,230,33,5,198,198,203,97,
+224,7,1,163,227,228,56,1,231,112,1,169,108,139,122,224,33,13,128,27,
+224,26,6,171,172,128,137,33,141,232,135,2,224,38,13,132,27,103,93,163,
+221,162,79,194,86,130,243,128,232,96,11,160,16,130,158,67,163,226,166,2,
+33,93,2,54,56,51,161,86,129,8,225,7,4,161,68,192,31,32,4,130,
+31,33,7,174,166,172,94,2,56,52,32,248,21,4,34,206,2,56,32,102,
+228,176,0,2,80,114,101,2,108,117,100,172,101,2,58,49,51,2,57,57,
+32,66,39,2,75,32,58,129,172,162,202,230,201,7,232,213,1,32,8,101,
+152,64,47,132,113,228,173,0,100,150,98,4,160,69,160,44,64,20,237,230,
+1,65,84,226,82,0,201,48,234,238,5,235,206,5,163,192,224,53,5,166,
+122,2,56,56,48,161,28,149,194,138,11,224,5,15,240,67,1,2,51,55,
+57,70,61,65,67,128,1,228,9,1,65,146,224,21,12,2,50,32,90,224,
+20,5,32,19,2,51,32,90,224,17,2,32,16,2,52,32,90,192,14,64,
+72,32,15,224,13,5,129,246,194,65,170,54,204,173,224,224,0,224,16,1,
+160,13,128,8,97,120,230,218,0,225,57,6,192,48,236,206,2,224,27,7,
+244,157,4,159,216,106,71,2,51,56,48,99,197,2,56,57,56,32,4,2,
+53,48,32,226,75,3,39,58,168,115,55,244,33,101,78,21,228,141,9,98,
+135,239,154,1,224,7,29,228,186,10,32,110,130,232,224,112,1,229,168,3,
+64,19,154,188,2,48,49,48,224,149,3,97,94,224,55,1,160,35,151,40,
+224,35,3,193,127,140,200,32,241,71,168,2,56,57,48,235,11,7,2,54,
+49,49,235,10,4,49,177,212,151,224,5,3,128,195,2,51,56,55,65,40,
+96,76,192,77,2,95,49,50,2,54,51,32,64,7,2,48,54,50,234,234,
+6,32,245,88,164,224,17,2,225,82,11,192,122,97,33,161,250,238,35,1,
+224,29,4,234,183,3,64,142,99,12,230,52,13,128,9,225,148,12,236,211,
+1,226,97,0,224,97,3,194,129,56,119,225,179,6,107,28,2,51,57,48,
+139,37,114,220,2,51,57,51,196,37,209,200,36,254,70,121,230,189,5,224,
+7,13,235,134,6,133,246,128,247,235,121,4,224,2,11,233,190,5,227,62,
+3,224,44,21,224,45,26,224,48,6,224,49,42,237,147,0,32,5,64,8,
+228,230,1,102,185,160,5,236,255,5,196,16,134,209,225,169,0,173,14,168,
+226,230,249,1,224,5,3,231,5,4,196,113,226,135,2,226,132,1,164,8,
+98,193,162,39,2,95,57,56,51,200,198,80,232,1,2,97,226,198,185,35,
+41,2,56,32,85,69,29,224,22,4,236,40,3,192,87,224,84,8,160,49,
+229,103,3,40,30,225,147,5,140,64,224,2,23,227,30,2,225,35,5,230,
+204,0,225,140,9,225,183,14,97,33,224,68,11,242,39,3,224,33,11,224,
+98,8,224,28,19,241,172,8,198,210,224,8,5,42,132,183,10,242,172,1,
+225,199,1,225,30,3,229,253,5,2,39,32,89,228,190,2,242,110,2,239,
+76,1,173,94,160,42,192,19,129,137,199,244,192,101,225,37,7,128,92,237,
+100,3,226,193,6,96,5,193,148,224,57,3,162,138,224,25,10,225,33,5,
+227,75,12,195,2,225,90,3,192,164,227,91,5,225,39,5,96,17,32,89,
+233,34,8,160,68,96,86,225,169,2,230,149,1,224,224,7,69,92,207,129,
+73,178,94,0,234,153,4,228,189,0,255,29,1,158,88,43,14,192,120,224,
+15,7,192,0,65,123,64,3,234,39,2,224,225,2,225,255,3,128,242,224,
+189,4,160,226,224,91,9,229,203,10,224,197,0,202,148,244,54,10,226,72,
+11,232,174,1,228,70,2,226,71,255,226,71,45,226,69,1,226,2,19,225,
+67,3,246,225,2,226,8,22,37,118,224,166,6,96,27,226,13,7,250,86,
+3,160,150,70,26,64,148,254,221,2,226,44,1,226,238,17,122,108,224,121,
+9,224,138,11,254,100,2,227,68,13,234,169,2,145,188,2,52,52,54,158,
+90,227,58,10,130,74,178,148,226,26,1,226,10,1,225,250,6,239,69,21,
+225,132,6,233,71,1,224,89,8,162,129,237,175,0,32,92,198,204,224,82,
+4,224,77,16,214,192,223,174,77,243,64,12,160,69,224,74,10,160,70,250,
+65,12,2,110,111,116,2,32,101,120,2,112,111,114,2,116,101,100,250,71,
+0,176,17,105,144,237,221,0,2,95,50,52,137,173,124,95,64,29,217,242,
+2,82,32,64,171,205,132,192,108,24,2,51,55,50,64,4,140,14,2,55,
+53,32,32,4,151,175,167,222,186,152,32,7,224,151,12,2,58,32,34,136,
+43,2,51,48,54,218,122,104,18,74,23,235,83,8,224,5,6,111,139,171,
+49,200,108,96,3,237,188,11,167,215,2,95,57,48,113,183,96,45,97,234,
+239,43,3,175,48,96,21,224,23,8,224,33,3,129,209,235,71,13,244,102,
+5,193,159,162,130,248,56,5,97,174,245,64,4,192,21,224,160,4,224,140,
+0,189,235,237,82,38,229,125,23,228,234,1,139,227,234,110,2,228,15,6,
+250,163,9,165,227,68,22,44,234,162,9,67,215,204,10,224,240,8,224,0,
+6,225,193,12,143,60,225,190,6,210,76,141,33,224,46,3,79,90,253,20,
+8,64,43,2,56,57,54,78,177,2,55,51,32,234,143,2,96,3,239,142,
+3,226,27,60,164,241,242,73,3,97,121,251,78,0,239,27,16,160,62,65,
+165,230,10,1,140,224,237,240,12,226,73,15,196,16,179,54,249,44,4,64,
+61,99,216,69,199,187,145,226,158,49,226,157,36,247,128,4,238,70,1,234,
+248,3,160,13,103,243,229,140,0,232,72,7,232,23,1,248,59,3,227,130,
+15,247,255,0,238,202,9,248,15,7,232,226,7,225,25,6,77,77,64,128,
+128,20,33,30,103,153,2,57,50,48,33,76,2,53,57,48,166,17,129,22,
+143,94,233,163,11,224,138,13,96,241,232,1,3,227,78,0,192,54,231,151,
+1,239,110,4,160,174,111,116,227,120,5,226,20,12,224,79,65,227,217,2,
+227,198,7,227,156,9,228,190,61,99,83,33,41,228,192,2,225,88,6,193,
+211,224,220,9,243,75,3,224,220,8,97,127,224,85,32,160,82,224,65,4,
+224,0,5,225,27,15,102,211,217,193,34,51,71,6,91,209,167,22,2,51,
+52,49,106,56,135,1,2,95,50,57,35,112,32,49,67,166,88,5,244,166,
+0,232,95,0,170,121,245,29,5,202,216,239,209,2,160,17,240,136,4,234,
+42,2,224,17,2,128,91,224,37,0,238,111,4,60,168,142,106,225,133,21,
+235,14,3,246,161,2,163,16,227,148,6,226,251,0,235,223,10,139,211,251,
+237,0,211,122,161,208,96,47,225,201,8,239,187,11,196,77,254,52,7,128,
+96,224,38,50,241,150,4,196,26,225,25,41,179,250,225,25,8,228,158,2,
+224,21,8,226,138,5,129,189,94,72,139,155,229,171,10,231,232,9,224,141,
+14,208,75,255,115,5,229,191,20,224,13,9,224,52,3,224,27,2,232,75,
+1,225,197,1,66,110,224,184,0,224,0,3,236,72,0,224,182,28,192,61,
+224,129,22,224,171,77,224,170,37,223,120,224,170,113,226,166,68,224,241,0,
+238,57,13,255,175,2,229,123,12,69,44,2,57,54,56,243,156,7,247,159,
+0,151,25,247,176,8,224,194,44,239,105,0,224,194,7,208,102,228,132,41,
+101,22,33,102,160,165,232,17,0,139,10,136,22,230,41,16,2,95,54,57,
+39,42,199,97,136,204,143,36,126,73,120,37,216,36,225,53,7,238,183,7,
+232,175,6,186,84,224,52,4,184,125,2,75,32,95,224,119,3,130,18,59,
+38,32,194,70,109,155,225,246,183,7,182,71,242,96,2,198,121,245,129,7,
+106,61,222,56,123,82,47,138,68,85,238,44,26,238,33,19,2,117,110,100,
+2,101,102,105,2,110,101,100,2,32,109,111,2,100,117,108,2,101,58,32,
+238,49,6,187,127,232,86,8,252,143,0,247,148,6,245,205,5,65,116,32,
+71,243,28,8,231,88,9,160,41,2,95,56,32,2,95,54,53,226,30,1,
+253,228,0,229,125,0,234,40,1,226,37,3,154,13,96,33,97,162,65,115,
+221,37,242,187,4,243,16,11,215,207,248,70,20,246,52,6,224,81,0,243,
+36,11,224,163,1,226,231,3,162,237,228,63,1,224,24,1,193,194,113,146,
+190,101,249,223,0,66,182,160,214,232,174,0,146,104,130,2,161,26,224,116,
+1,32,146,184,35,128,25,64,67,206,56,161,37,65,31,158,47,179,115,128,
+130,66,231,2,56,55,55,226,78,20,184,41,131,15,226,73,1,144,255,98,
+61,64,92,158,119,88,99,42,168,255,84,3,99,187,2,50,48,49,224,58,
+2,2,116,121,81,2,73,100,101,2,110,116,34,162,113,177,106,64,70,154,
+195,236,146,0,156,15,210,244,65,249,2,95,52,56,65,30,227,27,0,179,
+129,227,171,0,227,151,12,164,72,75,82,74,82,226,91,1,193,82,96,123,
+145,183,2,80,32,58,128,105,255,91,8,65,197,160,20,250,92,15,34,247,
+2,51,57,32,197,175,128,12,141,83,2,95,49,56,65,77,253,200,14,67,
+48,96,56,160,0,224,51,19,224,43,7,165,4,74,84,64,164,139,25,226,
+219,26,224,29,30,240,212,7,224,41,2,224,18,9,224,82,13,224,21,24,
+215,119,96,9,130,61,37,74,33,192,104,145,84,238,66,69,32,20,2,51,
+51,48,94,50,2,51,32,95,37,208,97,195,64,28,98,166,224,29,16,103,
+21,2,95,55,56,98,136,2,57,52,56,228,17,0,226,63,1,94,161,195,
+58,224,6,3,227,80,2,2,52,55,32,65,94,2,55,57,32,65,94,98,
+151,2,83,32,67,235,232,5,142,217,224,239,5,132,20,226,208,0,197,190,
+130,44,230,228,2,66,155,2,55,49,51,193,8,204,163,32,19,202,155,175,
+45,96,99,212,231,234,163,2,227,51,1,64,95,200,13,128,155,129,25,2,
+57,49,55,161,40,2,57,57,57,245,40,0,64,74,2,95,55,53,37,173,
+2,57,48,53,254,88,3,199,156,240,19,1,162,213,103,182,103,163,2,54,
+54,32,100,57,65,84,230,117,9,2,79,32,35,2,57,55,32,228,154,0,
+2,50,49,32,2,95,49,52,134,101,77,159,199,200,35,175,32,156,2,53,
+54,49,82,44,64,64,103,182,2,49,56,49,2,32,35,49,224,34,25,104,
+50,224,55,8,138,29,65,175,135,136,102,9,141,150,241,39,8,132,91,176,
+155,97,100,99,123,2,57,48,54,228,178,2,2,45,62,34,193,218,32,32,
+64,30,65,171,66,94,136,12,173,43,128,63,169,81,224,66,6,2,61,62,
+34,226,248,3,133,184,64,65,65,244,169,125,224,127,6,33,65,34,201,193,
+66,224,123,0,32,51,126,29,69,165,246,187,1,224,59,2,33,107,103,36,
+224,48,0,96,15,64,48,65,126,224,48,10,160,108,2,56,53,57,32,88,
+224,109,6,224,233,10,231,147,3,224,63,4,2,54,53,56,240,224,0,224,
+230,16,241,0,2,234,233,2,64,121,248,63,5,195,78,228,63,7,167,103,
+199,77,115,140,223,96,231,94,5,99,4,241,116,3,133,169,131,14,2,49,
+50,55,102,73,37,78,2,50,53,32,248,144,0,227,11,5,226,120,45,105,
+131,242,211,3,212,51,224,150,13,67,58,64,140,64,5,64,86,72,230,96,
+156,218,157,107,221,99,213,2,48,56,32,32,117,96,84,99,118,66,33,2,
+48,55,32,233,4,0,69,11,100,159,128,79,99,101,160,6,64,29,136,2,
+224,29,6,224,12,6,64,129,64,43,135,209,97,218,32,29,33,49,96,21,
+135,160,160,21,72,50,96,21,135,58,226,235,1,2,80,114,105,2,109,105,
+116,2,105,118,101,2,115,46,61,66,246,64,35,135,82,146,215,224,114,2,
+224,128,7,128,20,64,48,135,110,2,95,54,32,2,95,52,48,36,59,64,
+238,224,97,12,163,155,98,101,2,54,57,32,71,11,193,148,228,79,15,224,
+80,21,163,169,224,80,26,173,206,96,174,135,120,55,11,96,238,64,55,104,
+44,100,94,35,126,2,95,55,48,64,45,2,95,50,50,34,81,96,11,38,
+226,101,163,130,27,192,21,65,15,66,116,243,85,0,224,64,18,32,41,243,
+151,1,224,66,2,102,176,107,135,154,229,224,66,7,2,49,51,53,150,188,
+2,54,55,32,134,229,224,57,0,128,204,66,160,133,54,224,122,16,2,51,
+53,50,172,142,224,118,0,74,208,224,45,0,2,80,32,66,97,63,33,43,
+226,234,1,160,16,248,81,1,157,223,161,6,167,85,34,245,251,232,0,138,
+67,64,50,2,95,56,49,128,37,43,44,246,99,7,111,15,32,90,198,82,
+64,149,235,90,1,224,76,11,32,44,224,77,0,233,139,0,96,146,2,54,
+49,48,220,185,170,28,249,83,0,247,29,9,239,34,20,253,105,9,248,150,
+11,231,84,4,136,137,105,245,224,0,8,164,12,160,47,226,46,1,225,114,
+1,96,70,192,12,65,161,192,234,235,15,2,224,232,1,225,244,3,220,92,
+2,95,51,56,176,68,66,4,132,75,236,48,5,35,250,2,52,57,32,107,
+115,65,187,2,57,53,48,233,86,6,39,98,249,54,6,160,250,128,13,32,
+57,2,60,32,64,2,35,55,32,240,41,5,225,58,0,192,24,97,151,176,
+39,227,48,2,32,179,111,99,229,205,2,177,50,162,14,227,4,4,2,48,
+49,51,234,189,6,226,234,6,166,48,66,230,2,50,55,56,193,247,143,240,
+255,61,5,224,165,5,192,86,32,165,244,233,1,224,126,6,140,150,33,43,
+236,248,3,2,112,101,32,2,115,105,103,2,110,97,116,2,117,114,101,136,
+14,249,96,10,224,215,4,224,209,12,252,76,2,224,112,5,2,50,48,54,
+239,80,0,224,71,3,227,254,6,128,33,225,94,21,225,50,0,226,44,7,
+224,126,0,2,95,53,48,209,177,225,51,7,250,238,0,224,54,0,66,80,
+134,126,224,114,8,32,213,160,143,111,253,226,192,0,128,80,163,158,162,16,
+229,42,6,2,48,50,51,249,117,7,136,12,127,48,2,57,52,53,66,211,
+255,72,3,241,28,19,2,67,97,110,95,217,2,115,97,116,2,105,115,102,
+2,121,32,99,2,111,110,115,2,116,114,97,2,105,110,116,241,37,0,106,
+196,2,56,51,50,224,232,0,64,213,135,40,33,125,2,55,50,55,32,4,
+2,51,49,32,203,152,64,29,135,48,227,154,12,229,60,4,227,199,2,239,
+65,6,131,197,39,187,224,169,1,2,92,51,52,2,38,115,114,2,99,47,
+77,2,105,99,114,2,111,72,115,2,47,84,121,2,112,101,67,2,104,101,
+99,2,107,46,104,2,115,92,51,2,52,38,44,42,54,2,50,58,49,2,
+57,34,32,143,97,2,90,32,67,66,227,49,108,2,55,48,48,133,48,40,
+81,200,172,204,107,226,35,2,166,119,108,74,2,49,49,51,2,57,32,95,
+210,254,32,187,33,78,96,37,186,128,224,172,59,2,56,58,49,160,172,209,
+14,186,237,226,212,0,165,177,244,220,2,230,139,3,129,242,230,127,3,226,
+50,23,241,163,1,224,29,2,140,11,65,24,65,176,2,48,50,52,230,188,
+3,101,128,131,238,225,42,4,78,109,33,89,129,32,229,94,16,2,50,55,
+57,254,16,7,236,124,0,99,212,96,190,134,180,64,66,94,94,128,10,174,
+253,166,39,2,51,54,50,35,120,167,110,224,162,7,224,19,12,230,59,1,
+194,177,137,174,128,77,155,45,137,199,86,38,211,66,128,139,163,219,2,52,
+49,54,137,148,64,46,70,19,168,88,224,229,3,255,127,1,197,18,227,230,
+6,2,57,55,56,230,194,3,229,53,3,225,78,5,226,97,2,67,197,32,
+157,64,67,171,73,238,233,3,225,213,17,228,239,5,2,48,50,48,196,239,
+224,177,5,139,138,104,119,235,99,0,64,103,2,95,54,55,247,242,2,209,
+205,75,104,35,68,129,22,2,95,57,56,32,165,116,225,64,177,115,152,2,
+55,51,55,233,67,2,138,16,136,52,239,68,3,251,3,5,247,216,2,190,
+174,228,201,1,223,50,207,99,136,149,189,57,239,80,4,236,171,0,32,138,
+32,40,111,120,46,59,130,126,2,95,53,53,36,152,108,197,171,2,232,116,
+3,192,92,226,49,4,224,76,15,32,215,64,234,75,151,2,53,53,56,96,
+33,32,90,128,39,36,82,157,129,128,12,2,49,52,50,65,26,2,52,51,
+32,64,24,33,43,224,37,1,99,206,192,12,224,63,4,36,104,160,12,64,
+105,234,133,1,108,252,69,89,74,99,97,4,100,19,116,11,235,229,14,32,
+47,64,29,64,71,173,20,228,48,1,96,204,52,42,226,160,5,64,81,80,
+251,2,51,51,52,130,54,134,150,228,63,5,228,97,1,194,116,229,219,6,
+2,48,56,50,244,97,0,228,11,9,56,62,65,54,2,48,53,56,193,183,
+64,160,135,24,248,2,1,65,4,133,110,2,53,53,54,99,154,35,18,166,
+101,75,132,149,148,64,22,173,143,107,76,65,2,83,6,2,48,57,32,64,
+188,76,185,2,49,54,54,98,152,114,253,64,47,227,250,0,231,245,12,37,
+198,158,178,98,129,137,188,233,185,6,204,112,224,25,9,98,251,224,25,12,
+116,173,233,68,8,96,21,2,85,32,66,163,178,232,213,1,237,20,0,64,
+9,65,10,227,139,0,234,46,13,56,179,115,242,229,132,0,224,43,13,96,
+25,71,91,129,67,161,145,102,96,224,58,6,254,169,0,234,186,11,215,203,
+224,95,8,192,24,166,118,213,217,172,27,224,227,2,204,12,169,235,248,148,
+2,245,79,0,133,92,2,50,54,55,235,185,6,235,140,4,251,242,0,233,
+170,4,64,20,244,23,2,224,82,0,147,255,160,36,130,226,215,19,2,51,
+56,32,66,153,41,34,98,87,227,5,3,249,12,9,180,61,251,20,5,244,
+51,4,224,118,1,244,214,3,224,68,5,36,122,98,153,251,90,5,64,129,
+224,189,0,160,134,47,170,255,133,7,225,97,10,251,84,0,155,186,230,78,
+1,192,26,171,46,225,249,2,254,19,8,193,92,250,43,10,246,255,4,225,
+156,11,225,158,4,184,23,225,164,5,225,138,1,245,168,11,224,30,5,201,
+121,136,25,243,2,2,253,61,2,150,237,161,214,225,173,1,225,170,38,225,
+245,19,226,87,5,193,198,224,139,4,206,253,96,37,150,171,110,228,254,83,
+15,161,180,254,229,46,191,158,229,250,2,128,189,124,73,135,152,99,142,137,
+50,99,144,122,127,249,38,2,226,110,34,73,52,226,50,6,170,155,64,1,
+128,223,236,174,9,99,84,224,49,6,96,245,169,237,226,126,1,234,42,2,
+46,38,128,149,235,53,1,2,63,63,63,171,16,33,172,37,209,224,74,0,
+73,143,226,124,8,237,119,15,192,149,69,250,250,211,1,239,87,22,227,49,
+4,253,47,12,225,205,0,249,254,5,224,52,3,224,58,4,160,59,228,236,
+1,224,28,4,225,248,0,250,146,16,128,104,239,23,5,227,235,12,195,161,
+144,161,229,63,9,228,146,11,96,102,160,145,249,113,0,224,237,1,118,110,
+224,161,0,226,148,8,162,119,118,58,224,23,5,229,130,0,205,78,196,92,
+240,50,1,227,98,2,224,199,9,226,72,5,225,127,3,230,42,4,122,193,
+139,142,2,90,32,75,64,26,160,6,224,182,3,209,132,167,222,225,26,6,
+240,40,3,228,148,3,128,152,2,50,57,56,202,122,164,79,99,41,33,70,
+150,135,40,106,229,162,1,225,98,0,171,174,227,192,5,74,87,242,140,3,
+229,19,6,64,107,170,207,129,38,232,21,3,255,204,4,255,152,2,228,99,
+1,219,29,160,161,136,204,225,29,15,97,176,238,168,39,2,51,51,51,2,
+58,50,53,163,151,173,215,75,29,165,84,225,8,3,32,248,65,54,225,90,
+20,251,150,3,225,95,8,231,77,2,141,6,115,160,224,216,25,2,65,32,
+64,224,216,43,2,50,58,50,224,216,1,244,234,2,123,58,233,208,1,97,
+103,226,111,15,232,220,7,128,183,192,198,212,192,34,58,226,19,3,68,154,
+142,85,235,104,4,246,76,4,146,248,247,19,1,130,97,166,110,96,97,189,
+162,245,163,33,161,170,245,164,1,237,89,0,229,70,2,2,51,52,57,139,
+102,141,203,214,181,102,123,235,105,0,109,61,171,105,64,44,64,51,75,147,
+2,51,49,48,32,136,74,224,224,1,11,65,31,224,105,1,126,237,160,62,
+140,245,2,79,32,95,110,137,2,49,50,53,65,14,224,14,2,64,184,64,
+14,54,156,192,19,123,238,224,12,0,96,74,218,17,65,21,165,246,138,30,
+2,52,49,32,228,76,0,230,141,7,242,33,0,214,8,225,133,4,120,112,
+203,203,225,169,4,224,55,7,225,186,4,2,51,49,50,224,51,41,112,254,
+224,51,39,223,179,248,205,6,74,105,112,180,34,129,232,176,1,226,9,1,
+176,28,224,56,2,241,81,4,103,117,235,120,0,224,142,13,40,147,136,67,
+226,167,3,245,220,4,231,24,13,231,105,6,230,243,2,224,47,7,192,5,
+245,61,10,81,182,235,30,3,224,1,1,246,156,5,225,240,5,230,252,5,
+161,18,57,227,184,243,220,175,117,68,227,121,2,245,61,16,85,58,2,97,
+32,99,2,108,97,115,2,115,32,34,133,133,2,51,48,54,165,142,225,146,
+4,224,165,7,235,131,3,224,28,12,227,43,1,227,71,20,230,25,7,232,
+79,17,224,72,11,129,97,251,112,9,96,86,154,115,96,5,241,248,2,234,
+51,5,233,117,9,2,90,32,83,253,245,2,225,71,1,246,146,4,225,83,
+19,2,115,117,112,2,101,114,102,2,108,111,117,2,115,32,98,2,105,110,
+100,2,105,110,103,246,137,4,2,51,48,55,234,0,8,228,109,13,233,237,
+19,224,56,2,236,102,8,33,16,233,124,4,224,96,1,64,25,234,2,2,
+232,205,5,171,168,232,210,4,224,154,5,34,182,232,4,0,225,168,9,191,
+226,234,98,10,232,13,7,224,13,4,128,10,72,2,232,134,7,230,116,7,
+223,237,225,53,15,226,177,9,241,156,1,224,2,3,192,168,244,148,1,227,
+111,1,98,76,160,5,96,40,97,19,246,7,10,225,0,22,224,121,2,163,
+146,185,119,250,217,5,101,220,44,247,234,120,3,224,180,5,66,186,130,139,
+225,25,1,168,166,235,189,0,131,62,160,180,136,115,221,153,64,7,32,43,
+224,62,4,88,245,82,161,70,151,233,211,2,96,233,126,155,245,235,0,153,
+150,128,169,127,226,240,176,2,102,83,237,14,2,2,50,53,32,234,74,10,
+239,25,4,2,49,52,53,134,144,248,197,2,32,158,67,99,131,154,225,228,
+9,232,211,5,133,130,226,60,1,229,105,3,169,142,209,185,238,164,2,64,
+131,153,60,96,179,232,251,0,160,6,247,103,2,72,78,2,51,52,52,100,
+24,99,238,2,55,53,51,204,23,226,136,5,70,161,179,221,224,225,2,97,
+86,228,28,1,2,51,52,49,224,14,3,2,48,48,54,241,191,1,138,19,
+2,83,32,95,2,53,49,53,2,32,64,73,78,245,191,10,64,45,140,233,
+64,100,180,43,32,49,2,52,53,55,135,49,151,247,64,35,117,210,2,57,
+50,32,124,61,64,19,142,46,228,139,1,2,105,110,115,2,116,34,32,96,
+26,216,4,167,79,243,239,8,101,14,231,105,11,231,104,24,226,235,4,250,
+175,1,120,143,129,246,254,164,3,97,45,232,159,2,203,40,54,70,227,98,
+7,224,93,59,160,89,193,78,138,19,231,158,1,89,21,32,73,130,131,85,
+125,39,76,2,57,53,32,96,54,172,10,230,11,51,188,157,2,100,101,114,
+2,105,118,101,230,6,16,205,9,110,167,226,106,3,32,177,64,188,106,89,
+93,102,224,97,10,2,68,97,116,2,97,46,66,2,111,117,110,2,100,101,
+100,192,7,96,103,73,195,64,98,224,57,21,2,69,110,117,2,109,46,69,
+32,4,224,51,0,65,3,224,51,22,2,113,46,69,2,113,34,32,128,47,
+99,246,224,47,21,2,73,120,46,2,73,120,34,192,47,65,85,224,47,21,
+2,79,114,100,64,3,192,49,125,155,224,49,21,77,27,2,97,98,108,2,
+101,46,84,160,8,224,59,0,65,69,224,59,16,2,84,101,120,2,116,46,
+82,2,101,97,100,96,4,224,161,29,96,51,2,83,104,111,2,119,46,83,
+32,4,224,103,0,65,105,226,184,1,65,183,140,17,240,57,0,233,196,3,
+65,102,34,83,175,232,232,166,2,196,201,239,26,0,234,121,4,234,138,9,
+244,97,9,239,113,5,241,191,2,242,14,3,241,210,4,241,236,7,234,218,
+4,247,151,4,234,219,16,234,41,9,224,48,10,231,41,11,198,120,231,165,
+11,144,90,251,210,5,224,80,27,232,222,3,224,73,1,2,55,50,48,231,
+185,18,230,250,1,232,88,10,101,50,224,25,12,234,198,0,224,22,14,224,
+104,11,137,115,246,121,10,179,33,134,188,255,202,2,181,166,122,181,64,62,
+32,234,128,240,89,65,233,16,5,225,34,20,224,194,9,204,65,242,218,2,
+203,211,103,71,66,215,255,191,2,235,198,20,235,227,25,226,166,4,128,114,
+224,2,0,146,0,225,73,26,234,227,9,224,8,18,161,63,163,94,236,44,
+1,130,179,108,0,2,85,32,102,235,183,1,35,207,2,80,97,114,2,101,
+110,34,225,162,0,236,156,1,224,47,0,2,79,32,35,77,186,161,118,129,
+39,2,56,49,56,96,14,174,149,234,3,7,128,135,96,58,2,51,50,32,
+225,177,1,224,95,3,241,115,0,225,121,6,201,198,2,85,32,35,242,167,
+2,226,82,11,225,53,0,129,234,234,100,5,160,172,237,46,3,226,104,0,
+64,5,162,31,226,17,2,238,127,1,153,169,123,9,96,156,99,44,146,215,
+96,165,32,214,2,49,50,51,224,215,4,249,19,6,96,250,72,201,224,34,
+6,195,115,239,113,4,236,44,0,224,119,26,95,29,192,83,33,33,227,226,
+1,96,113,106,146,245,85,1,35,68,41,42,250,161,10,2,85,32,65,133,
+50,64,95,64,201,96,59,32,76,227,91,2,244,126,0,225,212,1,153,236,
+132,87,84,23,111,131,252,54,1,113,235,226,96,8,2,83,116,114,46,16,
+162,97,162,61,170,150,224,56,0,130,106,237,5,1,226,98,3,226,137,5,
+81,36,224,255,1,224,105,5,2,115,80,114,2,101,99,34,96,28,129,13,
+81,209,128,44,246,6,0,64,11,138,179,32,6,96,133,234,246,4,70,198,
+210,137,2,83,32,83,97,127,2,51,53,32,41,34,70,221,232,247,9,64,
+145,225,54,0,139,75,128,20,225,166,1,69,74,137,97,64,92,177,227,100,
+233,83,143,2,52,55,55,96,5,147,192,64,106,32,30,2,90,32,67,130,
+149,36,13,239,20,18,230,147,0,230,144,7,230,39,9,247,206,5,194,139,
+166,107,214,214,97,190,238,147,26,224,91,5,205,56,102,111,122,214,33,174,
+170,79,64,143,225,163,1,2,116,121,112,2,101,82,101,2,112,34,32,248,
+231,7,78,15,52,42,2,49,49,56,227,84,2,231,245,1,192,97,130,6,
+66,103,64,153,224,106,20,2,109,107,84,2,121,67,111,2,110,65,112,192,
+109,184,210,241,56,0,224,74,40,224,181,0,242,113,0,130,63,213,108,98,
+210,129,231,224,39,37,224,130,12,66,140,224,130,1,2,91,93,34,195,151,
+248,20,1,235,144,3,162,185,141,57,234,41,6,2,76,105,115,2,116,95,
+84,33,122,141,21,64,90,224,36,9,2,84,121,101,170,68,64,34,141,83,
+233,200,32,233,20,12,226,131,9,249,63,3,194,120,226,72,8,232,183,0,
+168,163,2,54,49,56,234,21,0,239,9,2,234,31,3,249,100,6,233,202,
+5,233,192,6,233,46,4,198,0,233,222,6,241,213,5,229,158,0,232,154,
+8,64,65,113,47,237,194,5,234,77,1,227,106,1,32,214,125,235,240,235,
+5,237,103,0,133,83,101,96,227,132,0,128,8,240,197,12,225,187,1,2,
+60,62,34,233,12,2,225,148,0,64,61,64,40,224,81,11,229,6,0,230,
+4,0,224,100,7,226,136,3,2,50,57,32,226,136,3,2,69,81,34,241,
+133,1,220,39,65,3,225,33,1,193,30,97,21,227,212,7,224,105,33,2,
+76,84,34,228,7,4,224,100,13,74,27,160,97,225,134,4,224,103,33,2,
+71,84,34,128,50,160,57,138,98,231,32,23,160,37,224,29,5,231,153,2,
+231,59,1,227,214,5,64,142,224,123,1,2,99,111,109,2,112,97,114,141,
+185,230,135,10,144,190,238,41,9,163,164,143,215,224,30,9,47,120,2,110,
+103,95,227,240,1,64,240,32,40,2,75,50,32,244,236,6,130,120,37,217,
+224,14,2,239,212,14,2,87,97,114,2,110,105,110,2,103,58,32,2,99,
+97,110,239,221,8,133,79,104,165,79,230,2,56,51,50,224,77,22,2,32,
+121,101,2,116,44,32,128,60,72,70,68,12,224,253,4,247,140,5,212,41,
+64,203,142,98,155,5,2,51,50,54,131,20,74,38,182,203,64,35,250,73,
+1,2,73,79,46,86,152,2,111,114,109,2,73,79,32,243,153,0,97,2,
+99,193,32,5,154,47,32,106,96,16,96,63,135,162,228,253,120,132,71,180,
+219,197,14,212,173,239,61,28,248,46,0,203,111,228,193,10,237,87,2,237,
+100,13,228,206,83,227,151,4,65,19,226,35,1,2,38,38,34,228,217,86,
+231,229,5,2,84,114,117,195,136,227,252,23,227,245,15,129,62,161,92,228,
+151,0,229,2,6,224,145,33,2,70,97,108,2,115,101,34,228,156,3,228,
+85,14,2,50,52,32,224,55,3,2,61,61,34,228,80,13,76,27,228,49,
+9,114,215,64,29,136,60,106,120,2,90,32,90,239,44,0,130,98,115,167,
+127,246,112,25,237,197,5,98,147,148,134,234,53,0,133,171,165,170,119,122,
+232,175,4,244,203,0,228,55,1,2,49,52,54,231,120,0,2,95,54,57,
+35,117,2,53,54,49,32,28,54,35,35,220,32,196,32,5,2,49,32,35,
+140,196,2,95,56,55,36,184,2,49,56,54,96,22,239,178,0,64,199,182,
+36,182,143,65,159,224,241,1,197,22,96,40,246,57,7,180,87,2,111,108,
+34,129,16,133,127,2,66,32,89,128,231,51,29,2,50,48,49,224,47,2,
+2,102,111,108,2,100,114,49,234,205,2,68,47,67,63,227,39,0,111,204,
+224,10,2,241,11,0,64,94,133,191,246,152,6,202,238,224,59,9,240,188,
+1,92,254,2,53,55,50,64,221,173,34,228,171,89,240,183,0,228,171,0,
+110,93,64,196,237,133,3,64,9,245,90,0,228,167,2,195,180,216,172,108,
+215,172,220,64,221,233,98,3,232,64,0,96,108,130,79,227,97,0,98,77,
+67,235,206,29,96,233,2,53,53,55,226,45,14,207,31,229,107,9,224,191,
+12,2,116,111,69,224,189,42,227,13,4,242,192,9,192,118,224,189,8,174,
+154,228,182,0,224,201,28,228,10,1,174,199,231,58,9,143,64,96,155,240,
+146,2,247,207,11,192,52,247,208,33,65,31,247,213,14,34,212,87,74,34,
+212,38,66,2,51,32,95,99,162,102,39,198,45,64,33,135,193,131,42,65,
+82,102,191,224,176,82,184,32,248,137,15,227,157,4,239,35,10,227,80,9,
+236,96,8,253,235,6,236,127,33,246,73,11,253,99,31,246,40,2,142,217,
+244,109,5,237,80,16,192,80,2,82,32,64,230,182,1,237,132,22,224,27,
+1,32,53,59,189,65,142,230,139,0,160,5,227,69,3,2,109,97,120,97,
+117,209,138,224,25,2,2,105,110,66,224,25,1,230,27,6,225,219,1,37,
+66,134,130,240,33,0,67,75,254,49,1,129,8,134,143,166,105,2,52,50,
+53,67,87,230,21,8,227,93,3,162,129,138,31,179,103,244,50,0,241,98,
+13,254,186,8,2,50,54,54,64,40,243,74,0,246,87,5,221,245,192,61,
+197,112,246,252,3,245,170,6,209,139,2,51,49,51,199,55,231,85,1,2,
+95,57,49,244,46,0,147,197,32,39,160,17,2,95,54,50,101,222,167,101,
+40,17,2,52,49,55,254,86,0,2,95,51,51,32,209,81,91,60,59,160,
+20,64,60,158,142,129,72,61,159,245,97,4,226,91,0,160,117,238,250,11,
+129,115,242,19,8,224,156,5,225,106,0,139,74,2,85,32,66,133,46,170,
+196,2,57,56,53,224,167,0,255,78,1,2,48,52,49,253,27,2,64,252,
+129,205,116,187,107,4,128,11,32,43,96,14,160,20,224,126,3,192,206,64,
+122,136,236,2,85,32,90,200,146,64,20,136,227,51,216,229,193,0,96,4,
+35,76,2,57,56,32,65,23,129,132,96,43,136,71,254,61,75,230,55,1,
+213,88,253,228,1,172,218,151,23,238,208,1,161,21,64,223,254,49,11,224,
+81,42,160,77,192,237,137,12,130,103,192,58,222,99,130,197,254,99,7,87,
+249,32,45,2,56,57,56,32,4,2,53,48,32,33,126,77,87,130,105,182,
+108,2,89,32,66,41,55,64,113,231,61,11,32,4,249,12,1,167,79,41,
+108,231,79,2,64,24,224,57,1,247,50,0,232,54,1,205,22,98,119,249,
+83,1,227,239,4,137,199,227,239,0,160,8,227,216,3,227,251,15,237,134,
+1,248,117,2,224,19,5,252,102,5,252,105,4,232,122,0,163,69,252,102,
+11,224,51,6,224,2,0,99,20,228,105,5,234,3,4,230,168,7,250,1,
+1,192,22,224,223,0,201,210,233,99,6,38,63,35,201,226,76,4,251,156,
+1,228,200,6,128,56,2,57,49,55,196,5,44,123,140,191,225,114,4,249,
+75,9,121,109,160,5,250,251,1,166,209,249,52,8,2,95,53,48,234,146,
+7,249,47,10,234,51,3,128,7,224,119,2,64,143,160,57,233,136,21,68,
+202,102,39,132,28,132,64,34,201,178,76,239,0,1,250,117,7,225,72,0,
+252,173,13,224,99,24,166,143,192,94,207,185,139,214,229,193,3,192,48,249,
+183,3,226,5,1,224,2,3,172,84,226,208,1,236,103,0,252,89,3,200,
+71,232,145,6,224,41,8,232,89,2,253,173,8,230,223,7,245,119,3,245,
+42,0,247,99,2,32,38,246,224,1,167,235,32,22,128,223,100,152,247,28,
+0,119,24,247,23,1,194,115,225,63,8,206,98,230,188,7,225,120,6,248,
+141,10,2,48,51,32,100,184,2,48,54,32,239,173,3,200,94,239,168,6,
+160,116,232,231,2,254,107,17,255,139,1,227,232,5,225,94,10,252,170,8,
+225,109,89,138,235,225,109,67,225,9,8,227,209,2,254,2,5,225,137,22,
+237,195,0,227,240,75,130,244,227,209,0,227,255,46,228,0,8,255,218,15,
+246,152,28,248,179,8,128,69,227,251,8,64,158,66,23,232,3,7,228,82,
+19,228,47,11,226,190,3,192,39,65,120,105,196,168,213,33,153,2,57,57,
+49,250,149,1,235,174,1,61,78,2,83,101,108,2,69,114,114,2,111,114,
+34,128,97,241,196,3,252,24,9,71,109,144,214,233,214,0,224,33,1,2,
+95,51,52,2,56,32,102,224,91,0,2,103,101,116,211,111,224,70,3,32,
+66,64,156,241,152,4,2,115,101,116,2,70,105,101,2,108,100,34,113,151,
+66,52,241,224,2,66,75,224,42,1,2,46,83,101,224,43,0,96,44,139,
+236,224,118,4,224,75,3,138,160,42,35,99,45,64,17,138,55,224,93,14,
+2,72,97,115,224,93,4,251,112,12,2,82,101,99,2,111,114,100,2,115,
+34,32,96,34,138,70,163,236,148,176,97,129,33,112,64,30,233,119,2,128,
+28,128,6,64,26,136,183,2,85,32,67,239,18,5,225,254,2,227,164,16,
+64,62,193,136,106,193,131,44,234,170,7,96,140,234,170,15,98,160,67,128,
+231,167,3,230,84,7,233,60,19,230,106,8,232,250,5,228,206,0,195,12,
+230,210,3,248,167,3,228,90,5,244,120,3,2,50,57,54,236,140,11,195,
+42,160,114,252,40,8,239,195,1,232,195,0,2,95,57,53,2,54,32,35,
+227,70,2,33,35,145,254,176,162,2,90,32,75,64,28,160,6,113,126,2,
+49,55,54,225,250,2,2,92,51,52,2,38,115,114,2,99,47,77,2,105,
+99,114,2,111,72,115,2,47,84,121,2,112,101,67,2,104,101,99,2,107,
+46,104,2,115,92,51,2,52,38,44,45,116,2,54,58,50,2,53,34,32,
+225,28,1,64,193,95,254,236,189,5,225,99,10,109,32,240,40,5,243,165,
+2,224,2,0,171,7,146,2,128,226,133,217,224,5,4,64,3,224,98,2,
+189,98,229,211,6,240,169,7,225,10,16,225,231,11,240,151,2,229,42,6,
+253,97,4,224,94,2,234,149,18,229,239,1,231,19,1,2,57,54,56,224,
+160,2,173,190,238,176,3,238,166,13,230,211,20,240,235,7,185,127,154,100,
+236,166,0,255,215,2,138,173,154,80,36,53,97,28,133,73,229,38,3,229,
+84,8,2,110,111,77,2,101,116,104,2,111,100,69,229,86,1,234,249,0,
+101,140,2,56,52,53,230,8,0,237,64,1,190,158,226,187,5,242,89,5,
+237,41,1,237,22,10,225,181,5,119,197,198,26,33,63,2,54,48,32,101,
+136,35,80,239,212,3,209,112,224,134,5,239,10,2,150,89,226,24,14,231,
+184,7,142,196,194,162,192,130,100,174,2,50,57,57,164,174,144,124,96,5,
+32,4,112,192,32,132,225,62,1,2,80,114,105,2,109,105,116,51,217,2,
+115,46,61,190,253,64,62,220,24,136,63,100,184,250,250,3,168,38,128,29,
+241,42,6,224,25,19,96,91,252,80,1,99,136,2,56,56,51,243,41,2,
+70,174,66,128,104,217,45,178,231,226,3,2,95,52,48,124,154,2,48,54,
+50,148,254,100,176,70,94,71,39,2,75,32,85,227,229,4,244,136,0,228,
+1,10,227,42,0,236,10,3,224,32,23,224,29,20,32,198,229,46,0,64,
+152,209,47,64,184,230,32,0,253,29,0,189,136,125,99,51,209,181,175,64,
+43,229,175,10,65,14,105,3,230,29,16,131,69,128,38,229,191,12,33,246,
+163,226,128,157,135,104,224,81,10,35,195,133,181,228,10,1,128,131,97,122,
+96,59,199,129,225,188,2,32,95,193,183,97,160,129,183,64,44,135,143,225,
+159,6,249,139,2,225,144,81,224,26,17,224,23,14,224,20,11,224,17,8,
+224,14,5,225,244,3,225,91,0,218,231,161,33,2,57,52,49,249,241,1,
+246,255,2,33,44,76,61,229,24,0,225,241,3,101,19,43,231,160,15,68,
+80,104,91,164,135,224,68,1,102,110,224,55,0,32,39,117,165,226,39,9,
+252,68,3,224,86,3,50,144,128,12,233,22,0,242,232,1,220,83,2,57,
+50,48,124,83,41,71,104,251,195,141,226,213,1,96,224,94,231,34,62,174,
+140,132,239,2,48,50,51,230,187,2,224,226,3,32,146,140,180,231,133,6,
+65,64,201,105,50,187,133,162,197,136,168,206,245,254,1,244,61,2,128,104,
+224,33,18,151,129,197,204,224,191,4,192,25,36,228,151,8,195,43,224,44,
+10,160,104,180,38,44,85,246,216,1,224,43,9,224,42,1,229,60,1,170,
+151,229,174,0,32,241,64,16,162,50,74,32,128,182,231,230,2,70,141,231,
+179,0,33,191,192,13,97,251,234,87,2,128,125,225,199,0,103,75,69,71,
+2,50,55,56,64,109,242,92,0,224,96,33,32,155,73,80,96,103,213,158,
+224,56,43,233,89,2,239,134,0,131,65,2,52,48,57,213,53,66,141,193,
+7,84,183,241,141,1,195,113,206,168,32,201,78,255,68,107,2,50,54,51,
+239,191,1,224,252,18,36,130,161,212,244,35,11,176,86,240,51,8,192,178,
+65,245,192,73,233,139,5,224,60,0,240,110,9,224,52,5,244,248,7,224,
+47,4,224,44,6,225,103,3,233,172,3,224,36,3,32,17,99,83,224,234,
+8,32,233,136,102,161,99,193,106,130,114,65,102,135,128,136,122,227,97,0,
+202,222,244,119,4,227,73,12,145,0,224,37,0,247,201,9,99,79,200,217,
+169,78,160,26,183,205,183,99,247,27,2,42,169,164,163,228,209,3,97,229,
+36,193,68,75,228,89,0,163,168,236,185,3,58,205,181,218,224,86,9,153,
+6,96,72,73,9,32,17,220,127,228,123,5,224,208,4,224,181,4,173,215,
+131,198,231,169,0,245,138,2,138,213,64,90,208,110,242,143,1,224,138,0,
+2,50,52,52,66,184,224,128,1,227,80,11,129,211,224,206,1,249,18,3,
+224,28,9,225,4,33,186,160,2,50,55,54,194,18,224,250,0,225,113,5,
+161,155,236,239,2,147,13,224,91,14,100,83,72,113,238,95,4,224,16,9,
+230,253,7,97,143,2,52,57,32,234,137,2,2,102,117,110,2,100,101,112,
+106,130,48,64,237,158,10,226,24,4,226,182,2,235,49,16,251,252,1,230,
+212,0,65,2,209,109,194,16,194,89,224,115,9,229,212,11,211,254,129,38,
+225,128,4,224,101,0,96,102,141,66,224,102,9,226,108,4,172,131,230,173,
+9,230,206,23,245,243,0,224,159,7,192,24,160,159,224,255,10,136,74,224,
+152,11,231,28,11,230,195,11,226,241,7,226,155,0,251,37,2,44,104,131,
+110,2,56,48,32,129,93,2,50,56,49,225,0,0,166,130,224,59,1,252,
+8,6,230,213,0,227,113,60,225,122,2,240,244,6,227,81,7,224,201,9,
+64,183,201,176,169,237,226,220,6,224,172,134,99,234,234,24,9,206,132,224,
+187,7,226,248,6,229,113,2,2,50,55,51,201,209,228,180,0,70,62,141,
+115,128,192,2,80,32,35,236,47,1,65,206,68,16,64,36,140,255,229,52,
+3,247,136,6,76,147,68,0,64,112,92,233,2,57,53,48,114,56,2,50,
+56,32,229,28,3,225,72,3,225,78,5,2,57,54,55,232,148,13,229,67,
+9,246,35,5,225,68,27,104,84,229,47,1,252,60,4,68,201,95,75,229,
+102,7,2,51,53,57,225,122,9,227,136,15,197,56,33,95,75,166,2,57,
+54,49,235,61,5,224,91,8,135,244,224,91,11,233,254,1,228,140,13,160,
+123,32,201,64,116,138,5,224,121,18,233,141,0,238,36,1,172,239,225,227,
+7,245,139,3,34,8,225,79,2,224,36,2,142,1,47,217,2,57,56,48,
+130,222,32,17,64,24,237,39,1,32,59,98,92,32,50,64,24,246,242,1,
+32,24,96,150,128,24,68,184,224,111,3,197,137,224,111,4,69,118,96,36,
+46,100,50,121,64,17,208,111,232,88,14,130,217,64,40,226,216,3,96,97,
+170,154,225,2,14,96,51,194,231,236,161,0,253,178,6,237,242,5,2,49,
+53,49,238,251,3,121,143,160,13,111,20,233,236,2,229,106,7,194,238,197,
+45,192,95,231,87,5,161,236,161,229,224,103,5,253,122,13,238,20,6,224,
+40,3,235,230,4,232,17,0,33,194,2,52,54,32,248,187,5,64,19,186,
+103,80,11,2,51,48,32,132,62,212,36,2,85,32,65,160,91,231,218,11,
+97,72,130,109,127,21,64,14,130,91,116,89,56,233,64,105,2,52,55,32,
+242,183,13,2,67,111,110,2,115,116,114,2,97,105,110,153,1,64,61,248,
+6,1,66,151,99,5,162,67,194,117,64,23,65,139,33,26,64,22,130,115,
+249,194,0,203,26,246,212,0,245,253,12,254,60,2,167,199,250,193,4,231,
+202,4,212,112,224,39,17,226,108,2,231,133,8,224,27,2,131,235,34,45,
+244,14,3,2,83,32,66,225,209,3,146,246,230,61,5,96,177,248,7,6,
+146,156,244,142,10,167,144,244,142,28,228,118,3,77,182,224,15,1,148,37,
+244,164,2,2,83,32,79,97,86,32,5,181,36,214,149,244,189,2,232,136,
+25,211,213,248,222,0,227,154,0,232,74,12,252,252,7,225,33,1,161,133,
+249,136,8,160,96,249,34,7,225,66,11,193,67,242,68,4,224,106,78,128,
+30,201,52,152,197,2,50,54,49,245,95,1,248,123,0,231,216,8,212,107,
+244,68,18,249,228,0,64,84,64,79,244,72,7,245,214,0,244,95,8,166,
+136,32,203,235,232,9,227,74,0,103,234,112,235,68,204,135,104,228,9,1,
+64,116,38,178,224,84,1,50,79,2,50,32,83,120,37,2,90,32,67,248,
+193,0,226,79,1,253,158,7,35,198,83,37,252,29,1,251,73,14,240,253,
+3,64,117,167,200,223,234,222,63,64,227,192,86,240,151,1,251,162,20,251,
+197,17,190,81,244,101,6,179,4,249,148,0,240,240,1,229,118,2,145,57,
+64,168,73,216,255,117,2,37,43,114,185,254,206,0,234,118,7,150,19,149,
+139,224,211,5,224,69,17,96,238,247,160,1,220,175,247,129,2,157,113,2,
+51,51,49,75,225,32,230,2,57,48,50,225,39,0,231,64,1,224,56,1,
+32,230,224,52,21,199,65,248,14,19,87,240,248,14,16,178,2,64,75,134,
+68,98,58,2,75,52,32,2,90,32,90,160,1,250,252,0,96,37,166,91,
+248,52,9,227,140,0,246,154,154,246,123,6,64,215,198,245,34,87,34,177,
+107,86,96,23,134,243,99,206,32,10,231,67,1,2,36,100,102,2,108,116,
+34,136,252,67,144,103,1,228,4,0,234,103,3,43,170,115,180,227,113,3,
+246,140,22,234,248,24,2,50,53,56,202,126,2,57,48,56,227,7,0,253,
+156,7,73,167,129,247,230,166,1,246,16,5,200,168,230,42,0,146,254,235,
+24,6,251,190,5,161,50,75,177,147,10,149,155,236,151,25,171,74,215,214,
+64,198,67,83,64,75,132,37,253,92,7,224,79,16,167,211,64,65,32,38,
+64,64,131,119,233,166,0,233,148,3,64,37,123,18,225,24,0,64,48,131,
+111,180,208,228,29,0,240,47,2,232,167,0,245,75,5,232,176,2,226,91,
+0,232,139,4,193,142,231,97,1,224,46,20,181,229,224,47,2,200,231,224,
+47,14,189,7,225,192,0,255,35,9,224,47,5,130,0,224,198,10,233,116,
+16,165,112,233,77,12,224,28,3,239,182,11,235,114,6,255,118,9,225,153,
+7,153,116,102,152,226,183,1,251,113,1,232,155,2,248,32,6,192,215,232,
+54,2,224,36,0,193,23,96,29,240,73,7,96,114,179,156,191,235,2,57,
+55,49,255,234,4,34,112,2,53,53,52,98,72,120,114,32,32,196,48,66,
+147,76,185,228,10,2,2,120,34,32,224,172,3,197,191,186,156,227,228,3,
+238,151,5,87,179,240,110,8,2,57,56,51,225,97,1,250,249,9,2,57,
+56,56,95,217,242,227,3,128,234,174,155,230,201,8,224,246,6,140,96,2,
+57,57,53,195,129,193,70,226,175,4,226,79,19,231,118,1,225,151,13,224,
+31,5,97,151,247,175,5,225,20,5,143,77,87,156,239,77,7,248,102,3,
+237,169,6,248,69,2,205,66,66,110,135,169,2,49,49,51,242,93,4,224,
+132,8,225,34,8,224,141,3,171,4,69,195,184,30,2,49,51,52,205,178,
+2,55,53,51,96,89,203,114,235,243,2,245,240,0,160,5,64,3,244,172,
+4,241,141,11,225,216,4,235,113,4,238,122,1,224,66,20,224,72,19,230,
+250,4,160,75,228,5,5,232,236,1,201,59,225,243,3,225,112,5,65,99,
+252,40,3,224,66,5,242,72,3,233,204,12,228,81,4,193,179,162,42,242,
+98,6,239,98,5,97,70,243,243,1,235,213,4,32,67,2,51,53,32,255,
+114,3,239,30,2,2,95,55,51,166,38,243,17,13,224,226,7,226,55,0,
+224,142,5,228,185,15,160,44,224,120,28,229,212,2,227,81,11,165,82,227,
+125,5,237,146,11,237,147,9,228,241,13,228,250,3,228,240,2,128,242,228,
+235,7,131,144,157,89,221,98,203,206,228,238,21,192,133,228,116,5,192,112,
+229,60,1,224,76,0,238,117,25,242,53,4,228,59,10,85,229,2,54,57,
+54,247,225,3,235,245,3,231,59,9,130,247,250,8,4,231,236,0,240,120,
+3,68,191,65,53,234,239,0,192,198,173,57,97,36,166,218,49,82,225,15,
+2,2,98,97,100,2,32,102,105,2,110,97,108,2,32,100,111,2,32,115,
+116,2,97,116,101,2,109,101,110,145,78,238,173,13,224,16,6,232,36,1,
+232,42,2,232,13,4,229,141,5,144,81,253,141,14,242,133,2,184,116,128,
+45,226,20,3,224,8,27,226,56,3,238,224,4,228,57,7,246,57,5,130,
+69,246,24,1,160,15,238,35,10,108,161,2,52,57,57,229,181,0,205,95,
+225,54,5,226,176,11,225,10,3,2,95,56,48,231,46,0,230,41,1,101,
+177,225,229,2,77,173,161,229,103,38,240,2,1,2,49,50,52,171,40,132,
+72,225,237,0,145,192,64,23,162,203,32,67,66,126,147,85,2,54,55,49,
+167,186,224,69,2,97,152,139,11,96,247,192,241,32,70,2,55,53,54,251,
+174,4,2,97,105,108,162,32,109,228,2,55,53,57,78,238,79,130,2,64,
+64,102,226,89,1,2,105,110,100,160,38,96,151,85,3,225,144,0,224,84,
+8,2,62,62,61,128,44,227,178,10,2,98,34,32,229,105,4,226,51,0,
+225,254,27,245,51,5,163,10,225,233,61,225,119,0,224,206,11,224,179,6,
+230,243,3,228,212,4,64,59,2,49,57,32,224,78,3,242,81,15,196,81,
+229,144,21,162,81,228,172,11,252,71,10,228,212,25,160,146,229,182,10,231,
+205,9,225,118,3,96,17,32,2,130,135,245,194,4,2,70,114,111,2,109,
+84,104,2,101,110,84,2,111,34,32,227,160,1,176,151,32,10,84,43,227,
+49,3,224,125,24,224,119,0,160,72,224,115,18,162,101,224,101,83,160,213,
+224,99,13,225,151,24,255,253,1,225,151,21,168,69,224,179,16,230,201,1,
+196,11,224,169,8,96,167,228,155,10,230,186,3,229,161,1,233,13,4,228,
+157,0,85,248,252,174,7,147,188,232,139,5,233,228,9,232,122,7,135,31,
+2,51,54,54,230,6,1,238,130,6,224,17,1,225,19,2,198,80,243,95,
+4,243,133,0,148,111,226,100,3,235,200,2,233,67,6,179,56,56,20,176,
+250,116,108,2,57,57,56,235,143,5,224,213,4,103,84,97,94,153,15,225,
+12,2,104,215,231,125,0,144,131,128,41,238,30,10,224,135,1,177,130,116,
+156,235,190,11,171,189,97,214,128,99,213,21,2,49,55,57,250,182,4,167,
+243,34,8,169,164,224,51,11,2,57,55,32,228,205,0,190,64,246,200,8,
+250,69,5,250,28,4,253,119,2,248,96,6,235,152,3,204,218,2,52,50,
+32,225,89,11,226,9,9,84,59,110,180,69,30,2,51,56,32,243,128,8,
+224,159,4,225,238,10,254,27,9,242,218,6,224,163,38,241,155,12,128,248,
+255,87,3,173,120,129,186,243,69,2,96,204,32,5,229,223,3,241,56,36,
+238,86,2,241,7,29,163,69,235,150,24,161,254,238,106,13,227,32,5,97,
+106,55,255,144,0,2,55,54,50,240,0,12,238,8,6,252,129,25,249,86,
+8,225,149,5,226,104,0,225,158,2,128,138,2,57,57,57,218,103,2,55,
+53,55,120,234,160,245,225,126,4,33,118,234,9,0,246,161,7,163,193,227,
+34,3,241,242,44,167,194,238,164,17,232,127,1,231,89,7,236,135,1,229,
+67,4,239,20,10,224,41,4,164,197,224,38,1,67,191,249,207,3,226,174,
+9,160,17,226,175,3,117,142,173,153,224,212,8,234,157,0,225,208,10,236,
+4,2,248,252,17,169,101,241,13,6,235,233,1,224,18,4,236,63,3,236,
+86,4,198,77,224,69,6,242,67,5,227,61,11,245,3,0,227,101,6,227,
+110,5,247,124,8,233,77,11,236,212,8,224,67,35,227,244,2,247,207,4,
+242,124,7,224,39,14,208,252,237,140,10,242,154,19,241,127,1,245,255,8,
+237,146,8,241,187,14,225,75,4,243,38,4,224,245,9,224,50,6,215,168,
+224,70,6,242,10,1,224,75,0,231,159,0,224,244,22,224,79,69,225,2,
+6,243,1,0,247,174,1,157,90,67,30,243,143,6,210,5,224,40,9,197,
+164,64,11,241,68,3,243,8,3,229,86,9,100,192,99,226,237,115,0,199,
+185,237,121,7,32,9,2,83,116,114,2,105,110,103,245,179,0,240,41,8,
+224,99,2,236,244,2,228,196,5,2,48,51,55,233,50,6,225,189,6,222,
+185,227,109,6,228,162,2,212,180,86,107,227,230,1,225,121,9,226,228,8,
+227,80,1,224,125,10,244,229,10,226,210,95,253,167,10,224,50,6,193,245,
+225,247,6,2,51,52,56,101,68,230,99,0,230,67,4,162,10,69,89,2,
+50,50,48,102,105,2,50,49,32,32,5,97,61,226,27,43,239,143,9,32,
+9,2,82,97,116,2,105,111,110,2,97,108,34,226,23,159,247,123,11,228,
+254,23,228,237,7,226,32,16,226,33,13,230,118,0,228,83,3,197,191,228,
+123,21,226,45,17,246,166,18,243,23,3,210,218,230,35,4,226,73,7,34,
+20,234,233,1,236,253,4,224,67,35,124,101,224,135,8,233,117,7,225,10,
+8,224,73,11,229,230,8,227,2,14,32,42,229,35,0,228,251,1,227,6,
+20,63,176,32,10,114,158,192,237,246,7,4,64,48,39,15,94,210,58,115,
+160,47,186,92,82,34,67,110,65,48,162,98,224,107,13,224,58,9,227,110,
+62,2,73,110,116,2,101,103,101,2,114,34,32,227,109,148,193,138,159,60,
+38,81,51,237,2,55,48,49,64,54,156,223,251,211,7,2,49,54,56,173,
+9,224,171,3,65,234,65,61,32,7,219,30,227,81,5,194,64,135,159,233,
+100,13,233,26,23,233,20,25,234,127,18,160,136,226,68,0,169,251,193,30,
+148,161,226,54,1,2,57,49,48,227,190,8,228,141,17,224,119,67,228,226,
+2,216,8,79,206,248,20,0,250,160,16,237,239,2,242,0,6,132,156,187,
+198,234,183,6,96,180,67,157,129,182,254,245,9,226,148,9,130,25,253,90,
+10,229,76,3,249,225,15,238,74,19,236,216,19,227,63,13,251,234,12,227,
+66,30,224,120,11,251,13,24,227,107,12,251,220,4,253,172,1,227,111,7,
+224,193,8,227,34,0,236,150,6,68,149,37,57,33,96,254,41,4,252,64,
+2,227,82,3,45,131,128,225,224,208,4,225,67,4,45,246,238,29,0,241,
+23,6,242,87,5,2,32,73,32,224,107,2,226,232,0,40,142,128,70,239,
+231,2,32,69,175,29,207,238,2,64,95,50,126,218,68,12,231,168,4,254,
+200,10,215,226,2,56,51,49,2,32,64,80,64,7,78,18,222,125,225,201,
+9,112,4,2,48,48,55,210,232,2,51,55,55,162,131,129,34,249,26,2,
+240,42,3,225,155,1,32,174,2,90,32,95,163,68,68,166,143,163,240,3,
+3,251,197,1,208,32,88,251,2,50,48,49,160,41,51,102,2,95,49,53,
+73,153,64,166,229,237,1,2,116,99,69,2,120,112,114,2,58,32,99,2,
+97,110,110,2,111,116,32,2,104,97,110,2,100,108,101,2,58,32,34,193,
+148,153,173,102,215,78,241,2,51,48,32,74,18,243,174,2,224,92,9,2,
+79,32,35,65,16,149,114,192,55,231,63,1,224,60,2,2,58,49,50,2,
+53,53,32,2,64,10,65,192,67,2,48,48,56,101,244,2,48,54,32,96,
+28,32,122,32,28,161,170,240,9,8,229,221,6,2,57,54,57,239,242,0,
+32,64,32,82,131,226,64,72,32,109,64,101,2,57,48,54,96,201,33,127,
+64,21,32,68,224,21,3,160,116,33,50,224,21,2,71,129,64,21,32,97,
+32,21,225,56,1,2,80,114,105,2,109,105,116,2,105,118,101,2,115,46,
+87,2,111,114,100,33,48,32,37,64,44,224,81,3,32,205,64,21,32,6,
+96,227,2,50,50,50,200,21,64,6,113,210,2,50,52,48,235,46,0,73,
+174,200,122,2,56,51,53,38,244,2,50,57,32,129,68,2,52,49,32,224,
+31,21,98,104,224,31,15,50,202,64,35,2,54,32,80,71,72,33,12,2,
+95,53,51,224,57,4,129,234,2,50,51,56,224,139,0,82,247,232,195,1,
+2,95,56,50,224,20,12,137,207,224,57,4,160,108,96,228,224,44,1,33,
+167,2,49,32,35,131,89,224,22,8,194,186,224,71,6,224,60,11,224,59,
+46,96,37,224,59,15,65,162,32,52,33,162,2,83,32,83,192,1,33,15,
+65,25,207,151,211,78,68,103,241,122,0,70,26,133,55,192,11,64,127,34,
+209,145,210,2,85,32,65,32,47,2,85,32,75,242,37,4,248,192,0,230,
+166,2,96,57,66,244,67,235,64,52,96,15,33,167,224,60,1,85,100,105,
+183,224,32,15,219,207,224,38,23,224,34,29,224,245,97,107,5,224,245,124,
+224,246,11,230,187,4,160,17,198,168,224,246,19,224,184,27,224,144,27,37,
+250,132,230,2,50,51,50,163,128,98,149,224,232,19,224,51,9,32,168,32,
+37,224,53,26,41,248,129,231,224,60,3,71,24,224,59,16,117,113,224,32,
+18,227,248,3,235,89,0,224,206,3,224,92,63,67,197,35,65,35,197,2,
+66,32,89,192,198,203,160,236,178,3,128,27,130,125,65,129,160,76,224,107,
+17,64,13,192,107,196,110,233,195,2,64,96,226,213,0,224,92,2,68,83,
+224,91,43,225,128,31,128,58,224,183,41,247,255,2,194,238,226,84,14,160,
+97,224,32,25,138,17,225,116,2,235,75,0,192,198,122,113,32,165,192,51,
+224,14,9,33,190,224,16,2,97,206,136,27,195,131,193,99,33,220,233,49,
+0,105,151,225,220,15,72,44,64,179,65,130,128,177,225,45,9,160,23,225,
+36,5,131,235,65,215,72,139,252,148,0,227,72,8,192,84,224,25,17,64,
+197,136,196,32,134,2,52,32,90,130,14,64,21,168,145,97,30,102,152,2,
+53,54,56,230,233,9,224,20,2,96,135,64,57,168,181,224,57,12,230,231,
+1,224,57,11,136,217,43,117,103,43,225,11,0,64,14,40,13,224,123,2,
+64,44,136,240,2,85,32,90,224,181,2,64,38,128,203,224,20,3,136,222,
+2,102,47,32,64,12,135,72,71,59,72,239,72,106,32,6,128,100,2,50,
+53,32,96,6,35,165,71,98,40,169,35,34,64,124,64,115,2,38,48,46,
+64,167,142,46,232,65,0,72,211,128,1,2,95,54,51,224,43,7,232,105,
+3,244,118,3,64,19,64,44,192,206,228,130,5,160,60,2,38,49,46,96,
+67,32,43,32,150,64,185,132,60,2,85,32,67,138,110,128,175,2,80,32,
+38,96,40,128,197,128,59,160,58,2,64,64,89,32,39,32,32,128,80,251,
+112,0,224,246,0,75,57,162,27,32,74,128,16,32,139,235,168,1,64,117,
+130,227,2,105,116,111,2,102,32,58,128,50,225,220,0,64,15,130,38,130,
+225,2,115,101,113,151,195,96,8,32,154,128,65,162,15,85,166,2,56,51,
+56,105,219,225,42,1,64,123,129,18,73,171,64,6,97,233,2,50,51,48,
+64,40,2,57,32,95,192,39,62,88,192,11,64,84,130,42,2,102,62,61,
+96,133,170,252,2,62,32,58,128,64,64,12,2,60,61,32,64,13,161,252,
+2,60,32,58,128,105,64,12,2,110,101,103,96,14,129,81,2,102,42,32,
+64,12,128,232,2,102,45,32,64,12,128,230,2,102,43,32,64,12,128,227,
+248,183,2,192,8,160,225,43,53,162,117,2,50,32,65,160,18,128,159,65,
+126,112,39,38,188,64,21,128,167,208,71,240,85,0,145,185,254,137,30,212,
+162,241,55,14,224,30,5,238,142,0,81,49,255,172,15,179,235,224,85,19,
+206,86,224,85,46,174,168,160,216,192,25,207,110,197,231,165,157,241,107,17,
+225,54,6,255,159,9,245,168,1,242,233,14,242,224,16,174,196,70,17,2,
+57,49,52,64,198,2,57,56,32,244,233,3,211,122,224,42,0,224,27,11,
+224,94,10,210,37,224,51,8,241,223,3,242,63,9,176,82,224,53,8,161,
+136,224,25,10,246,186,1,207,137,34,113,84,127,238,22,15,53,68,142,21,
+64,58,224,36,4,2,68,97,116,2,97,46,73,149,99,2,95,84,121,2,
+112,101,46,245,112,1,64,47,163,70,224,84,11,2,70,108,111,2,97,116,
+87,160,39,131,95,240,161,1,132,38,144,166,47,103,112,207,147,163,64,45,
+175,105,206,155,33,83,64,21,163,137,224,107,11,2,67,104,97,192,145,239,
+63,3,2,57,57,54,128,20,131,150,194,176,225,155,1,98,175,67,252,79,
+169,112,235,242,103,4,241,220,4,208,161,255,154,5,159,15,64,99,166,178,
+241,33,11,40,64,97,134,236,81,2,224,90,2,72,179,224,43,1,96,94,
+2,56,53,32,161,21,128,14,32,61,133,193,70,201,226,37,6,100,128,66,
+100,64,12,166,235,160,6,242,21,1,32,68,64,77,128,173,104,34,242,0,
+4,124,226,51,124,37,101,128,118,96,120,240,198,1,224,159,1,65,7,162,
+121,64,10,144,114,85,197,65,116,2,54,49,56,112,210,144,76,64,28,65,
+244,32,182,66,159,2,79,32,64,160,155,51,74,32,39,192,104,37,42,81,
+38,129,250,64,58,103,248,2,80,32,83,161,44,241,77,5,33,121,160,56,
+225,205,1,36,123,245,66,10,241,93,8,193,236,225,190,3,34,117,69,138,
+235,40,4,224,112,5,129,132,192,106,254,252,0,103,65,180,3,244,206,4,
+243,24,4,224,150,0,98,99,160,128,115,200,99,213,167,134,2,50,54,56,
+96,119,104,201,32,222,96,144,224,15,7,138,16,2,57,52,53,227,47,0,
+242,158,2,227,20,1,2,101,120,105,2,115,116,101,2,110,116,105,2,97,
+108,115,2,32,110,111,2,116,32,97,2,108,108,111,2,119,101,100,2,32,
+105,110,2,32,112,97,2,116,116,101,2,114,110,32,2,98,105,110,2,100,
+105,110,254,185,1,226,242,14,65,64,2,49,50,55,193,107,225,58,9,2,
+56,54,53,226,73,0,73,123,224,29,4,65,204,132,29,107,7,230,221,2,
+247,158,0,251,14,1,254,46,2,197,44,193,149,185,99,204,193,34,227,74,
+233,134,52,250,52,6,244,189,7,2,55,52,53,65,32,96,143,250,53,2,
+2,99,110,83,160,250,250,171,3,246,141,9,225,226,0,195,30,2,57,53,
+32,227,174,8,66,99,229,216,2,205,102,183,239,225,15,2,231,36,3,231,
+44,2,224,34,3,246,241,0,35,42,224,32,0,65,117,2,55,50,49,195,
+35,236,68,5,32,25,32,58,128,49,68,30,160,36,181,99,132,3,195,227,
+117,30,65,209,138,172,224,104,0,131,1,164,47,239,209,2,226,246,1,252,
+247,1,132,217,250,143,3,220,227,246,232,1,225,70,5,115,228,65,146,225,
+128,4,2,68,34,32,228,130,5,161,203,193,136,131,47,96,59,43,16,228,
+42,0,225,178,11,205,193,225,187,6,225,65,2,225,98,17,239,26,0,133,
+69,200,78,227,226,0,253,238,3,226,159,0,64,112,226,150,4,160,19,97,
+141,35,214,128,92,129,130,161,78,197,142,229,150,0,226,91,6,224,58,18,
+228,148,0,225,233,25,225,210,22,227,19,9,225,227,3,225,187,2,130,237,
+2,50,48,53,225,73,1,131,206,208,179,233,227,3,2,56,56,49,37,207,
+2,57,49,32,224,213,5,229,5,2,108,85,80,23,2,95,49,57,2,52,
+32,85,82,129,225,2,0,227,187,3,229,61,7,32,85,96,225,225,190,3,
+96,134,168,29,75,67,160,132,2,54,49,51,96,100,183,169,64,108,224,168,
+21,162,25,128,97,200,140,2,57,54,50,97,105,2,57,50,48,193,132,160,
+113,203,246,121,140,232,57,10,105,100,229,69,18,136,58,232,59,8,129,244,
+160,99,200,162,179,18,231,149,1,103,93,224,94,16,228,141,9,166,61,224,
+106,5,95,60,66,64,192,109,204,148,96,109,225,247,4,2,49,57,57,233,
+6,20,134,17,233,6,16,64,126,103,244,136,143,2,85,32,95,164,183,224,
+102,8,254,224,0,224,124,11,116,211,168,180,64,87,96,24,138,65,93,224,
+160,93,250,191,8,124,198,232,194,2,233,239,1,225,83,3,134,217,137,238,
+192,107,128,18,235,57,0,251,177,7,137,207,32,49,96,246,101,73,250,90,
+3,105,81,100,54,64,69,156,142,225,195,9,192,32,2,57,55,32,160,212,
+136,237,71,59,64,167,64,17,183,221,237,13,0,114,161,73,66,104,140,225,
+28,1,229,44,3,226,108,2,103,1,48,217,232,35,10,237,179,7,193,19,
+226,204,4,225,25,3,235,39,12,96,32,191,35,64,26,96,30,225,168,0,
+128,195,171,236,160,189,65,56,64,127,32,57,224,168,0,227,152,3,32,30,
+251,34,0,227,173,5,60,62,205,146,225,143,6,147,51,113,164,36,83,2,
+95,51,51,160,126,224,40,12,251,118,0,2,51,56,56,234,204,7,64,62,
+225,26,2,230,43,6,100,205,66,218,135,60,241,11,0,104,9,99,63,224,
+177,1,2,55,48,52,130,40,231,33,4,228,215,1,2,56,55,32,234,85,
+1,128,136,160,223,231,102,11,41,49,255,76,4,101,240,224,181,1,233,119,
+0,226,10,1,148,84,226,21,13,97,179,229,242,0,255,88,1,233,136,3,
+224,81,3,224,1,1,32,58,106,133,224,58,0,133,224,128,2,226,27,2,
+234,245,3,65,154,192,108,162,102,160,47,229,222,4,39,218,255,235,0,240,
+57,7,162,19,224,142,4,226,28,15,231,140,1,233,202,5,231,181,4,235,
+69,0,224,135,9,2,55,48,53,234,106,4,224,164,11,230,132,5,237,67,
+1,65,87,131,91,66,20,245,62,0,2,51,32,75,2,52,32,75,2,52,
+32,65,224,26,0,134,65,136,75,239,5,1,224,183,1,247,152,2,225,195,
+13,98,0,2,56,57,32,161,192,225,183,0,133,120,227,203,7,224,55,6,
+166,202,226,72,8,171,191,254,157,6,2,52,49,52,230,89,9,101,200,255,
+185,0,224,49,32,160,177,97,42,67,169,42,204,2,51,48,49,64,122,124,
+70,67,187,164,168,227,194,3,225,234,8,161,188,233,116,0,129,50,2,95,
+50,56,116,34,227,24,1,237,233,0,218,34,160,4,236,189,10,224,20,0,
+2,51,48,51,205,111,64,78,224,21,0,148,147,224,163,2,224,0,1,128,
+126,139,233,158,195,2,50,56,52,208,88,238,62,4,104,111,224,127,12,104,
+254,2,52,49,55,192,59,2,95,50,48,85,115,226,212,0,225,166,8,66,
+70,200,36,225,32,8,72,186,192,151,225,28,15,46,120,32,35,151,17,64,
+1,224,148,9,192,17,78,143,225,176,7,225,9,13,64,148,136,75,2,95,
+51,52,2,56,32,102,242,56,5,2,83,116,114,46,103,2,46,73,115,128,
+8,75,244,64,48,176,45,224,48,10,2,78,117,109,64,3,160,40,64,192,
+200,165,48,65,163,157,194,117,66,118,33,61,138,202,230,16,0,240,103,1,
+128,66,135,97,64,57,69,82,229,42,2,35,56,101,23,87,56,129,118,237,
+97,4,227,75,0,163,142,64,52,33,117,224,28,6,164,111,192,26,231,95,
+2,229,41,6,200,223,224,95,1,241,193,2,186,133,64,50,134,108,195,78,
+224,15,5,224,211,0,184,184,2,56,57,54,32,4,81,106,114,32,96,230,
+169,31,169,37,130,3,231,109,4,149,147,233,190,13,228,143,1,234,96,4,
+162,21,2,57,52,49,230,76,0,66,177,77,215,233,103,1,224,77,8,64,
+149,199,37,77,97,101,48,246,213,0,175,247,239,244,14,230,14,8,228,105,
+0,32,84,64,6,171,204,240,35,1,255,183,3,64,36,64,170,220,157,2,
+49,56,50,224,242,0,34,210,85,41,2,54,54,32,96,38,251,19,0,2,
+57,56,53,227,196,1,84,150,77,141,226,74,2,179,50,246,244,14,64,7,
+192,117,160,250,185,29,76,69,2,95,54,55,32,24,64,20,185,34,142,111,
+196,157,32,141,106,118,64,32,227,223,0,32,129,121,4,2,48,48,50,128,
+58,131,100,154,227,168,244,140,84,96,29,131,81,67,210,32,80,170,74,74,
+134,161,125,224,167,3,152,169,106,234,138,104,96,140,177,90,231,61,1,193,
+163,225,155,0,229,250,3,225,4,0,248,36,1,130,117,178,178,2,56,48,
+54,226,80,2,179,37,243,3,2,244,105,4,238,182,1,106,230,193,113,128,
+95,236,33,2,229,86,3,162,138,255,56,0,245,110,13,224,157,1,244,202,
+12,98,28,228,77,0,75,97,216,176,224,57,3,245,26,10,227,39,12,75,
+55,130,62,100,173,242,156,8,64,31,2,53,32,35,231,137,1,228,40,3,
+224,102,0,2,55,54,32,229,99,7,245,45,5,65,186,131,255,2,75,32,
+66,230,9,11,53,33,239,138,16,239,51,3,39,84,200,77,239,135,22,41,
+3,156,127,233,3,4,64,136,196,117,37,90,249,177,5,177,65,250,196,5,
+250,193,10,216,196,225,198,0,224,40,16,168,71,224,214,0,145,178,250,24,
+4,164,174,143,164,165,5,233,90,6,72,171,38,51,2,54,49,32,232,77,
+10,66,85,128,26,231,53,3,69,109,173,89,177,170,245,131,9,95,56,244,
+98,3,2,116,111,111,2,32,109,97,2,110,121,32,2,97,114,103,2,117,
+109,101,2,110,116,115,244,112,1,224,62,15,224,61,5,2,102,101,119,224,
+60,7,2,95,56,52,218,40,250,92,10,161,32,96,254,247,251,5,224,37,
+4,128,204,224,37,8,251,75,15,186,206,224,73,11,192,25,98,237,224,111,
+16,224,36,1,238,74,4,236,46,3,96,14,33,7,147,238,72,126,101,150,
+160,59,227,54,4,128,76,95,143,131,250,68,175,252,9,18,143,205,224,32,
+18,167,87,224,33,19,128,67,224,218,11,192,25,97,0,225,114,18,199,35,
+225,114,3,229,93,8,192,76,243,140,1,250,168,5,229,134,6,224,77,3,
+253,13,30,244,232,2,224,31,3,183,222,224,78,0,224,114,10,224,192,2,
+244,192,1,224,154,29,124,127,228,187,0,112,47,109,140,37,113,137,184,96,
+52,227,110,9,248,234,28,2,66,97,100,216,210,214,78,68,148,180,30,103,
+65,66,61,124,61,101,155,196,171,166,55,239,114,0,196,119,224,23,1,231,
+1,0,161,47,103,24,193,103,199,36,234,25,0,228,174,0,255,170,25,255,
+217,30,197,23,233,48,3,175,162,224,47,13,255,235,1,238,83,4,229,71,
+15,228,64,22,145,216,234,5,5,180,151,241,37,8,242,37,6,64,117,105,
+255,33,174,230,198,3,246,103,10,243,181,14,233,100,5,235,177,2,231,111,
+7,242,231,2,232,151,8,234,17,5,235,170,2,251,164,10,106,209,2,52,
+50,32,231,120,2,231,224,11,138,75,66,78,40,39,255,148,1,225,20,37,
+2,56,54,54,237,63,4,234,81,7,224,240,0,252,246,16,241,19,4,169,
+36,192,14,133,136,241,115,1,192,129,249,25,3,225,41,9,236,168,3,204,
+174,224,124,4,242,57,2,240,102,3,129,88,245,134,2,252,250,7,227,41,
+0,195,248,139,228,103,97,228,24,4,228,240,3,104,154,2,51,53,32,233,
+6,6,226,123,39,252,153,1,237,209,1,227,119,26,181,40,227,71,0,230,
+23,16,209,57,227,71,9,192,25,32,207,229,151,5,128,224,234,20,5,226,
+249,3,227,34,3,203,177,227,50,3,225,65,1,138,200,225,65,12,161,206,
+181,172,73,218,2,57,56,54,138,235,2,52,50,53,74,38,72,69,236,151,
+2,226,139,6,252,162,5,255,84,8,32,77,37,85,78,14,76,158,224,69,
+5,47,71,224,147,5,251,225,4,232,63,13,224,228,4,241,62,8,2,48,
+48,51,160,78,99,114,238,113,1,248,159,5,235,254,6,209,7,66,186,192,
+63,195,230,224,154,2,236,229,12,165,71,227,149,8,224,10,0,230,245,14,
+224,199,6,239,111,7,224,175,25,166,76,228,139,7,65,191,72,65,2,95,
+57,57,128,154,225,145,8,64,13,250,1,4,128,227,32,72,2,54,49,49,
+196,158,253,3,9,227,50,2,130,233,76,255,183,32,128,6,64,123,2,52,
+55,52,107,50,227,77,6,241,36,11,236,0,1,228,161,4,227,53,4,228,
+72,8,234,123,2,227,145,14,225,239,10,164,113,236,107,0,232,206,8,225,
+140,4,227,111,4,93,71,208,74,2,55,54,50,248,13,8,198,178,237,159,
+4,246,88,12,247,68,2,232,4,2,230,90,7,225,217,2,128,184,230,107,
+8,96,51,2,57,57,57,195,173,2,55,53,55,105,6,166,38,225,186,4,
+140,205,149,244,32,24,97,166,80,17,201,185,192,17,2,75,32,75,224,61,
+0,2,52,55,54,128,18,150,139,137,148,210,135,233,239,34,224,40,11,197,
+232,203,221,239,14,6,52,111,228,11,4,246,224,2,255,84,6,229,89,4,
+227,129,12,232,204,2,73,142,2,85,32,67,229,16,3,138,68,117,252,32,
+25,116,10,245,86,0,244,101,5,2,110,101,103,2,97,116,101,202,46,227,
+211,0,240,96,8,162,8,228,7,8,174,216,232,152,1,231,13,13,232,167,
+18,249,97,5,240,229,1,249,41,5,254,73,15,228,192,7,224,71,7,227,
+38,8,232,253,9,148,108,224,8,3,229,61,27,224,113,8,249,18,7,228,
+85,4,227,22,8,138,187,248,166,6,251,89,3,251,97,0,2,95,53,56,
+248,51,0,233,37,11,225,119,1,226,20,1,38,141,2,48,55,32,237,8,
+9,64,23,99,72,241,13,1,232,216,9,225,255,13,254,70,10,224,225,6,
+232,238,7,244,228,0,225,1,3,232,247,7,39,127,2,51,49,32,128,90,
+39,47,2,56,51,50,68,137,221,159,233,7,23,225,117,4,83,45,246,184,
+7,253,3,12,224,206,10,230,129,6,68,31,227,82,6,117,138,2,95,56,
+49,224,29,27,32,71,241,48,9,231,255,8,224,144,4,148,242,231,52,5,
+227,102,3,224,108,9,32,51,51,130,35,0,32,65,227,207,1,2,98,105,
+110,2,100,34,32,235,75,15,132,88,227,140,6,204,231,244,198,5,221,121,
+229,230,2,224,57,4,224,35,2,242,227,0,72,143,97,120,227,15,7,97,
+190,193,157,233,158,11,226,139,8,2,48,53,48,224,150,4,234,230,7,226,
+239,0,239,191,0,67,60,245,58,12,102,70,99,68,105,159,227,68,12,237,
+30,11,224,240,8,113,101,150,21,248,165,0,231,184,3,235,239,9,226,178,
+7,251,112,8,64,193,79,153,228,88,4,224,241,10,235,205,4,224,0,6,
+227,173,11,64,7,122,208,227,30,25,250,230,1,2,50,48,49,183,238,36,
+122,2,95,49,53,74,96,67,137,243,137,2,2,99,80,97,2,116,58,32,
+130,96,99,51,68,164,64,49,35,204,35,188,98,152,240,155,2,224,76,10,
+2,79,32,35,67,227,135,70,192,55,233,7,6,168,37,174,28,65,89,97,
+190,65,198,65,192,34,104,2,55,53,54,224,151,3,2,61,61,34,231,224,
+0,224,34,14,2,84,114,117,230,230,1,224,163,4,81,12,152,136,67,77,
+255,114,2,43,199,163,95,96,35,152,139,2,75,32,95,97,39,64,17,152,
+131,2,80,32,58,96,55,152,143,40,86,32,14,35,154,152,217,37,0,226,
+234,4,229,5,9,98,145,225,236,6,32,46,95,207,132,56,64,78,251,181,
+1,246,225,8,2,56,56,54,251,68,0,230,8,0,226,185,5,131,187,235,
+20,2,224,147,0,255,99,21,133,40,248,227,14,239,93,1,231,1,14,228,
+53,0,130,180,232,88,1,75,89,195,137,128,19,64,104,64,197,64,7,229,
+45,4,170,82,237,123,0,97,151,98,21,129,36,83,19,225,62,7,65,47,
+152,17,253,254,1,128,67,234,163,1,234,177,5,230,164,4,105,79,236,11,
+2,224,60,8,93,55,224,245,2,96,14,235,172,4,226,192,0,196,40,224,
+61,0,133,48,129,15,245,179,2,105,236,196,77,96,23,34,161,2,53,56,
+32,67,195,131,40,160,7,234,126,2,235,112,3,224,2,2,229,250,1,225,
+218,2,224,2,3,137,174,225,157,2,253,120,14,2,85,32,95,155,190,248,
+21,0,118,104,193,27,239,22,5,128,7,106,11,252,36,3,32,0,224,9,
+0,236,31,13,161,2,96,86,224,210,6,241,186,3,96,92,130,30,225,6,
+5,237,32,3,244,134,2,224,231,0,201,108,237,80,3,229,235,1,107,208,
+235,210,4,236,206,2,148,231,140,159,241,119,10,225,235,1,173,226,224,26,
+5,224,148,4,128,221,225,180,17,129,17,224,66,9,226,145,0,224,127,14,
+224,106,0,129,151,224,35,20,227,178,3,242,5,6,224,2,0,238,181,1,
+224,14,3,240,187,8,224,1,11,33,98,224,130,4,224,234,16,224,246,12,
+237,13,6,238,30,1,224,5,12,246,104,9,128,72,242,161,1,102,153,203,
+0,131,142,141,3,138,225,223,122,166,102,2,50,54,56,224,42,5,119,142,
+34,107,96,22,64,44,99,147,128,65,192,22,64,8,235,151,4,244,11,11,
+235,248,10,227,130,1,225,60,3,239,210,14,225,138,0,225,32,6,224,181,
+12,251,200,1,96,223,225,13,0,96,186,225,13,23,224,225,14,200,39,199,
+151,227,13,6,228,68,3,227,173,8,175,130,65,37,132,244,231,117,3,232,
+94,12,2,97,109,98,2,105,103,117,2,111,117,115,2,32,111,112,2,101,
+114,97,2,116,111,114,2,32,101,120,2,112,114,101,2,115,115,105,2,111,
+110,34,228,73,10,226,70,4,255,91,3,193,101,224,240,1,32,211,225,29,
+3,224,209,10,224,172,38,2,98,97,100,2,32,112,114,2,101,102,105,2,
+120,32,101,224,164,9,228,250,2,2,95,49,55,2,54,32,102,224,55,0,
+2,92,51,52,2,38,115,114,2,99,47,77,2,105,99,114,2,111,72,115,
+2,47,70,105,2,120,105,116,2,121,46,104,2,115,92,51,2,52,38,44,
+2,54,52,58,2,55,34,32,192,56,100,238,233,174,1,225,210,0,174,28,
+173,132,32,215,33,176,183,124,214,100,234,146,0,111,244,39,18,98,210,129,
+1,128,0,2,80,32,75,2,50,32,85,132,253,40,213,133,237,2,64,89,
+32,205,183,237,180,12,129,43,139,100,64,79,233,202,0,213,223,128,113,128,
+122,160,115,65,66,103,227,2,54,52,32,233,122,5,64,19,234,138,1,64,
+100,135,16,132,168,132,124,228,91,0,230,149,3,136,70,160,179,232,125,0,
+180,33,234,48,0,239,59,3,224,61,7,193,25,224,33,1,225,3,1,161,
+25,114,33,224,21,0,72,86,159,223,139,71,75,72,32,208,157,157,32,5,
+2,49,32,35,105,136,64,39,155,114,234,140,17,241,117,2,64,46,155,138,
+2,65,32,58,129,44,32,11,2,90,32,85,138,71,202,116,64,11,138,110,
+229,200,2,236,21,3,64,32,138,131,114,218,32,14,66,203,74,212,2,52,
+57,32,148,136,65,95,146,87,86,153,108,8,114,34,160,6,172,33,64,11,
+96,29,224,23,11,160,48,129,180,35,17,110,129,100,46,64,112,202,165,41,
+18,239,254,2,233,103,9,248,59,7,227,191,6,253,148,9,119,224,169,242,
+2,55,48,57,248,235,9,255,96,5,236,207,32,2,103,101,116,2,65,112,
+112,2,67,111,110,204,211,236,144,7,255,206,3,2,85,32,73,202,95,74,
+164,161,138,160,105,2,52,32,80,226,21,15,230,37,0,34,7,2,50,56,
+57,161,43,130,74,104,124,64,14,189,164,2,57,56,48,215,224,253,169,0,
+83,122,76,75,199,144,106,62,238,60,2,46,96,229,20,5,239,165,6,234,
+200,1,108,85,46,107,176,169,66,219,240,167,9,64,113,130,132,32,209,2,
+57,55,57,254,115,0,235,99,1,64,34,130,152,236,143,12,128,240,169,218,
+67,103,79,122,32,50,75,241,64,58,130,199,65,178,2,80,32,102,225,139,
+0,2,118,97,108,141,161,238,110,2,2,121,112,101,97,151,224,18,1,2,
+107,105,110,144,223,224,18,1,2,115,111,114,2,116,34,32,128,90,131,1,
+237,39,13,207,251,235,138,1,240,62,3,170,95,2,52,52,32,218,38,76,
+90,132,173,2,51,55,55,228,227,1,239,157,14,65,149,132,85,90,8,224,
+54,4,129,84,65,5,236,147,0,197,167,243,159,6,247,232,9,231,244,0,
+227,19,19,96,144,2,55,49,51,160,194,160,117,246,201,23,36,148,194,154,
+249,198,16,224,94,1,141,176,64,94,197,176,99,95,225,134,2,2,101,116,
+83,2,76,111,99,2,69,120,112,2,114,34,32,160,242,132,16,215,160,151,
+207,198,144,96,71,197,137,173,252,96,19,64,56,131,95,2,79,32,58,128,
+27,97,211,128,180,2,51,52,53,160,35,197,100,244,140,2,174,41,234,214,
+0,237,214,0,83,156,32,48,183,3,193,119,228,147,1,248,73,0,224,55,
+3,35,44,2,57,55,32,32,150,146,212,163,188,160,6,128,33,67,252,104,
+52,192,49,228,105,15,2,117,110,100,40,42,2,110,101,100,164,104,130,99,
+241,62,0,224,54,15,228,151,0,2,51,48,54,236,242,2,43,240,226,17,
+0,104,171,238,44,4,231,17,0,224,157,2,226,182,0,224,105,15,233,123,
+1,200,126,221,57,136,107,224,61,21,192,167,210,140,96,51,160,180,242,3,
+22,130,0,83,0,96,45,72,127,39,127,181,243,205,211,253,125,0,135,182,
+2,95,57,48,253,169,5,177,213,198,137,67,197,98,27,228,96,3,2,91,
+93,34,232,45,3,224,146,8,2,57,49,32,233,179,0,251,203,1,224,254,
+0,166,212,69,230,224,53,4,32,6,250,93,0,224,91,16,64,144,250,57,
+4,224,91,3,228,34,1,133,119,237,119,1,237,89,3,229,241,7,224,16,
+4,64,70,64,64,133,149,2,83,32,83,110,152,228,92,17,190,109,224,33,
+19,132,69,165,44,224,33,12,197,231,188,124,228,159,17,35,182,242,26,5,
+254,253,9,96,75,151,84,65,23,43,172,124,148,88,11,196,47,193,241,245,
+134,0,160,134,65,243,224,57,11,148,61,224,57,1,224,93,13,171,97,224,
+93,1,246,211,4,224,240,5,197,62,197,195,224,29,5,97,148,224,217,9,
+96,22,2,85,32,83,165,200,224,125,2,107,186,135,33,93,127,254,101,1,
+254,190,3,2,57,56,51,226,55,1,225,75,11,224,214,1,35,67,2,55,
+48,49,163,113,192,101,39,194,182,20,128,226,36,20,36,21,128,39,194,234,
+230,130,21,128,20,224,239,8,98,31,225,9,12,206,151,225,8,5,160,220,
+102,79,221,32,230,112,8,2,85,32,66,224,187,3,32,169,255,113,4,254,
+156,5,225,179,0,224,56,9,125,229,224,46,16,231,25,23,225,99,8,225,
+244,17,225,4,16,156,161,254,33,12,225,177,23,57,69,199,107,129,178,224,
+198,1,226,195,10,156,52,225,12,3,224,95,23,173,27,224,94,0,224,60,
+2,226,98,13,235,81,34,2,100,115,69,2,70,105,101,2,108,100,115,235,
+80,12,68,162,236,197,1,2,80,32,35,131,29,32,194,64,25,233,188,32,
+241,35,4,249,117,4,32,12,2,51,56,32,199,94,235,7,0,193,15,227,
+87,2,2,56,57,51,234,212,5,128,158,91,13,141,186,2,50,50,48,192,
+26,99,146,75,54,2,57,54,52,133,104,64,100,202,254,2,57,56,54,199,
+31,137,36,136,231,75,225,225,39,17,2,101,110,117,2,109,34,32,229,249,
+0,81,158,120,62,37,186,229,167,8,224,19,7,67,121,252,16,4,96,17,
+255,239,0,107,213,141,185,224,39,7,128,242,160,39,97,230,192,39,224,100,
+7,224,99,8,224,98,4,2,95,53,55,114,40,224,101,12,130,187,224,140,
+1,239,225,0,64,231,201,204,97,253,101,244,129,252,70,210,139,29,66,104,
+33,105,2,49,54,32,193,62,2,49,51,51,225,58,3,2,66,111,111,2,
+108,34,32,160,79,135,232,224,28,1,2,68,97,116,2,97,46,66,32,33,
+2,95,84,121,2,112,101,46,32,39,64,37,231,87,0,211,64,253,2,5,
+66,121,255,82,6,244,133,7,249,82,10,100,84,2,50,56,32,242,147,5,
+238,227,8,44,6,252,202,5,226,220,3,32,155,227,122,1,179,62,178,194,
+224,109,2,170,140,71,221,99,173,231,69,6,244,119,0,255,145,26,161,95,
+99,207,42,219,228,29,0,2,50,52,48,224,170,2,224,72,4,96,48,170,
+175,2,48,50,55,241,194,6,228,13,20,2,110,111,116,2,32,112,111,2,
+108,121,109,2,111,114,112,2,104,105,99,2,32,101,110,2,111,117,103,2,
+104,58,32,130,249,83,112,73,116,2,95,49,57,32,63,234,225,1,227,149,
+5,103,37,64,130,47,62,2,52,49,55,235,195,1,224,41,8,97,234,137,
+1,132,53,36,177,96,90,33,6,100,241,64,15,2,49,51,48,68,84,132,
+79,64,48,132,143,67,14,67,16,96,137,169,149,64,29,251,214,5,64,70,
+130,72,229,240,3,222,246,129,164,77,254,2,49,50,53,96,204,255,207,1,
+162,123,254,230,5,96,48,78,179,225,81,5,239,205,5,226,173,5,246,104,
+8,227,50,0,254,113,1,178,197,116,218,65,175,236,171,2,238,181,5,40,
+27,32,42,179,204,100,187,234,163,0,64,236,132,227,240,83,8,224,76,2,
+2,50,51,32,129,132,32,43,222,192,104,234,186,46,162,80,224,126,12,64,
+84,2,55,49,57,131,69,129,250,251,198,7,64,188,32,129,236,18,11,244,
+222,4,165,222,100,56,2,55,50,48,131,37,2,50,53,32,224,202,1,132,
+118,128,233,160,139,2,55,50,49,191,15,128,46,64,72,145,140,64,57,164,
+139,2,55,50,50,193,32,223,61,97,35,128,10,64,43,204,105,230,176,6,
+61,189,235,164,0,227,134,2,65,157,151,98,235,59,0,226,14,3,228,26,
+5,203,65,231,15,10,192,94,246,245,5,227,239,4,164,52,32,110,130,10,
+204,106,240,189,7,156,141,161,39,191,7,224,108,12,78,114,129,208,224,210,
+8,66,6,226,36,4,232,178,4,228,206,6,68,69,150,18,224,136,12,224,
+43,4,118,18,96,109,100,39,247,15,3,160,6,168,236,99,88,231,223,3,
+160,249,246,68,0,226,140,2,225,41,6,231,233,2,38,217,109,76,194,203,
+128,141,235,177,2,193,71,225,157,0,228,129,6,224,17,5,193,231,65,89,
+132,151,236,187,0,190,25,208,106,242,80,10,213,216,230,78,0,250,229,0,
+251,72,7,220,128,251,101,12,100,120,225,208,8,139,78,251,122,2,251,250,
+3,252,21,4,249,236,7,217,242,194,117,64,202,239,26,0,100,62,128,188,
+96,172,224,79,0,253,242,3,96,10,160,59,68,255,135,65,64,14,253,106,
+6,224,117,6,224,150,0,229,14,3,254,157,0,129,7,165,14,73,158,159,
+169,224,151,22,219,156,149,85,224,131,6,65,228,102,38,243,206,4,118,4,
+184,28,225,61,11,251,221,8,162,215,251,41,3,224,9,0,128,147,162,223,
+165,178,192,126,224,65,1,104,148,231,221,8,250,254,11,252,64,8,243,25,
+0,192,99,228,10,3,224,26,1,64,16,128,167,224,31,4,224,131,2,183,
+4,224,84,1,255,190,2,243,101,1,224,203,2,224,92,5,64,47,82,169,
+139,33,172,166,97,150,34,2,87,48,195,113,67,43,135,146,2,79,32,80,
+103,194,2,51,48,51,119,246,66,39,67,214,64,39,64,27,64,107,92,175,
+136,15,52,24,35,166,35,189,129,177,32,39,70,83,224,39,17,150,237,32,
+157,107,60,224,39,16,2,49,49,56,192,39,72,66,96,147,92,73,164,129,
+74,165,199,52,64,185,136,46,239,82,5,115,170,227,197,7,254,10,1,165,
+188,238,140,9,226,2,11,225,141,5,224,30,12,224,85,16,227,242,0,224,
+85,22,226,102,6,98,22,65,48,244,98,5,227,34,0,65,2,32,250,65,
+30,235,137,9,75,132,2,76,105,116,2,115,46,75,2,110,111,119,2,110,
+83,121,2,109,98,111,75,187,64,47,246,27,0,225,42,138,240,41,2,225,
+42,75,250,61,1,229,154,11,163,32,224,158,0,164,221,69,45,118,122,230,
+95,3,43,195,224,150,2,236,188,2,241,207,2,157,82,230,116,2,228,160,
+7,229,24,2,224,25,8,224,131,0,248,28,10,224,45,9,225,40,2,255,
+168,18,224,119,5,230,92,10,132,75,230,211,15,224,49,4,230,136,3,251,
+95,0,229,111,17,128,6,100,165,201,64,202,15,231,127,2,71,141,2,54,
+56,32,224,45,0,68,184,255,139,7,225,224,4,224,107,32,100,37,66,6,
+235,88,0,231,28,5,97,155,251,203,4,96,154,2,48,57,48,249,211,0,
+192,82,208,239,226,11,7,225,207,5,226,226,3,167,30,130,15,64,5,129,
+102,250,255,1,238,181,10,193,95,236,184,5,76,241,248,86,3,235,222,10,
+247,14,3,65,75,225,37,6,182,53,131,51,107,6,114,149,198,31,128,166,
+43,117,96,241,178,226,112,190,227,84,1,236,212,14,224,112,0,161,43,225,
+188,1,224,55,2,152,79,128,7,234,63,1,144,121,90,39,198,141,248,245,
+21,2,77,117,108,2,116,105,112,2,108,101,32,2,99,111,110,2,115,116,
+114,2,97,105,110,2,116,32,115,2,111,108,117,2,116,105,111,2,110,115,
+32,2,102,111,114,249,22,0,169,225,154,251,2,57,57,57,226,14,4,189,
+251,84,236,94,88,33,3,32,38,64,24,189,248,35,82,251,107,6,2,116,
+117,112,2,108,101,67,224,116,0,2,115,34,32,194,28,65,42,78,201,78,
+53,96,103,114,138,47,53,2,51,52,55,97,69,103,22,158,200,96,99,139,
+241,161,154,41,48,225,183,1,169,54,224,16,1,228,35,0,195,122,227,216,
+5,192,38,96,68,243,168,9,96,5,234,208,1,130,114,216,220,224,60,0,
+132,61,241,118,4,232,68,1,229,181,4,129,216,96,206,234,90,4,161,206,
+130,87,143,209,66,175,80,104,224,0,4,227,101,3,66,104,233,149,4,145,
+220,34,88,127,37,225,44,0,222,244,229,99,5,252,126,1,67,33,32,106,
+96,171,2,89,32,67,249,199,5,131,121,230,224,0,225,32,0,185,221,241,
+205,9,230,32,1,192,83,96,200,130,202,233,136,0,128,157,151,214,32,29,
+196,22,176,144,224,22,3,227,11,7,230,201,2,224,10,8,195,90,2,48,
+57,56,253,1,1,251,61,2,128,143,65,35,164,153,65,30,245,218,1,161,
+200,193,41,192,205,176,203,224,206,0,228,59,4,49,255,224,25,1,228,233,
+2,2,48,55,32,79,123,64,248,207,129,79,66,35,227,227,215,5,236,42,
+5,224,103,2,64,67,132,129,230,53,4,242,225,2,224,147,2,163,169,96,
+48,130,205,240,124,7,236,57,3,209,222,236,187,6,2,95,55,57,238,16,
+1,229,130,1,232,104,1,196,253,142,135,224,123,1,209,204,211,159,161,185,
+211,160,83,49,207,128,2,48,50,52,2,32,64,89,241,26,10,33,197,253,
+50,2,237,84,10,245,100,0,2,51,55,50,196,234,228,91,1,2,102,114,
+101,2,101,32,116,41,183,2,32,118,97,2,114,105,97,2,98,108,101,2,
+32,105,110,2,32,111,117,2,116,112,117,2,116,32,102,94,199,2,112,34,
+32,229,128,3,226,119,2,208,75,230,53,3,164,86,228,83,5,228,80,5,
+230,119,1,226,248,2,140,87,233,118,1,228,16,17,227,248,9,227,239,8,
+226,77,2,229,123,5,139,176,130,101,239,117,3,32,27,64,41,178,125,134,
+167,230,87,1,245,29,3,227,242,4,224,42,8,224,228,0,226,116,1,228,
+40,7,200,40,228,45,0,246,167,0,74,20,70,141,2,53,50,32,227,122,
+2,135,77,162,167,237,184,5,227,35,2,189,42,224,8,3,242,180,0,66,
+220,99,168,175,32,161,57,80,253,192,59,233,91,3,224,25,5,224,26,6,
+224,29,7,254,221,1,228,198,5,230,36,4,226,147,6,64,146,139,19,32,
+196,82,57,65,63,128,169,137,42,64,217,2,57,32,95,130,102,136,233,2,
+83,32,67,148,174,65,187,115,82,100,163,64,7,117,241,96,13,64,65,135,
+93,120,222,69,127,64,68,71,100,32,25,210,181,66,194,96,16,123,124,96,
+201,64,56,135,125,46,165,2,51,32,75,160,18,184,71,201,36,155,98,192,
+58,210,43,96,22,32,68,192,22,192,236,64,15,34,148,64,71,134,71,96,
+90,80,71,64,18,246,134,3,202,89,64,23,251,20,3,203,46,241,72,3,
+242,41,3,2,58,49,48,71,242,193,218,231,40,4,2,48,57,54,162,187,
+32,19,161,4,128,49,130,12,32,140,2,50,32,90,128,120,64,21,218,144,
+2,75,32,90,224,143,2,96,69,163,20,135,233,227,201,7,241,13,0,237,
+201,3,254,84,9,158,31,224,39,19,176,69,226,62,2,253,69,1,64,26,
+236,252,12,229,88,0,227,71,6,34,87,227,73,2,230,119,1,228,187,2,
+240,175,6,209,182,195,67,224,132,8,134,89,235,116,2,134,9,101,125,197,
+138,224,50,35,196,4,147,21,34,209,2,56,51,57,224,47,2,224,172,6,
+229,204,2,164,85,160,244,225,74,11,225,73,17,225,72,16,231,37,1,234,
+0,3,224,58,17,233,192,8,232,206,13,228,247,4,232,196,8,224,19,0,
+199,84,225,69,12,131,83,225,69,8,225,64,9,177,200,225,64,20,66,210,
+171,127,111,125,64,29,68,207,96,51,64,15,63,66,200,70,224,64,3,64,
+55,132,32,192,232,32,218,152,63,64,51,96,80,96,130,132,176,110,76,64,
+169,160,89,224,12,4,237,34,2,2,95,49,55,224,98,0,41,100,224,11,
+1,86,162,224,122,2,202,136,227,229,0,116,251,236,215,7,244,101,3,177,
+77,244,249,0,195,121,225,184,0,227,164,11,160,67,224,46,24,149,38,226,
+141,3,253,10,12,227,216,9,193,60,227,218,5,225,215,6,249,220,1,2,
+50,48,52,181,38,227,205,3,128,47,32,45,110,71,2,57,54,56,234,65,
+0,224,93,7,200,51,32,43,239,189,1,224,179,1,239,2,5,227,59,3,
+224,75,10,192,24,32,75,200,184,206,197,205,95,128,29,160,103,2,95,54,
+57,84,204,216,88,97,198,133,244,109,224,134,119,69,107,96,137,109,24,134,
+99,32,150,248,188,0,32,126,32,103,214,125,181,65,32,90,57,129,64,12,
+134,62,153,18,227,47,5,116,176,89,138,46,93,66,232,93,39,174,216,2,
+48,52,57,156,195,109,74,2,95,50,57,248,27,7,247,70,35,208,102,181,
+75,200,185,83,20,34,205,2,54,49,32,98,215,125,238,254,248,1,234,164,
+4,238,155,0,112,244,98,229,43,254,238,255,5,2,109,105,110,2,105,109,
+117,2,109,34,32,222,70,85,245,229,3,1,249,22,1,2,95,52,55,2,
+32,64,73,193,145,32,83,65,158,243,123,1,240,180,8,233,99,5,242,115,
+5,224,13,0,102,25,226,152,0,97,241,160,75,144,189,33,142,208,240,128,
+29,32,223,2,55,53,57,33,100,2,54,52,50,46,107,2,35,55,53,253,
+105,1,242,88,6,64,162,135,144,245,73,20,2,78,97,116,117,70,118,198,
+32,44,162,53,97,75,142,150,132,22,209,93,195,147,160,186,244,120,12,158,
+178,253,92,1,225,73,1,239,19,0,97,214,2,56,53,32,242,121,15,163,
+131,251,240,6,65,7,252,15,1,227,50,0,255,15,9,242,86,0,242,58,
+1,225,156,9,199,153,87,235,245,167,4,242,11,19,224,199,1,242,14,8,
+228,8,0,227,160,4,65,90,243,166,3,129,2,133,5,218,180,225,38,4,
+165,32,168,68,2,57,52,50,97,82,96,205,176,138,32,40,32,9,99,58,
+231,74,18,225,68,2,230,250,9,231,115,4,229,34,1,243,103,10,131,176,
+34,254,97,19,192,238,238,247,6,80,246,97,76,241,5,1,32,14,246,182,
+5,134,189,224,74,5,224,81,1,224,28,18,65,65,135,89,130,156,226,17,
+18,163,73,226,7,8,226,2,7,233,148,0,245,178,23,141,132,32,19,64,
+151,164,112,195,158,228,121,0,68,18,224,201,1,64,174,135,208,227,24,9,
+175,130,254,243,4,2,53,52,32,192,60,254,64,2,87,191,97,243,64,78,
+211,90,96,171,2,56,56,51,155,31,2,51,48,57,127,82,114,150,76,121,
+128,44,135,209,2,75,32,66,227,156,14,162,234,243,86,8,255,244,12,96,
+131,174,22,71,19,255,79,1,129,105,255,40,6,172,165,245,188,3,64,146,
+209,206,224,191,12,85,9,224,191,3,133,171,255,236,8,255,249,7,45,47,
+163,98,70,32,64,82,113,79,184,155,240,221,6,2,67,32,79,194,142,64,
+113,245,151,1,192,50,202,33,198,130,231,156,8,227,33,1,239,134,0,248,
+209,13,235,34,4,235,1,0,236,216,6,250,44,13,200,251,235,1,9,248,
+154,3,252,173,19,240,161,0,93,11,244,167,5,65,204,32,41,232,54,0,
+33,106,65,220,155,57,140,221,227,88,4,129,98,210,164,235,63,1,255,52,
+8,64,106,150,108,96,130,245,210,0,226,27,6,160,119,64,9,206,48,32,
+143,226,170,1,250,190,9,244,158,1,130,138,98,33,240,173,8,64,71,219,
+6,226,236,14,97,73,244,152,15,130,142,246,156,4,226,153,11,231,196,8,
+239,47,4,192,136,165,232,192,122,47,8,143,149,96,204,134,2,226,196,2,
+228,184,1,66,237,233,0,3,236,243,4,160,100,254,222,6,226,69,2,143,
+1,168,168,235,174,7,249,167,4,183,35,224,33,12,128,27,226,225,4,231,
+252,3,247,188,13,226,203,24,252,248,9,252,234,6,235,220,2,251,174,0,
+250,11,22,64,62,201,58,133,168,66,109,2,48,54,56,132,87,32,9,142,
+239,251,97,12,224,12,1,224,20,0,224,160,5,236,121,4,96,2,224,136,
+12,252,55,6,230,79,0,244,88,1,64,144,32,56,163,111,248,37,9,225,
+8,3,207,115,248,115,14,155,163,224,18,10,160,193,32,245,2,53,53,54,
+170,72,145,165,120,114,2,95,57,53,139,139,2,53,54,48,32,34,68,18,
+2,95,54,50,82,92,66,218,66,78,128,9,2,49,56,49,2,32,35,49,
+172,2,224,31,15,240,47,5,254,112,16,247,242,2,2,55,49,32,128,156,
+75,86,96,19,2,54,49,51,71,56,41,111,64,30,163,121,131,33,175,4,
+66,79,228,240,0,255,124,11,137,38,226,184,2,198,171,251,171,0,224,110,
+11,201,154,2,51,51,53,128,230,2,56,57,57,96,131,230,167,2,64,143,
+192,130,177,76,32,4,224,14,6,46,48,32,92,237,125,1,96,56,207,69,
+228,128,19,2,90,32,66,228,119,45,243,164,15,192,124,135,93,228,116,0,
+243,101,0,64,27,182,149,2,51,49,56,2,32,58,49,99,23,219,163,128,
+69,64,20,213,195,207,31,79,16,229,182,0,112,169,180,132,161,57,134,24,
+64,57,181,106,251,187,2,226,226,0,254,127,8,228,155,4,255,127,2,255,
+148,6,164,161,228,54,2,243,54,0,224,32,0,255,190,4,247,14,5,224,
+23,0,160,38,239,136,5,96,8,160,5,32,226,239,222,0,224,1,1,225,
+192,8,35,13,238,192,2,231,12,1,240,143,4,243,217,2,255,38,5,39,
+164,184,37,246,235,3,231,26,4,71,117,249,168,3,2,55,48,49,65,121,
+2,56,48,54,185,174,64,15,254,59,19,2,101,120,112,2,97,110,100,2,
+68,105,99,2,116,58,32,142,199,2,95,49,50,32,38,2,51,48,55,254,
+170,5,237,7,9,228,147,14,225,72,4,241,132,8,226,127,0,219,67,232,
+181,6,229,234,2,224,19,4,195,195,224,22,17,233,80,1,242,43,1,254,
+21,1,224,55,8,232,136,3,224,29,10,34,242,32,30,107,167,175,69,230,
+125,11,254,113,4,231,1,0,96,64,236,87,2,254,87,11,243,175,1,99,
+37,245,247,1,145,185,143,210,207,198,35,215,228,50,2,232,213,0,91,221,
+37,185,33,246,165,155,229,145,11,232,245,0,116,60,164,236,101,254,64,109,
+124,32,140,152,165,244,225,15,11,230,192,18,249,70,5,248,31,7,232,241,
+19,253,252,14,225,123,13,227,186,3,225,90,56,135,229,69,64,255,184,0,
+157,42,225,76,18,232,145,0,234,184,1,35,82,114,250,243,192,3,192,21,
+232,50,1,179,36,179,35,233,134,5,64,20,147,66,64,23,123,20,96,177,
+115,140,46,23,226,110,1,244,152,1,179,126,51,138,46,157,32,50,78,140,
+229,99,6,108,253,96,227,159,125,230,0,2,200,252,250,249,3,224,46,18,
+192,44,64,212,198,49,64,37,133,183,179,144,85,212,147,45,229,99,4,245,
+166,17,194,102,236,153,1,253,113,3,237,11,6,85,100,81,96,32,229,2,
+56,51,50,69,121,68,192,245,156,4,112,155,96,93,224,214,2,144,192,201,
+89,220,115,65,125,198,117,201,252,69,67,2,57,55,49,230,114,4,100,207,
+162,142,111,188,232,53,2,254,70,13,252,100,3,192,134,227,61,2,172,223,
+234,116,1,178,197,244,156,0,2,95,54,55,227,126,1,68,63,32,48,226,
+138,19,135,177,160,24,225,83,0,124,137,164,55,77,219,229,232,1,2,36,
+120,34,167,214,66,249,187,83,2,75,52,32,32,2,251,89,1,128,31,240,
+3,3,243,158,15,237,88,0,35,49,162,191,96,151,64,63,168,82,243,189,
+6,71,194,231,4,0,139,170,238,29,5,33,39,67,237,210,214,224,43,0,
+160,23,128,35,242,209,8,224,21,9,225,244,0,224,94,4,240,166,1,237,
+253,0,224,31,18,192,67,248,164,1,75,60,163,6,228,202,3,226,242,3,
+224,32,8,160,69,215,134,64,7,252,175,5,226,64,3,239,228,3,246,209,
+15,193,27,250,217,7,64,81,224,15,1,213,109,227,13,1,128,76,179,88,
+226,225,1,128,159,236,220,1,65,188,137,243,235,72,1,245,74,1,160,107,
+32,229,186,148,128,138,224,8,0,32,61,65,128,74,49,234,229,1,64,20,
+202,34,239,96,23,218,53,234,229,53,245,99,4,224,215,0,66,166,239,92,
+6,159,77,98,208,226,238,18,253,169,4,115,111,240,71,14,50,23,224,230,
+27,108,9,235,201,63,254,30,1,128,130,180,57,2,51,49,48,121,133,232,
+211,5,233,45,4,232,240,7,235,47,6,224,34,17,224,32,3,32,188,230,
+24,2,64,174,225,98,4,236,74,2,65,70,223,221,196,116,162,119,64,29,
+236,132,2,74,119,186,12,64,25,130,142,228,198,1,2,97,100,105,2,99,
+116,34,96,27,64,34,194,170,59,110,32,67,64,20,130,108,227,183,3,227,
+201,0,234,30,1,229,170,2,234,6,2,73,2,228,105,0,255,201,0,224,
+49,7,242,156,6,184,2,182,114,224,21,5,2,52,54,32,96,147,210,97,
+227,250,3,253,10,0,204,109,224,178,3,234,180,13,232,4,6,224,59,1,
+240,6,1,109,39,231,114,4,168,38,228,203,6,231,157,6,116,3,162,103,
+224,35,5,224,75,7,160,37,235,8,8,225,19,11,149,94,249,9,6,233,
+170,1,244,27,7,225,98,0,207,149,225,157,8,100,120,242,20,10,65,106,
+209,173,224,99,79,225,132,0,237,176,4,224,15,2,224,132,3,224,47,2,
+131,113,238,101,2,226,123,26,136,212,227,106,1,224,140,16,240,215,1,224,
+106,63,99,143,66,183,227,68,0,225,60,10,236,248,6,237,75,5,241,101,
+1,166,177,2,52,51,32,96,6,233,153,1,224,174,3,163,38,96,118,133,
+65,233,47,1,232,194,6,2,99,97,110,2,110,111,116,2,45,104,97,2,
+112,112,101,2,110,34,32,160,171,132,243,239,57,1,180,211,246,140,5,38,
+143,225,72,12,232,141,0,207,152,237,204,12,246,183,6,224,180,1,236,110,
+4,232,68,2,250,97,3,102,54,40,159,129,153,39,118,248,78,2,239,52,
+3,228,97,19,227,102,2,79,237,201,46,239,240,0,160,16,96,229,96,10,
+159,166,109,44,64,48,37,89,2,52,49,55,215,245,224,120,2,97,153,2,
+50,55,32,240,17,2,2,83,117,98,2,115,117,109,2,112,116,105,2,111,
+110,32,2,99,104,101,2,99,107,32,2,102,97,105,2,108,101,100,144,29,
+249,160,10,65,223,246,157,18,217,96,240,62,4,65,18,64,184,64,62,134,
+26,115,118,2,89,32,83,64,148,129,146,233,94,1,210,0,227,113,1,97,
+104,229,214,3,228,220,1,236,119,17,207,199,241,138,12,228,236,8,128,51,
+197,106,245,102,1,224,32,7,97,127,192,26,178,131,160,26,162,1,34,107,
+97,238,224,9,1,249,226,9,255,221,1,169,115,170,77,239,155,11,229,200,
+3,224,238,18,121,128,228,168,5,250,107,5,224,31,5,250,109,2,175,142,
+196,20,224,91,0,224,63,5,193,78,239,128,9,224,13,7,224,58,8,250,
+171,15,129,137,220,49,227,23,10,128,26,160,154,247,151,4,231,72,7,244,
+52,0,227,244,2,225,184,5,229,93,1,225,80,30,195,59,235,243,0,226,
+63,13,226,3,4,179,69,225,98,4,244,147,5,225,23,3,204,62,117,240,
+224,220,0,230,122,3,224,46,4,224,194,2,248,131,9,229,186,0,165,172,
+121,31,109,119,130,83,2,51,51,52,228,131,3,231,243,8,224,198,4,252,
+151,9,230,28,3,193,164,231,24,2,166,87,160,82,160,145,228,136,9,128,
+31,129,118,224,27,6,227,109,0,43,35,116,206,239,222,1,109,80,224,4,
+1,223,138,244,235,23,2,102,114,101,2,101,84,121,2,86,97,114,2,115,
+58,32,244,235,3,112,87,230,186,3,69,64,221,18,145,191,177,190,32,4,
+177,101,240,80,0,68,198,108,62,2,89,32,67,222,65,97,22,228,153,3,
+246,72,5,228,89,4,225,214,11,192,25,108,48,165,247,230,206,4,2,51,
+57,32,208,225,144,251,230,113,4,252,175,0,233,124,8,241,205,6,230,91,
+5,254,135,14,65,201,228,222,2,252,14,1,234,13,0,234,131,1,230,248,
+6,200,92,231,29,3,231,72,3,255,24,3,246,95,11,238,119,4,224,187,
+3,179,202,241,233,3,225,7,34,243,4,0,2,57,49,55,225,9,5,224,
+40,2,211,85,198,228,140,136,193,212,230,233,13,122,182,2,51,56,32,251,
+65,0,242,16,2,224,245,5,164,228,167,235,213,143,245,213,0,229,246,6,
+128,13,210,66,96,143,66,1,238,109,6,2,57,53,57,245,225,0,224,110,
+1,224,177,0,2,55,53,54,73,81,62,75,32,4,96,247,160,112,134,103,
+2,50,57,53,167,164,227,62,5,2,79,32,35,76,220,132,140,131,47,2,
+49,52,54,224,136,2,141,112,254,20,5,236,80,2,249,25,7,2,57,54,
+48,253,165,5,224,25,8,231,244,2,177,119,233,11,4,230,24,9,132,211,
+172,111,129,211,225,5,7,207,38,224,19,2,64,187,141,152,2,85,32,67,
+66,61,226,251,3,47,118,64,70,32,25,206,53,224,32,13,227,164,0,235,
+38,4,230,231,4,192,41,226,237,4,64,33,242,218,0,2,95,56,49,2,
+50,32,102,228,166,0,2,45,62,34,97,244,224,21,5,2,80,114,105,2,
+109,105,116,2,105,118,101,2,115,46,45,128,32,224,89,5,32,12,158,193,
+247,96,5,64,229,139,205,250,164,14,2,57,55,56,255,28,4,197,178,228,
+190,0,85,114,127,18,241,3,0,132,159,2,95,55,55,251,2,2,64,50,
+193,131,96,116,139,203,239,117,1,210,61,228,199,4,136,130,224,36,28,64,
+92,64,8,64,91,139,242,207,79,231,239,5,230,188,4,138,35,226,79,6,
+237,190,4,246,156,16,255,96,7,232,26,21,138,5,233,107,17,224,31,6,
+233,107,0,2,83,32,67,224,169,0,233,39,10,160,54,229,75,4,163,100,
+171,186,246,62,0,226,216,0,54,17,228,213,1,225,154,2,2,50,57,32,
+224,20,2,224,106,8,231,225,9,252,114,2,224,13,5,224,56,12,232,27,
+6,240,29,2,245,223,0,227,199,5,231,186,0,247,200,5,32,45,226,15,
+4,234,51,6,225,10,9,236,198,1,232,58,0,225,12,14,248,173,6,246,
+140,3,209,112,241,106,9,224,222,5,227,62,8,2,56,56,57,224,32,0,
+241,57,5,254,190,21,226,75,3,97,51,66,223,65,25,64,155,96,159,238,
+86,10,109,251,173,176,193,83,232,236,15,143,44,2,32,117,110,2,105,102,
+121,168,237,229,240,5,2,56,48,53,229,240,12,224,66,1,2,32,97,110,
+2,100,32,34,132,106,128,45,236,186,13,226,95,6,67,161,142,18,254,206,
+2,231,48,2,50,144,96,42,244,238,0,35,226,134,80,65,3,174,21,65,
+11,163,227,251,183,0,128,8,221,24,32,56,134,210,32,44,130,27,64,54,
+137,141,229,54,12,2,126,34,32,96,34,135,201,255,110,2,224,156,5,161,
+241,240,25,3,133,82,64,27,36,241,228,237,11,64,251,229,98,0,226,95,
+8,243,208,2,226,95,23,240,184,4,133,108,123,227,240,49,2,228,123,1,
+229,166,3,67,2,107,61,196,14,2,48,50,50,243,169,7,226,70,44,2,
+121,99,108,2,105,99,32,226,64,10,32,7,98,20,40,119,167,232,226,73,
+18,2,61,32,34,226,71,15,238,56,7,240,71,5,225,143,0,228,181,1,
+170,9,160,224,253,236,2,98,214,160,141,161,151,216,122,227,185,19,225,33,
+16,2,57,52,53,233,164,2,143,141,2,48,50,54,202,135,224,233,13,2,
+101,114,114,2,111,114,58,193,48,96,132,216,122,71,155,224,41,1,2,116,
+121,112,2,101,34,32,2,64,64,102,224,17,0,2,107,105,110,145,101,224,
+18,1,2,115,111,114,86,237,224,18,3,2,114,101,97,2,108,109,34,131,
+37,64,140,241,122,42,2,50,52,32,128,62,179,112,145,122,133,72,241,95,
+4,239,21,5,239,18,17,246,190,1,241,70,24,254,29,1,231,68,15,231,
+62,17,98,42,238,50,11,130,244,238,32,6,233,114,4,48,210,239,118,38,
+254,201,5,232,41,17,237,63,30,187,72,224,133,1,242,11,1,61,235,44,
+57,123,46,254,170,3,65,165,98,55,110,79,225,95,1,241,232,15,161,132,
+238,107,18,235,164,6,225,123,41,228,160,6,195,157,132,22,35,150,235,114,
+3,227,201,10,64,167,191,112,232,11,3,163,203,244,89,6,111,123,196,112,
+2,56,32,95,2,55,48,48,99,148,222,36,96,77,227,190,2,242,215,6,
+90,253,99,183,224,58,1,2,50,52,52,74,239,224,115,0,210,255,226,146,
+18,128,251,225,89,18,194,58,233,79,8,254,9,1,226,128,0,226,13,2,
+224,78,15,133,28,225,133,10,192,24,98,162,225,41,6,226,127,16,224,46,
+13,225,53,14,129,52,161,112,225,182,10,224,23,13,252,199,0,224,99,3,
+239,158,9,224,132,9,226,244,3,66,236,136,49,253,22,7,174,76,189,16,
+2,49,57,32,253,16,1,229,248,0,108,135,204,199,64,74,200,58,101,231,
+151,4,204,196,160,38,64,37,136,41,224,110,4,253,122,1,224,105,3,64,
+44,136,51,253,88,12,221,82,253,79,58,224,29,20,224,26,17,224,23,14,
+253,157,2,128,197,64,212,178,170,232,167,2,235,3,7,252,107,14,246,254,
+2,125,166,138,60,239,101,11,226,243,1,233,255,12,104,213,74,1,144,139,
+2,55,53,51,238,127,4,201,5,228,32,3,234,35,3,209,233,96,7,130,
+104,241,25,2,224,125,3,235,107,0,250,252,7,72,246,39,37,192,119,65,
+25,254,53,0,247,224,3,185,69,234,39,12,231,100,2,36,96,240,186,0,
+242,201,18,122,154,241,245,9,241,241,13,224,76,0,225,94,7,64,172,222,
+78,229,95,7,32,209,198,69,227,71,22,104,202,227,71,6,160,109,64,62,
+169,96,178,254,64,114,136,103,53,5,2,51,32,75,127,190,134,186,64,26,
+200,67,227,26,10,227,34,7,227,38,30,226,184,1,64,95,207,236,47,234,
+129,206,175,243,237,77,1,254,203,6,191,58,225,182,1,249,44,36,224,89,
+0,239,240,22,248,194,1,236,38,0,232,40,15,234,193,3,240,25,16,230,
+41,8,229,85,8,35,5,2,57,56,54,237,133,13,234,195,5,162,184,235,
+174,0,231,61,7,230,53,16,129,4,165,177,249,30,3,249,86,3,241,63,
+30,241,136,3,231,58,196,251,81,18,241,10,9,227,250,1,254,68,7,228,
+199,0,234,181,0,237,21,19,236,190,8,35,25,228,244,0,237,26,1,226,
+133,3,177,24,2,50,56,57,228,17,4,226,82,16,224,120,5,255,80,5,
+162,92,230,21,6,103,195,250,128,12,192,139,243,112,3,240,254,2,230,104,
+2,252,250,1,226,199,6,227,221,4,226,130,4,226,55,1,198,93,121,118,
+32,204,2,54,51,32,37,153,137,223,192,215,225,129,1,32,2,141,217,224,
+105,7,161,4,134,102,225,25,0,2,53,55,57,224,65,4,128,59,224,36,
+3,192,211,160,25,70,144,110,51,247,101,4,237,185,1,2,98,97,100,2,
+32,115,121,2,110,111,110,2,121,109,32,2,117,115,101,255,80,0,128,124,
+32,70,230,8,15,233,48,1,204,30,101,25,177,100,33,116,37,204,32,19,
+2,90,32,90,229,39,3,247,140,1,97,110,254,53,39,217,126,237,214,29,
+236,90,56,173,11,236,102,1,135,113,65,89,196,181,182,126,185,44,64,232,
+140,118,191,92,224,233,0,230,118,5,253,170,1,255,195,1,32,11,130,213,
+32,96,89,217,130,61,252,125,3,225,133,8,97,221,227,168,4,229,68,26,
+66,16,140,111,192,43,238,82,30,229,54,26,238,197,29,228,224,21,251,185,
+2,139,178,253,79,2,233,70,1,241,18,0,61,98,96,100,33,43,2,56,
+52,53,253,197,1,98,158,93,126,240,184,2,2,117,98,115,116,125,2,109,
+112,108,2,101,109,101,2,110,116,101,144,218,199,213,139,163,125,86,64,14,
+139,140,32,14,2,52,32,90,224,1,4,255,225,2,64,39,139,135,99,131,
+2,48,55,32,116,75,34,26,32,25,74,80,243,248,4,2,100,105,99,81,
+57,64,26,242,4,1,251,44,7,216,211,229,23,7,228,52,0,160,247,116,
+104,194,3,178,252,146,2,2,48,48,54,99,148,251,23,8,64,158,32,117,
+91,62,32,21,128,230,64,43,250,111,137,2,61,62,34,250,111,21,160,32,
+250,111,31,76,26,74,17,75,149,2,95,51,52,69,9,2,52,55,32,229,
+7,2,224,90,2,2,84,121,112,133,7,64,55,137,233,227,250,0,33,44,
+70,159,2,52,57,32,133,116,43,112,2,57,53,48,147,152,136,197,96,135,
+33,186,2,57,52,49,175,211,219,217,2,48,51,32,246,128,7,65,200,224,
+79,15,84,39,238,83,4,2,49,50,53,150,90,34,212,128,80,130,176,241,
+140,25,193,33,128,31,229,92,12,224,26,12,133,74,229,34,9,96,22,130,
+49,133,7,192,148,240,250,21,132,119,224,43,2,240,230,20,193,78,233,138,
+8,225,103,1,194,73,237,217,0,249,157,19,222,224,230,67,0,224,12,1,
+61,160,131,63,2,57,57,56,238,3,7,224,174,0,227,247,4,223,224,98,
+192,2,57,57,57,255,42,2,2,53,55,32,224,66,5,167,76,197,189,224,
+252,7,243,28,13,241,227,138,128,254,229,188,21,225,34,2,226,54,9,241,
+205,4,33,8,33,159,193,15,79,253,135,52,228,71,1,168,199,134,223,64,
+53,115,204,225,63,2,198,76,220,175,230,175,1,224,101,0,143,139,160,52,
+224,60,2,224,172,4,241,246,6,64,35,165,155,2,80,32,35,206,229,64,
+24,217,165,137,155,34,53,85,20,97,253,68,91,67,244,64,17,34,15,34,
+2,32,23,133,227,250,19,0,2,57,57,54,96,22,133,132,133,171,2,55,
+49,53,228,133,3,2,91,93,34,64,131,96,41,151,67,35,26,224,5,1,
+128,230,32,231,202,35,135,32,65,37,96,9,2,83,32,83,32,10,87,57,
+132,171,250,165,9,70,84,144,153,105,219,96,151,130,171,101,19,234,29,7,
+2,99,111,109,2,112,111,115,2,101,83,101,151,240,153,81,2,57,57,51,
+80,223,136,118,198,168,66,219,2,57,57,52,98,239,2,53,56,49,160,45,
+65,97,71,190,225,97,4,2,57,57,53,197,8,251,61,6,224,146,5,128,
+141,224,140,1,2,104,97,115,2,70,105,101,2,108,100,34,131,151,2,57,
+55,51,97,78,229,161,0,224,76,36,2,115,101,116,224,76,11,133,162,134,
+151,2,57,57,49,224,61,5,2,95,50,57,67,14,248,246,3,2,99,67,
+111,2,110,69,114,57,93,161,183,133,145,254,44,1,225,162,1,232,176,1,
+2,55,53,57,129,148,65,56,2,57,56,57,249,187,20,32,95,2,116,114,
+111,2,108,46,69,2,120,99,101,2,112,116,105,2,111,110,46,2,73,110,
+116,2,101,114,110,2,97,108,46,232,187,0,234,152,6,97,222,156,196,124,
+12,251,4,19,2,44,32,97,2,116,32,34,164,232,72,47,2,56,51,48,
+176,230,96,254,178,128,204,78,133,44,106,61,101,252,96,202,2,95,56,54,
+168,183,96,209,2,52,55,52,128,116,2,52,55,53,97,134,60,39,226,121,
+5,161,152,224,228,2,2,104,97,114,128,132,177,194,96,195,99,106,35,129,
+69,239,35,173,2,58,57,56,220,209,242,251,10,2,57,56,49,248,174,1,
+254,12,6,171,117,224,21,8,232,166,4,123,185,255,164,3,168,87,239,57,
+6,238,10,2,255,241,1,172,140,224,29,7,238,48,1,167,238,244,63,2,
+132,180,32,103,2,54,50,54,67,170,65,173,40,49,142,41,2,95,54,52,
+81,33,67,102,2,49,56,49,2,32,35,49,129,160,67,103,100,120,2,51,
+48,49,160,231,101,221,105,125,122,76,36,167,2,90,32,67,66,187,131,206,
+65,14,226,255,13,2,78,101,115,42,254,2,32,102,105,35,3,2,115,32,
+110,63,149,2,97,108,108,2,111,119,101,235,17,1,225,13,5,2,56,55,
+32,239,216,5,245,15,7,140,235,77,246,224,52,7,160,165,194,68,174,144,
+224,157,10,226,170,21,2,101,120,116,2,114,97,32,96,176,2,40,115,41,
+162,180,32,48,2,51,57,49,206,160,131,159,228,168,1,2,56,53,32,172,
+15,128,31,193,55,245,19,2,235,101,8,224,26,6,210,155,172,115,65,90,
+143,196,134,196,100,241,246,32,1,163,36,236,147,19,100,109,2,56,50,32,
+192,147,2,57,48,52,32,32,2,51,56,32,161,114,96,19,225,109,1,66,
+246,198,71,230,232,0,2,85,32,80,32,31,229,92,13,64,58,106,233,2,
+53,52,32,132,124,32,19,134,78,97,18,190,49,96,22,133,135,69,49,32,
+44,96,183,58,141,35,207,70,162,64,31,212,230,107,169,87,153,143,205,225,
+48,2,2,67,32,79,231,71,1,224,25,5,99,248,193,20,36,52,129,250,
+100,2,198,60,160,56,251,191,5,227,201,2,226,218,1,201,110,241,243,8,
+223,111,226,83,9,137,125,229,172,4,2,111,114,100,2,32,119,105,2,108,
+100,99,2,97,114,100,226,243,9,106,162,224,192,1,80,181,200,148,200,179,
+64,182,102,26,64,205,224,251,0,247,235,2,161,218,225,187,1,134,80,64,
+69,2,65,32,64,2,64,65,32,64,19,166,36,65,141,105,2,107,215,32,
+23,232,119,1,238,21,10,233,16,0,225,45,4,164,72,65,95,98,50,242,
+65,4,224,37,1,32,30,134,115,249,27,11,32,121,133,109,2,75,32,66,
+243,209,7,186,193,136,130,144,167,154,180,255,190,5,2,57,53,54,138,233,
+227,73,2,2,58,57,55,133,175,215,161,239,62,8,32,33,207,6,33,226,
+101,226,64,197,161,3,69,179,192,7,120,101,97,116,130,175,230,75,0,134,
+73,32,26,232,82,45,2,103,101,116,232,5,10,66,68,97,160,203,127,209,
+48,133,216,220,73,96,11,231,204,0,103,4,228,129,0,230,240,22,2,80,
+114,111,2,120,121,34,163,242,224,153,2,32,123,252,115,1,38,250,141,59,
+74,125,96,129,252,140,3,2,57,54,57,161,217,32,98,32,30,130,60,130,
+34,34,151,33,25,92,190,79,227,96,33,199,76,64,80,97,105,64,62,234,
+229,2,98,192,96,104,68,241,238,166,21,2,50,56,55,78,166,64,233,238,
+166,1,246,16,12,2,56,56,57,243,140,3,231,49,3,89,49,229,85,1,
+101,62,109,144,64,117,2,95,51,54,245,195,6,140,19,205,51,248,84,0,
+224,5,6,246,207,7,134,147,96,59,238,28,13,228,86,0,128,24,143,128,
+166,49,2,54,55,49,129,96,219,71,241,153,4,175,222,177,126,99,193,111,
+12,93,220,32,73,2,80,32,95,67,206,37,221,65,30,33,37,65,119,96,
+18,237,31,2,246,3,0,199,79,150,8,32,69,130,68,238,169,0,64,162,
+245,215,0,141,15,32,36,249,118,0,181,126,66,62,72,180,100,111,32,10,
+195,45,225,153,13,228,178,0,246,255,3,96,42,64,107,252,49,0,231,224,
+1,64,114,134,213,64,242,225,101,0,229,26,0,224,41,0,32,91,96,237,
+231,86,4,32,143,131,162,244,111,0,224,237,1,108,78,64,143,32,36,131,
+122,68,137,224,180,19,224,212,0,128,106,247,14,1,2,57,54,50,131,112,
+2,57,50,48,224,120,0,227,82,1,208,48,74,157,83,157,229,18,0,220,
+97,64,46,131,104,2,90,32,85,96,144,131,87,250,175,1,132,235,133,149,
+32,30,191,132,224,167,0,2,55,48,52,77,135,231,170,0,189,87,233,40,
+6,98,66,2,55,48,53,128,15,231,36,0,2,52,51,57,102,190,93,17,
+2,57,53,55,253,16,2,225,77,4,98,168,106,12,97,103,234,44,12,64,
+161,66,122,2,58,57,53,229,133,0,244,198,6,244,204,8,96,254,64,53,
+253,59,3,71,240,253,29,24,224,32,23,224,29,20,224,26,17,224,23,14,
+224,20,11,224,17,8,224,14,5,224,11,2,235,157,1,70,204,253,214,0,
+225,3,4,198,133,69,25,144,79,64,21,131,80,2,95,52,56,179,164,145,
+76,236,0,1,224,9,2,68,114,164,7,2,51,49,51,66,223,2,51,50,
+32,72,41,224,6,3,105,189,64,3,100,165,192,76,32,5,43,69,2,53,
+51,49,160,28,118,254,224,106,18,108,196,192,108,96,88,128,114,224,108,31,
+2,82,32,95,224,108,24,161,51,74,5,128,34,224,110,4,160,103,224,117,
+4,224,106,9,224,63,3,224,113,2,173,9,131,42,192,147,224,40,0,224,
+108,16,224,115,4,128,67,224,61,13,160,106,2,95,49,55,2,54,32,102,
+231,128,0,2,92,51,52,2,38,115,114,2,99,47,77,2,105,99,114,2,
+111,72,115,2,47,84,67,2,77,111,110,2,97,100,46,2,104,115,92,32,
+25,2,44,49,55,2,53,58,53,237,9,2,99,78,73,14,166,244,2,53,
+50,32,224,11,1,59,223,224,11,0,75,188,128,11,35,118,192,10,36,36,
+160,10,34,68,203,115,66,124,67,107,32,18,132,243,250,173,1,224,9,1,
+96,33,2,95,54,53,144,34,104,233,74,213,224,45,14,224,55,2,101,83,
+128,55,224,61,5,182,50,224,51,10,224,146,1,224,51,7,165,2,39,253,
+226,55,3,183,190,193,157,64,50,128,49,224,6,6,192,32,96,13,224,89,
+3,224,32,13,160,26,224,39,3,224,32,12,224,39,3,32,13,129,110,69,
+243,32,176,234,206,1,232,145,16,96,237,51,47,171,42,69,143,90,44,230,
+17,0,238,133,15,2,97,115,115,2,101,114,116,66,46,2,100,101,58,2,
+32,101,120,2,112,101,99,47,71,2,61,34,32,252,159,2,249,142,1,121,
+129,2,50,57,32,40,46,139,158,33,39,69,233,2,79,32,95,120,47,64,
+7,73,64,96,7,32,152,229,140,0,241,179,21,2,103,111,116,160,113,128,
+98,160,93,196,190,73,166,102,193,133,221,32,16,165,211,2,49,50,50,32,
+17,225,77,0,2,53,32,102,224,84,0,2,84,67,69,2,120,112,114,153,
+116,224,25,7,249,16,0,224,26,9,2,75,105,110,203,60,224,26,7,2,
+83,111,114,212,53,73,32,192,165,32,11,69,63,96,11,32,153,133,105,199,
+1,97,137,42,92,2,55,48,49,153,83,79,27,133,161,231,38,1,240,64,
+18,225,54,19,2,77,117,108,2,116,105,112,2,108,121,32,2,100,101,102,
+2,105,110,101,2,100,58,32,160,184,2,51,48,54,96,246,143,132,32,147,
+165,231,2,51,55,50,41,70,95,59,175,59,2,52,51,32,239,59,0,79,
+40,96,22,253,241,0,194,172,221,40,154,215,96,197,101,16,32,51,200,136,
+61,213,118,57,64,24,128,16,226,164,12,233,1,18,233,30,14,246,221,0,
+203,12,233,150,9,216,85,160,164,224,32,2,105,78,83,178,234,191,3,102,
+254,32,6,97,106,234,191,0,224,96,13,2,57,50,54,233,140,4,235,137,
+1,233,205,23,252,218,1,224,176,11,224,204,13,99,248,234,125,10,128,133,
+241,212,6,96,23,76,181,127,89,163,38,164,215,2,53,53,56,195,19,99,
+140,131,138,32,6,117,10,254,67,8,2,99,99,32,226,220,3,32,38,69,
+244,96,87,129,51,129,56,35,13,192,21,2,57,51,54,224,11,2,224,133,
+0,32,11,100,25,132,180,64,6,237,118,4,129,14,82,96,32,40,129,120,
+187,45,107,170,237,8,2,32,68,34,186,2,95,53,54,172,176,2,51,51,
+32,224,6,7,2,58,57,51,234,6,0,36,3,2,52,32,65,130,146,66,
+242,237,236,6,224,114,4,224,101,4,2,54,57,48,224,101,14,32,72,227,
+200,0,224,72,26,2,53,54,48,224,72,17,131,125,245,226,0,224,69,3,
+128,60,41,157,224,60,6,32,53,239,255,1,107,157,64,46,189,135,40,40,
+171,30,235,40,15,192,67,131,210,112,174,235,27,4,32,26,195,185,71,34,
+2,49,48,53,67,188,72,128,193,80,235,76,7,32,29,130,92,32,27,113,
+243,66,74,128,14,111,145,66,96,102,161,197,161,66,119,96,76,235,154,12,
+32,31,202,145,102,169,2,56,56,51,140,229,140,41,37,92,236,41,0,32,
+42,196,190,171,192,235,68,5,119,9,235,178,15,235,213,93,235,115,4,32,
+175,225,186,1,2,57,48,51,213,202,117,22,2,52,56,51,170,74,2,79,
+32,80,64,19,65,207,115,242,2,79,32,66,173,227,244,83,0,64,29,99,
+230,115,52,111,112,97,64,161,96,129,220,96,43,63,251,70,50,70,123,241,
+146,3,2,105,109,105,2,116,105,118,2,101,115,46,227,220,0,32,54,129,
+248,224,38,12,166,251,32,36,197,198,224,195,21,67,3,121,11,224,202,0,
+2,48,55,32,133,143,32,22,96,20,77,242,144,50,96,186,224,48,9,102,
+23,224,48,2,82,115,224,48,19,34,3,224,48,4,64,15,224,48,21,99,
+21,224,48,2,240,197,1,96,48,217,207,96,27,98,133,224,42,1,97,120,
+2,49,57,32,225,120,2,215,137,225,169,10,65,56,131,36,80,173,64,32,
+65,159,2,57,49,56,64,138,101,134,224,10,2,96,128,2,58,57,49,189,
+106,2,57,49,55,32,51,32,31,199,154,79,192,96,5,32,4,97,40,253,
+86,4,225,180,2,2,45,62,34,177,42,32,66,244,77,1,125,184,244,77,
+0,32,66,226,44,0,32,13,130,160,115,246,32,13,162,72,161,46,104,12,
+65,8,226,37,15,96,112,32,34,130,35,224,34,12,2,78,97,116,128,35,
+129,14,226,147,13,2,121,109,98,2,111,108,34,96,38,129,42,224,38,12,
+60,46,2,115,116,114,2,97,105,110,128,81,66,31,226,245,31,233,202,0,
+32,54,129,88,224,38,12,170,12,32,36,184,104,65,51,129,112,32,19,196,
+123,41,67,224,61,1,2,98,117,105,41,122,2,110,34,32,2,64,64,35,
+32,187,64,3,32,42,201,87,119,226,149,224,81,59,108,157,241,161,0,178,
+218,39,238,96,100,77,72,210,141,224,18,8,32,63,129,135,108,169,134,62,
+123,21,224,9,0,168,44,243,228,2,2,57,48,49,224,6,1,138,170,108,
+73,96,81,32,80,197,227,108,234,140,237,2,60,32,64,102,58,214,30,160,
+18,100,150,47,184,2,55,48,57,252,136,1,252,97,4,96,105,232,77,5,
+54,127,2,73,100,101,97,172,120,128,2,90,32,95,224,138,1,2,85,32,
+73,160,214,216,24,32,243,67,240,170,130,82,141,253,14,2,189,237,136,35,
+99,108,249,212,10,64,7,99,74,96,73,234,192,7,148,70,186,204,96,82,
+223,228,129,58,167,129,108,194,173,55,233,79,0,64,82,195,143,96,84,166,
+1,224,87,1,245,251,1,102,11,248,170,1,161,90,213,76,128,115,128,251,
+96,181,142,176,2,95,51,51,132,68,2,54,49,51,80,227,143,214,2,50,
+54,52,33,11,66,11,231,31,16,2,56,57,52,231,31,2,106,56,231,31,
+7,216,107,242,230,194,242,217,9,32,250,204,180,225,37,12,158,245,193,37,
+163,74,232,69,7,136,63,225,43,173,225,18,7,32,229,233,195,0,201,242,
+245,24,13,32,41,131,131,85,69,250,202,2,224,39,6,32,38,131,147,32,
+38,2,52,32,75,192,39,234,21,0,109,215,132,79,228,24,3,113,114,255,
+54,8,129,115,238,25,8,216,217,119,65,39,53,246,20,0,151,84,2,56,
+56,55,113,22,89,162,196,133,128,122,227,156,1,225,253,2,185,34,162,2,
+94,16,246,114,0,195,159,37,135,108,213,158,246,32,72,131,145,234,247,4,
+246,78,14,32,44,234,140,8,125,204,246,80,204,246,75,10,33,0,198,230,
+224,244,26,225,24,207,158,102,225,18,1,228,133,4,2,54,57,57,101,124,
+70,39,130,248,32,33,132,124,237,13,5,248,178,16,99,19,224,80,7,103,
+176,64,120,70,71,32,34,175,235,2,54,57,55,2,32,58,56,190,239,168,
+123,207,85,224,2,3,188,109,225,23,6,186,178,100,75,2,54,50,57,240,
+217,2,64,120,107,243,2,54,56,50,253,15,4,96,145,131,58,167,60,74,
+181,34,43,159,88,64,155,191,38,250,159,1,151,127,231,23,0,136,95,149,
+8,224,25,11,254,140,0,232,162,5,158,121,232,163,4,107,220,68,194,231,
+146,0,99,197,224,13,0,189,16,231,17,3,189,120,229,252,2,239,201,3,
+182,65,178,78,228,134,1,231,230,2,64,47,199,229,200,65,188,238,167,233,
+232,9,2,221,199,126,9,137,173,123,24,228,206,3,32,12,129,58,240,34,
+0,128,34,94,229,251,76,3,2,54,54,57,150,213,80,19,65,241,47,255,
+133,105,97,167,96,11,253,1,5,220,155,226,214,6,133,88,2,53,53,54,
+193,18,32,152,98,210,192,211,224,130,0,159,146,201,45,32,99,224,117,1,
+224,206,5,96,171,224,131,4,253,113,0,105,196,253,250,1,233,72,3,130,
+247,192,130,253,164,2,224,50,1,255,174,0,230,1,5,32,13,234,149,2,
+141,147,241,205,1,241,24,13,32,11,162,237,105,138,43,211,2,56,32,102,
+234,185,0,2,36,102,34,224,141,0,2,89,32,66,160,157,243,142,0,138,
+121,64,50,245,147,20,2,36,120,34,246,198,2,2,49,52,54,225,15,5,
+224,163,24,235,210,1,253,14,1,128,182,224,189,1,32,73,234,226,0,206,
+194,161,229,161,99,250,124,1,184,210,164,98,228,105,1,226,254,2,97,98,
+255,135,2,231,105,6,97,43,226,88,0,227,146,5,68,221,227,145,6,66,
+0,227,131,5,72,27,160,2,47,87,226,100,1,66,113,228,83,3,84,189,
+227,59,5,65,46,64,20,104,25,77,74,64,42,74,237,208,131,32,172,72,
+240,239,154,1,228,10,4,225,77,0,228,97,9,168,41,224,206,6,64,242,
+224,206,6,64,73,224,206,7,228,96,10,224,225,17,128,77,236,105,0,172,
+104,32,183,75,194,2,54,57,53,183,228,2,56,55,50,76,2,247,249,2,
+240,110,1,129,219,224,193,6,185,217,224,174,6,141,178,224,160,4,96,159,
+94,243,104,167,96,11,160,13,224,177,1,128,9,64,174,225,253,3,97,146,
+32,4,2,50,32,79,2,32,35,55,33,50,160,144,230,173,4,224,94,3,
+253,25,1,228,94,4,134,5,229,132,0,195,214,130,118,161,233,224,123,7,
+229,69,11,43,216,2,56,55,54,227,10,2,250,156,3,66,233,32,59,36,
+134,58,122,120,184,96,166,238,2,1,133,37,2,51,48,49,134,172,32,105,
+81,20,160,21,132,163,167,8,245,143,1,79,216,227,1,3,38,218,138,116,
+49,224,64,66,220,121,231,116,1,47,68,32,99,67,227,65,138,254,124,2,
+225,190,2,92,146,39,53,96,135,68,61,96,143,152,142,33,255,96,14,32,
+28,32,96,138,106,255,35,7,198,135,129,90,230,51,11,248,97,1,226,122,
+8,68,217,65,54,64,78,128,144,198,31,200,230,142,184,195,28,231,43,0,
+129,185,230,74,1,224,29,5,230,33,5,160,7,226,63,1,248,109,2,2,
+101,113,34,172,187,230,44,1,224,87,1,225,247,7,230,252,0,228,42,0,
+160,225,230,78,0,151,78,255,106,0,100,243,145,16,97,129,65,18,132,87,
+229,124,4,97,216,96,40,35,112,133,102,197,128,231,96,26,230,57,16,230,
+55,1,200,103,232,121,1,229,97,0,230,70,54,51,211,36,243,226,164,8,
+66,47,139,153,2,90,32,67,193,216,226,20,4,251,198,2,226,8,156,96,
+70,2,56,55,51,231,133,0,117,166,134,39,35,33,168,131,160,21,96,39,
+225,167,4,164,165,225,148,117,65,149,212,2,233,200,7,226,101,8,226,85,
+6,183,177,96,217,147,21,37,71,34,195,39,43,197,35,234,215,3,139,105,
+225,159,0,229,136,0,68,148,175,20,228,65,2,64,139,82,126,201,226,227,
+81,2,107,2,192,57,99,129,68,152,32,241,202,174,137,209,227,20,5,96,
+13,144,5,101,204,128,29,2,55,54,49,233,178,2,2,56,49,54,233,126,
+2,234,62,2,117,26,88,41,165,215,2,95,55,50,245,109,3,2,36,113,
+34,193,203,143,232,108,9,32,36,118,2,2,56,32,75,229,159,3,141,57,
+228,66,3,166,143,2,54,57,56,234,109,1,225,10,3,74,144,224,13,0,
+234,133,1,173,109,224,40,2,179,206,2,56,54,56,97,17,96,132,2,51,
+54,54,238,24,0,224,208,4,2,55,48,55,116,110,253,179,3,113,35,134,
+2,204,41,230,160,0,224,244,8,130,108,32,209,141,232,124,8,227,83,0,
+32,129,32,68,119,220,224,50,1,55,42,2,116,114,111,2,108,46,69,2,
+120,99,101,2,112,116,105,2,111,110,46,2,73,110,116,2,101,114,110,2,
+97,108,46,2,112,97,116,64,9,2,77,97,116,2,99,104,70,2,97,105,
+108,196,176,131,77,193,87,98,10,130,221,2,56,51,48,196,85,206,90,2,
+80,32,35,137,13,32,20,64,41,230,154,0,129,53,32,62,113,235,65,247,
+2,56,54,55,110,164,65,41,110,246,196,123,33,81,86,122,32,47,238,246,
+3,230,197,6,65,99,77,216,67,147,65,94,79,53,114,166,227,111,1,161,
+73,130,194,2,56,54,51,167,226,224,46,4,126,16,219,160,43,108,68,7,
+213,199,192,111,231,83,16,130,251,224,5,3,233,139,0,229,45,1,227,76,
+2,110,42,240,146,12,233,181,5,237,31,2,230,231,4,239,175,7,252,212,
+13,224,75,5,163,184,230,179,0,238,114,5,224,5,3,96,158,236,27,2,
+247,224,2,228,60,1,106,186,238,40,9,32,83,247,240,1,224,114,0,192,
+34,105,217,170,228,230,67,2,241,66,2,166,70,224,17,0,2,83,32,73,
+196,112,224,52,1,207,130,241,142,7,160,119,247,146,0,238,18,0,241,139,
+7,224,143,5,224,190,0,227,193,2,239,142,4,224,56,0,230,0,0,238,
+187,4,225,220,1,240,1,7,228,21,0,225,181,3,249,25,0,202,214,32,
+34,104,92,237,195,0,237,221,1,237,105,2,164,77,76,207,124,70,138,124,
+96,9,230,142,17,43,138,2,49,50,54,203,139,230,138,11,204,145,228,196,
+1,67,13,216,140,2,56,54,54,64,16,227,28,1,197,247,226,136,2,227,
+9,4,236,114,6,227,61,3,106,214,241,143,5,108,186,224,128,20,2,55,
+53,53,224,128,5,225,73,1,226,106,4,225,101,1,102,217,174,164,128,144,
+224,82,5,90,25,86,135,160,84,224,91,0,102,196,192,40,224,108,3,226,
+237,2,231,79,5,64,51,51,182,239,153,11,219,183,197,174,36,220,221,110,
+101,26,131,217,32,152,32,24,217,186,182,25,71,145,124,14,97,235,250,162,
+3,128,202,64,115,224,88,1,226,226,0,224,237,17,98,62,224,237,24,32,
+110,244,151,0,209,184,233,139,23,32,51,200,109,224,162,1,225,235,1,33,
+56,230,210,6,249,69,13,224,13,1,204,252,164,7,244,90,1,224,69,2,
+101,197,226,17,2,228,237,2,64,122,2,39,32,85,32,47,45,12,224,176,
+1,2,92,51,52,2,38,115,114,2,99,47,77,2,105,99,114,2,111,72,
+115,2,47,68,101,2,115,117,103,2,97,114,46,2,104,115,92,32,25,2,
+44,51,55,2,56,58,49,2,48,34,32,229,105,5,243,18,5,229,102,5,
+227,241,2,224,2,9,224,71,1,228,175,3,230,6,6,230,3,4,229,183,
+10,128,201,244,52,0,132,167,224,85,9,133,3,229,239,5,224,96,1,224,
+102,8,247,96,14,230,115,17,247,112,15,227,126,8,224,52,26,224,195,3,
+224,31,11,130,5,225,95,17,246,146,13,224,23,1,246,201,2,233,150,0,
+194,68,224,8,10,166,105,224,11,0,214,219,246,235,0,105,146,195,41,128,
+83,228,135,4,226,239,3,240,159,6,166,54,209,190,224,76,0,226,207,12,
+106,109,99,112,2,56,51,51,225,172,5,229,108,5,231,162,4,138,147,198,
+83,142,157,202,36,232,44,8,245,44,3,110,255,245,44,2,105,65,65,200,
+32,36,199,87,183,3,182,251,228,98,2,225,243,11,236,77,1,242,36,0,
+114,201,224,144,5,165,59,147,18,196,184,196,154,229,114,1,235,127,0,2,
+51,56,51,238,133,0,64,163,236,180,4,252,61,4,152,79,113,195,224,141,
+4,130,81,2,95,56,52,232,14,0,250,33,16,226,206,7,224,49,5,226,
+202,20,226,197,17,226,161,3,226,32,0,97,33,128,220,32,213,253,7,6,
+108,34,128,200,116,153,69,255,224,186,6,226,225,36,117,8,226,213,3,226,
+211,0,226,95,18,173,208,247,147,4,194,51,242,32,4,129,148,210,207,207,
+42,226,66,2,240,26,0,196,165,226,72,14,193,109,243,252,6,248,102,2,
+194,3,83,210,181,247,226,83,5,228,91,3,229,190,3,176,104,228,78,3,
+233,239,3,224,11,12,228,23,55,230,52,7,239,64,0,254,171,1,228,228,
+2,227,163,10,224,182,0,225,197,1,2,54,49,50,224,60,3,226,5,8,
+241,195,2,224,101,0,73,189,39,183,67,1,233,239,0,229,81,11,230,7,
+4,224,164,6,236,105,1,140,252,228,111,2,74,151,79,217,242,237,6,194,
+46,246,231,1,96,225,72,10,129,171,228,33,1,213,139,32,160,226,149,1,
+249,211,0,224,135,1,245,240,0,2,56,52,56,240,124,2,249,234,1,2,
+56,52,57,234,47,0,96,16,2,50,51,56,236,2,7,224,45,0,66,185,
+93,129,65,30,2,53,48,32,147,252,2,56,53,49,234,137,0,99,195,137,
+71,128,178,96,16,192,100,229,95,10,163,31,66,131,228,202,0,253,22,3,
+233,1,3,99,94,43,85,235,224,1,228,12,2,2,83,32,83,231,137,8,
+228,234,10,100,22,183,182,164,245,224,38,5,155,92,160,37,224,36,2,252,
+225,3,133,171,224,227,0,2,90,32,89,237,108,0,231,223,11,129,160,96,
+59,235,31,3,233,247,0,237,168,1,239,19,2,164,6,237,163,5,231,198,
+5,230,91,15,226,16,7,229,117,2,238,186,20,106,211,236,38,2,237,216,
+2,230,144,3,228,82,18,235,14,1,146,27,233,69,1,153,62,238,76,1,
+244,197,3,228,227,0,233,187,2,226,250,1,255,180,4,235,3,21,224,63,
+0,206,111,228,72,3,174,75,160,214,173,78,114,34,133,244,150,206,2,54,
+55,54,128,39,251,198,8,176,220,34,31,32,222,242,40,0,248,110,4,89,
+138,248,111,2,100,63,216,117,32,24,96,6,35,8,32,63,209,232,128,177,
+43,116,88,134,252,42,5,229,208,5,224,21,20,224,227,5,224,46,8,160,
+35,195,203,149,9,166,136,215,210,128,84,228,226,3,99,127,228,12,0,243,
+194,7,238,200,4,187,124,250,225,1,143,148,2,52,50,53,119,18,96,218,
+254,127,2,225,252,11,229,131,0,236,5,0,240,153,2,240,214,6,225,252,
+5,232,54,0,224,66,0,224,94,1,231,206,2,253,126,1,69,118,68,183,
+2,50,56,52,248,134,3,240,44,2,194,43,96,26,32,93,232,151,0,249,
+244,1,32,208,68,250,226,252,1,2,58,56,53,243,168,4,245,217,5,224,
+5,2,202,177,231,39,8,246,31,0,250,107,10,224,25,0,160,90,225,40,
+1,192,18,232,75,0,32,77,2,56,53,52,246,234,1,128,6,136,40,130,
+148,133,190,2,54,32,67,128,98,111,58,68,210,224,14,5,2,95,54,51,
+162,202,160,0,247,220,13,225,205,0,226,56,1,164,41,225,8,1,150,166,
+2,56,53,55,228,42,7,247,135,7,2,110,34,32,224,22,11,2,116,116,
+34,149,160,67,68,124,18,239,240,0,134,37,220,163,88,22,33,41,164,159,
+92,165,92,31,161,232,188,144,225,186,3,32,81,208,89,32,158,34,173,193,
+178,128,56,2,51,49,50,128,143,2,53,51,49,128,45,208,110,165,185,48,
+192,176,75,241,130,0,128,239,35,99,99,247,228,145,0,231,242,0,235,188,
+3,162,55,208,169,149,49,239,21,17,232,108,2,238,191,1,235,70,10,230,
+39,1,233,40,6,238,247,14,224,98,12,229,30,0,183,71,163,131,229,87,
+4,234,109,1,248,253,5,192,8,224,17,9,96,8,194,38,252,57,1,252,
+30,5,252,31,1,224,94,1,237,75,6,224,90,1,224,8,0,2,95,55,
+49,64,75,97,93,2,54,53,50,241,125,12,2,61,61,34,233,105,0,250,
+220,4,237,90,1,231,1,2,228,93,4,224,16,16,123,217,101,249,35,98,
+64,215,73,210,2,49,48,57,255,60,0,2,35,50,32,254,216,1,240,58,
+4,241,109,25,2,69,110,99,2,111,100,101,2,68,97,116,2,97,46,104,
+145,112,2,49,51,53,2,58,49,51,241,112,2,225,254,6,228,171,0,237,
+117,14,224,45,28,224,22,0,193,235,249,171,4,234,252,10,234,90,5,170,
+50,65,21,225,148,16,53,92,71,5,233,242,0,225,143,9,245,34,5,226,
+161,3,226,123,4,237,113,1,234,97,3,234,227,4,165,111,197,189,35,114,
+147,173,57,100,32,11,147,133,35,202,68,18,88,207,128,3,2,80,32,90,
+32,1,196,91,229,237,9,136,225,2,95,52,57,106,59,66,216,2,90,32,
+66,133,71,134,178,160,14,230,108,6,234,121,4,202,75,65,159,2,75,51,
+32,192,24,224,55,11,32,15,36,218,171,108,32,126,136,129,225,159,5,66,
+101,32,26,200,92,100,164,156,159,196,20,233,144,3,242,187,7,202,166,65,
+206,248,188,9,2,85,32,73,233,254,2,234,225,24,246,102,16,169,211,214,
+2,49,183,32,23,65,124,2,51,50,32,59,152,137,46,32,197,76,49,97,
+150,32,10,133,245,241,103,1,233,116,4,96,162,97,36,224,184,15,75,198,
+181,241,235,0,0,224,149,0,96,57,172,16,192,36,224,37,9,96,187,221,
+115,237,121,4,2,67,32,79,235,214,2,246,227,3,32,184,134,92,230,174,
+7,2,50,48,52,64,4,2,49,32,102,227,247,0,2,99,111,110,2,65,
+114,105,2,116,121,34,225,24,2,2,52,53,32,226,54,4,96,132,32,84,
+198,131,32,33,110,66,77,30,32,22,134,69,232,125,2,231,126,2,96,44,
+127,221,235,187,0,199,13,2,95,49,54,64,198,129,37,92,68,96,99,214,
+205,230,231,2,96,38,207,160,224,95,0,96,64,192,53,214,207,239,8,0,
+32,5,64,191,175,93,2,49,49,50,237,205,0,176,13,119,231,2,53,55,
+57,192,165,237,239,2,158,167,96,87,190,104,252,44,1,129,226,227,33,3,
+202,102,32,7,64,83,99,8,68,80,32,55,2,75,32,89,231,20,0,247,
+37,1,226,62,9,224,25,12,57,243,241,126,0,226,13,0,96,20,227,172,
+1,79,172,137,59,224,37,22,230,242,3,242,69,2,226,139,4,224,48,4,
+2,90,32,67,224,88,10,224,38,10,175,137,2,51,57,32,229,6,5,232,
+145,1,250,96,12,244,15,9,244,14,13,130,247,238,119,3,224,49,13,236,
+159,3,241,161,13,32,42,132,44,199,16,225,64,18,243,210,2,225,63,3,
+229,18,1,164,41,132,239,133,137,228,32,15,99,217,224,25,12,98,188,129,
+38,224,25,6,97,76,192,25,251,123,5,173,64,224,184,14,96,30,224,185,
+11,253,212,3,251,183,0,225,133,9,136,59,225,133,6,237,115,6,161,72,
+224,88,5,194,6,225,32,2,224,164,16,245,249,3,224,163,13,225,21,13,
+96,48,225,21,12,252,144,2,224,111,10,128,173,225,19,25,224,58,10,100,
+175,224,170,21,224,59,16,156,73,224,59,20,227,249,14,226,23,16,203,217,
+225,1,9,166,134,224,138,14,227,183,8,128,138,2,49,51,50,225,1,24,
+64,114,224,58,10,2,56,51,53,68,79,224,202,2,228,141,17,224,65,15,
+255,138,5,226,234,9,226,233,21,228,226,15,225,212,25,227,35,14,229,29,
+2,232,243,0,100,214,2,58,56,51,136,18,67,232,32,19,116,188,67,3,
+32,24,136,32,2,102,47,61,40,45,64,18,64,12,32,100,32,12,135,44,
+70,125,72,80,230,6,1,196,209,246,71,15,196,167,135,94,224,7,1,117,
+120,78,99,97,123,96,149,135,120,64,95,72,68,116,58,192,183,136,6,64,
+6,64,132,32,1,157,223,226,110,11,206,193,228,160,17,224,25,9,142,158,
+232,246,15,103,47,39,77,32,63,32,5,32,143,136,150,107,106,224,19,6,
+167,24,126,29,176,108,168,171,2,55,49,48,96,207,246,167,2,148,230,240,
+13,1,255,41,3,32,7,79,187,214,158,33,7,39,208,2,49,53,51,2,
+32,64,79,40,191,2,50,48,32,169,42,2,95,49,50,64,24,247,92,1,
+73,57,32,123,2,53,54,49,107,175,174,10,32,5,2,49,32,35,244,97,
+3,233,153,9,97,3,73,154,160,24,128,141,108,119,188,20,224,6,5,239,
+20,3,229,12,4,213,221,183,123,225,109,9,232,255,0,234,25,10,233,220,
+0,160,100,128,65,2,95,55,52,92,155,2,52,55,52,34,31,40,152,234,
+98,2,128,52,129,99,105,154,129,99,252,198,5,105,174,229,96,5,224,53,
+0,65,166,241,40,7,2,102,34,32,205,78,64,34,2,53,53,52,221,30,
+96,49,97,246,224,50,14,224,127,8,138,237,44,244,109,150,224,150,1,176,
+233,229,21,21,233,93,9,242,159,2,231,149,6,161,118,32,105,2,55,32,
+95,130,143,32,6,33,44,204,12,129,221,236,197,2,179,233,232,215,11,130,
+205,224,32,18,132,238,236,158,10,192,24,189,191,211,62,2,55,53,54,236,
+57,21,206,186,96,193,65,96,2,49,52,55,255,85,2,224,240,5,64,208,
+85,237,165,31,226,77,15,32,32,195,25,128,92,224,154,2,2,95,56,55,
+66,218,225,33,5,225,95,1,226,178,33,224,154,0,196,148,237,174,13,254,
+57,2,211,234,212,156,252,138,12,252,137,7,224,52,21,255,7,2,246,215,
+4,160,10,224,52,13,225,16,0,224,41,2,248,217,5,64,42,236,30,4,
+226,245,5,113,80,2,76,105,115,2,116,95,84,2,121,112,101,2,46,43,
+43,241,79,0,250,123,2,194,243,227,202,3,240,103,11,195,98,228,101,8,
+33,199,251,218,0,64,23,36,241,98,222,238,237,7,38,33,141,57,37,21,
+72,15,32,77,128,32,32,52,77,33,32,22,56,85,128,17,32,43,141,13,
+2,75,32,66,238,79,1,248,60,0,229,117,7,224,242,1,2,105,109,112,
+2,111,115,115,2,105,98,108,2,101,58,32,160,237,205,150,102,166,128,61,
+69,149,2,56,51,48,128,78,98,99,253,159,0,224,94,11,37,212,64,142,
+241,196,1,64,64,251,200,1,96,174,141,132,224,218,4,64,95,175,76,113,
+164,189,11,102,18,35,25,32,91,226,75,2,224,115,10,78,158,160,98,239,
+145,4,230,84,3,224,56,12,86,63,230,128,14,193,100,64,121,32,181,140,
+83,65,30,97,220,161,228,97,207,226,75,11,2,82,97,116,2,105,111,95,
+98,76,2,95,109,107,96,13,2,110,97,108,229,141,1,99,207,32,5,171,
+34,224,15,0,66,29,2,58,56,50,136,216,97,105,32,13,136,205,97,69,
+32,13,136,206,72,60,129,172,32,15,122,101,2,53,51,57,64,9,39,83,
+148,109,36,125,72,115,2,50,51,32,176,64,36,134,128,36,224,37,5,2,
+50,52,32,224,37,0,224,215,24,2,73,110,116,2,101,103,101,2,114,46,
+95,2,105,110,116,67,47,2,84,111,73,128,17,224,218,1,102,189,186,73,
+48,89,243,199,5,32,105,166,240,224,105,30,161,67,32,110,224,106,10,229,
+103,5,232,37,0,130,104,65,81,97,54,40,247,66,11,40,142,2,95,54,
+50,160,34,164,50,32,37,137,173,193,106,137,153,32,165,97,31,120,74,72,
+118,2,56,50,49,64,20,80,174,2,54,32,35,66,18,140,14,138,239,224,
+29,15,32,79,131,199,2,117,113,117,2,111,116,32,32,14,131,170,2,73,
+32,58,64,50,210,206,73,5,225,223,1,76,135,113,52,2,80,32,35,131,
+23,64,20,130,2,252,190,0,117,95,249,231,1,133,182,246,254,1,38,18,
+64,152,136,248,142,22,2,56,48,51,160,51,50,158,132,147,98,248,219,242,
+232,230,0,251,195,13,32,217,32,81,96,49,33,109,131,36,32,150,130,139,
+70,243,178,70,136,30,64,6,139,12,64,42,145,170,235,108,3,244,117,1,
+232,5,2,64,185,248,14,1,101,222,32,4,165,62,221,118,192,7,245,245,
+1,225,16,1,160,19,32,10,253,183,2,229,191,10,157,218,91,22,2,49,
+51,32,35,11,42,103,227,150,0,74,179,32,59,175,47,83,117,201,160,32,
+203,171,216,221,6,2,95,55,50,247,170,3,2,36,118,34,129,244,64,67,
+243,44,3,96,252,252,209,5,151,31,198,204,241,147,2,150,56,252,236,3,
+193,185,251,82,4,65,146,160,47,222,218,64,208,2,55,50,50,253,121,5,
+96,29,65,49,234,104,0,128,25,115,193,64,248,243,38,0,2,56,48,52,
+160,42,235,253,0,225,165,1,255,152,8,247,248,3,231,239,7,224,187,0,
+152,98,250,59,1,97,151,2,56,49,50,227,233,7,2,66,111,111,2,108,
+46,111,2,116,104,101,2,114,119,105,2,115,101,34,232,192,0,245,123,3,
+247,226,4,97,22,2,55,51,57,164,216,224,116,2,64,23,175,200,128,23,
+33,141,212,132,243,23,2,175,236,32,28,131,144,128,230,251,68,0,227,82,
+0,224,113,0,227,120,0,243,96,0,230,226,0,251,98,6,253,171,2,154,
+153,232,167,4,239,5,2,249,136,6,251,54,2,254,237,14,128,146,253,102,
+0,228,4,2,238,175,0,224,27,1,100,1,235,60,12,128,30,135,31,130,
+232,196,36,193,60,38,40,68,248,236,153,1,228,52,8,225,147,1,226,136,
+1,159,228,128,41,68,44,160,124,227,174,1,2,95,56,32,163,81,133,123,
+232,19,0,227,213,1,240,112,0,234,137,1,163,67,157,10,250,80,2,98,
+246,253,98,1,227,57,0,244,163,3,96,233,107,56,32,233,235,131,2,204,
+116,228,52,0,226,228,11,225,88,14,252,251,1,224,16,1,61,220,67,119,
+96,146,227,55,9,235,86,0,2,95,52,49,39,129,246,158,0,225,142,2,
+224,167,9,224,22,8,241,149,0,226,122,0,255,253,2,228,249,2,68,5,
+80,114,87,161,252,73,8,124,48,2,48,58,48,99,99,201,48,96,210,224,
+46,25,137,244,169,27,228,249,6,2,109,34,32,233,158,1,2,56,48,50,
+64,229,175,65,223,145,38,99,2,83,32,73,230,98,5,64,186,65,52,225,
+12,0,160,48,2,54,56,54,198,189,64,59,2,51,56,56,255,205,1,69,
+199,157,75,224,131,6,2,112,34,32,224,159,1,2,54,49,56,66,104,187,
+221,66,112,102,132,34,231,75,102,98,218,32,22,135,119,198,130,2,80,32,
+67,226,210,0,131,104,32,155,237,94,5,2,51,55,55,226,186,1,236,138,
+1,223,189,64,216,32,51,239,242,2,32,35,66,183,130,89,145,29,247,100,
+1,242,90,1,159,251,130,44,226,216,0,64,122,192,72,203,24,102,11,198,
+177,229,231,2,128,120,198,231,101,202,192,37,227,102,1,32,24,73,106,198,
+220,250,225,1,2,58,56,48,200,116,32,173,250,49,7,231,90,2,153,108,
+230,203,3,194,232,228,175,0,238,110,5,225,214,1,166,247,230,79,4,252,
+110,11,225,86,3,252,150,13,133,67,252,150,17,251,221,3,252,118,12,192,
+64,252,156,1,224,116,1,244,238,9,242,9,1,225,189,1,119,126,254,246,
+0,255,22,2,230,163,3,224,181,5,200,81,230,204,10,224,40,5,235,30,
+0,224,186,11,224,28,2,132,228,220,70,66,240,228,16,1,133,140,32,175,
+165,143,2,53,49,52,236,231,0,92,144,242,112,0,225,43,3,253,136,3,
+232,153,2,241,85,45,129,204,225,19,1,241,118,16,243,121,13,240,102,4,
+229,206,2,232,110,9,150,41,128,254,224,198,1,224,16,0,253,222,29,225,
+191,26,225,23,0,225,190,21,182,172,225,189,12,224,27,2,64,210,240,202,
+4,206,178,197,1,161,206,226,106,10,128,224,246,166,1,160,55,255,140,0,
+32,28,2,82,32,95,224,219,2,240,20,4,240,17,19,2,112,97,116,2,
+86,97,114,2,115,32,34,130,40,112,106,102,32,160,225,78,110,2,50,54,
+56,68,224,45,25,64,5,153,194,98,219,96,127,36,72,238,171,1,241,114,
+2,104,85,239,120,4,2,57,53,32,239,120,0,119,242,151,39,64,65,204,
+83,2,75,32,83,144,143,128,115,2,52,55,57,204,59,128,17,192,93,153,
+46,111,202,200,221,224,31,11,80,35,97,116,224,29,5,138,10,225,4,1,
+2,91,93,34,100,224,224,30,14,2,40,41,34,209,191,108,3,96,177,140,
+227,76,23,2,52,53,55,101,159,32,228,32,23,255,129,0,139,152,131,140,
+71,105,97,156,235,150,1,32,42,204,50,109,246,97,9,35,192,32,23,202,
+188,173,166,2,80,32,85,35,242,42,198,2,55,54,54,216,125,2,55,54,
+55,2,32,64,89,230,95,0,237,101,1,100,29,224,7,2,64,211,196,135,
+226,27,1,2,56,48,49,144,64,96,202,139,15,69,90,50,172,162,68,164,
+101,164,106,105,111,131,47,142,57,165,138,98,0,249,61,5,134,203,236,241,
+1,197,212,64,46,137,12,153,220,2,95,55,55,210,97,160,215,142,185,64,
+216,136,159,70,228,235,113,0,224,141,3,192,36,167,195,237,113,0,166,165,
+167,55,227,42,0,160,254,120,215,130,124,227,39,1,2,95,55,57,100,181,
+146,173,210,229,33,31,128,42,33,28,136,70,132,242,236,35,0,231,175,3,
+2,55,57,49,231,152,1,167,251,231,25,0,199,254,236,51,13,236,14,6,
+224,19,2,165,146,224,16,13,202,242,234,47,0,225,225,0,255,154,1,96,
+161,224,162,1,169,76,237,149,1,230,148,1,224,175,4,171,114,230,179,3,
+228,253,4,231,244,5,134,46,118,237,35,230,80,44,237,189,7,132,194,224,
+252,0,200,56,224,138,2,240,221,4,203,74,233,41,3,232,65,2,235,160,
+4,104,150,128,5,128,154,138,212,99,196,209,195,229,195,0,224,102,1,192,
+200,224,73,8,129,21,132,7,101,193,32,71,89,172,224,71,3,2,95,49,
+54,198,170,130,191,193,255,227,138,13,246,204,2,195,149,161,201,225,186,6,
+129,173,254,138,3,81,5,224,199,2,160,45,83,93,115,193,164,172,224,159,
+0,251,46,8,253,64,0,32,178,98,225,135,58,96,114,224,54,1,32,6,
+35,122,251,91,4,165,213,192,224,194,222,162,71,93,155,36,238,251,162,13,
+240,11,1,32,41,253,104,4,163,184,196,146,224,20,2,162,215,163,108,139,
+156,227,210,0,229,54,0,233,160,0,189,173,200,167,167,7,96,81,246,162,
+1,122,178,171,157,128,25,240,226,1,44,103,138,159,2,58,55,57,234,255,
+2,224,109,5,226,39,1,243,101,1,229,72,3,32,59,179,155,32,233,78,
+6,87,38,68,196,96,249,129,53,100,210,32,40,181,185,70,15,70,33,32,
+47,114,69,71,11,32,29,134,69,253,72,3,254,157,3,236,102,3,163,209,
+132,179,32,17,32,60,134,106,132,114,228,108,2,193,43,195,219,195,107,97,
+52,164,185,229,176,0,226,128,5,197,148,128,165,32,98,198,162,101,60,188,
+12,2,55,55,55,225,120,1,37,164,247,248,1,98,43,77,113,34,39,39,
+188,86,100,197,107,32,75,184,222,77,206,70,231,96,36,64,16,158,111,44,
+54,32,89,155,109,2,56,48,32,64,31,173,193,65,58,79,63,32,5,104,
+82,103,61,97,102,225,129,2,192,177,64,34,64,84,2,55,56,55,2,32,
+58,55,64,19,167,165,118,153,2,51,48,49,128,96,33,119,32,29,129,155,
+137,105,193,253,237,96,1,139,77,233,255,3,228,205,5,32,70,128,219,192,
+32,237,221,2,160,26,231,26,3,160,19,216,171,65,90,122,27,227,66,11,
+128,161,224,44,7,131,167,192,27,224,28,7,167,85,224,28,13,132,35,192,
+28,252,223,0,181,239,228,105,4,71,165,228,31,0,224,158,6,232,72,0,
+33,60,226,186,1,163,145,103,228,232,127,5,230,35,2,203,216,224,30,3,
+101,177,142,95,118,8,225,63,0,2,83,32,66,238,96,4,230,255,2,225,
+82,2,64,56,245,56,4,224,56,1,231,95,5,228,102,2,242,76,1,230,
+126,3,228,56,2,128,25,106,123,230,210,1,228,81,2,228,98,10,226,8,
+0,197,113,241,84,8,2,46,47,108,2,105,98,47,84,248,2,47,73,110,
+2,116,77,97,2,112,46,104,2,115,92,51,49,104,2,54,53,58,2,49,
+34,32,224,59,1,33,87,131,213,209,6,99,27,65,126,97,185,130,197,2,
+55,56,51,73,184,99,20,247,137,6,96,19,203,158,32,33,234,74,2,128,
+78,223,134,243,98,5,231,207,3,83,209,112,209,238,36,2,199,30,237,210,
+2,151,181,67,179,222,35,225,236,2,240,56,2,128,42,32,79,197,133,242,
+12,3,241,67,2,32,72,34,193,197,196,192,7,167,212,229,193,3,226,52,
+0,141,128,32,55,143,219,196,187,163,63,64,149,33,0,164,99,2,55,55,
+51,65,55,100,87,64,26,128,19,2,54,32,58,96,19,193,34,64,37,160,
+212,127,195,68,32,32,48,64,96,128,48,34,18,100,101,64,30,96,52,165,
+99,233,60,5,224,225,3,238,97,2,225,12,0,196,39,99,125,64,86,130,
+87,224,46,5,131,192,193,104,140,152,139,57,162,165,148,37,244,49,4,128,
+182,2,55,55,53,128,220,64,10,224,5,6,226,191,4,192,120,233,142,9,
+245,239,5,224,17,13,160,153,227,106,4,170,35,242,38,1,233,112,2,227,
+165,3,207,61,224,214,2,232,61,0,224,61,45,232,194,0,224,61,23,241,
+232,0,224,61,3,233,45,0,225,4,1,229,204,0,97,126,65,83,216,95,
+239,229,1,251,123,1,224,31,3,235,235,2,228,86,2,96,40,224,39,5,
+224,40,8,227,102,4,102,247,224,46,4,195,6,195,28,66,59,74,143,197,
+150,34,151,134,209,118,46,32,13,197,162,234,118,2,224,10,6,224,109,1,
+232,4,0,32,55,196,130,233,182,2,64,27,32,25,132,113,60,203,99,42,
+156,203,99,184,245,83,0,128,5,32,152,103,171,111,230,50,112,111,232,32,
+41,231,210,0,224,41,0,96,196,117,219,80,172,254,15,9,69,44,2,33,
+34,32,170,152,32,66,255,148,0,181,192,170,224,241,121,0,128,127,225,220,
+1,160,31,203,186,226,230,7,224,13,15,226,222,0,225,205,9,242,14,18,
+226,208,10,249,226,3,226,190,22,205,156,226,165,19,225,47,0,224,10,4,
+224,11,15,226,49,20,2,58,55,54,132,217,187,10,234,245,3,173,145,228,
+133,5,168,84,209,75,2,50,56,55,167,34,172,92,224,254,10,250,38,2,
+237,80,11,237,173,5,96,16,98,133,236,233,3,32,7,127,152,64,12,32,
+178,133,122,2,90,32,85,66,13,65,218,194,170,128,16,194,243,132,225,63,
+251,240,160,6,224,198,0,176,206,101,57,229,83,0,153,115,107,237,165,82,
+152,79,104,190,248,157,2,231,150,5,108,38,202,58,106,224,252,155,2,249,
+221,5,141,21,32,152,135,167,137,144,41,102,98,155,237,91,25,147,241,32,
+230,210,102,160,211,160,239,2,54,52,48,236,180,0,160,164,130,8,148,96,
+96,101,96,125,97,109,128,76,236,124,3,202,53,71,149,75,244,64,48,244,
+61,9,51,202,2,49,50,48,243,203,1,2,50,49,32,48,1,230,93,0,
+86,110,32,121,224,198,12,165,166,32,192,132,73,193,18,55,213,42,119,226,
+78,7,64,152,99,226,228,26,5,2,33,33,58,2,32,101,109,2,112,116,
+121,250,129,0,135,54,226,128,11,239,203,17,147,207,224,88,8,2,60,48,
+34,163,27,132,224,136,188,236,62,4,128,11,105,74,32,38,211,61,105,81,
+224,207,1,174,169,255,79,8,248,33,12,224,40,25,182,234,246,179,25,164,
+3,198,117,201,140,249,49,6,249,9,4,249,47,22,131,73,2,53,52,32,
+246,138,2,252,144,0,235,50,0,224,104,9,153,220,224,66,3,249,160,19,
+201,3,249,160,5,225,21,21,225,61,31,250,101,9,248,158,89,96,242,68,
+67,99,135,32,11,2,53,56,57,117,115,2,57,32,95,2,55,49,56,141,
+143,47,33,245,151,3,183,249,233,223,6,67,203,2,53,53,52,160,65,227,
+164,0,2,55,53,56,220,162,191,230,164,78,184,21,248,143,13,244,40,2,
+192,203,242,165,0,248,156,4,224,49,0,236,4,4,160,41,226,91,0,107,
+140,227,184,1,178,79,169,78,128,37,132,123,2,52,55,52,221,222,2,52,
+55,53,184,148,78,156,236,185,0,2,53,57,32,72,54,234,6,0,237,176,
+3,225,178,16,231,55,3,226,79,5,225,137,1,249,54,2,129,65,225,32,
+1,226,108,2,219,36,35,209,136,164,119,149,64,180,134,87,236,38,1,160,
+22,119,172,96,181,151,60,125,171,70,28,2,55,49,51,200,74,96,222,113,
+251,172,231,253,188,0,102,230,64,123,64,140,205,106,33,4,34,170,32,84,
+134,227,163,53,32,149,97,100,2,50,53,32,228,201,11,152,228,32,52,135,
+10,37,180,2,53,32,58,96,53,224,175,1,131,138,128,176,201,220,128,24,
+98,81,128,24,133,145,34,81,2,54,32,85,33,219,225,103,5,64,105,224,
+19,7,64,84,224,19,6,70,22,250,60,1,160,19,64,59,216,62,253,182,
+5,162,190,153,166,156,154,229,145,5,2,103,101,116,2,83,76,111,2,99,
+32,69,2,85,86,97,2,114,34,32,252,195,0,70,47,107,80,226,255,3,
+121,36,160,81,96,4,230,146,1,224,147,7,99,128,224,147,6,97,11,96,
+131,224,84,3,64,18,224,86,0,192,18,224,19,2,2,51,55,55,236,122,
+0,229,220,10,224,119,7,114,2,224,119,6,64,166,79,196,224,80,3,218,
+105,224,125,14,224,17,6,224,101,7,65,93,224,101,7,64,42,224,76,10,
+186,91,224,97,6,224,224,13,224,225,7,64,204,224,18,6,129,87,224,18,
+4,65,86,224,140,7,66,38,224,140,12,67,192,225,216,2,129,199,129,9,
+224,142,7,226,62,1,234,247,0,224,119,4,101,62,224,119,5,64,58,224,
+54,1,225,228,14,128,115,224,244,0,225,128,11,226,246,8,224,245,9,144,
+73,224,125,4,132,76,171,144,224,132,4,206,127,224,107,11,225,58,7,225,
+57,15,225,173,9,35,211,181,115,131,211,225,91,6,41,207,99,52,224,73,
+6,32,53,213,152,96,53,225,23,5,2,53,48,32,192,37,177,70,196,47,
+227,144,27,255,176,0,32,62,133,80,228,110,13,129,60,231,235,8,225,10,
+6,66,126,226,190,13,227,178,21,225,91,3,230,77,8,228,168,7,226,49,
+3,160,55,227,146,20,226,85,4,64,232,66,157,192,232,69,246,224,59,6,
+224,12,11,226,129,3,32,64,182,196,224,64,7,161,234,224,139,7,227,183,
+7,32,64,198,25,225,207,4,224,31,2,198,43,96,33,143,84,2,51,52,
+55,217,164,96,46,128,40,134,59,96,38,76,48,224,74,7,224,90,10,198,
+84,108,139,34,88,32,215,151,130,2,52,50,32,64,31,162,160,2,54,52,
+49,64,4,2,50,32,79,2,32,35,55,32,101,99,36,32,30,162,137,224,
+30,4,33,79,192,30,199,169,246,131,0,202,135,217,181,233,117,10,235,68,
+2,254,165,1,224,21,7,239,249,6,242,233,1,239,16,0,243,41,61,253,
+102,9,160,141,253,67,19,232,83,0,164,247,253,173,12,136,103,242,252,8,
+72,81,103,164,246,241,5,183,17,32,50,32,30,2,51,32,79,64,37,33,
+186,233,28,0,253,64,4,32,2,160,91,239,71,1,211,46,96,62,232,233,
+3,225,131,12,236,60,0,169,153,141,187,170,223,224,60,2,193,212,128,85,
+128,20,128,72,224,77,1,2,95,53,57,66,91,182,134,96,89,224,75,1,
+160,104,224,21,6,96,50,154,178,73,176,135,106,32,99,247,182,3,2,36,
+104,34,250,215,0,64,36,128,50,224,49,20,2,118,115,34,225,47,0,218,
+7,2,51,55,32,224,13,1,139,4,138,174,32,26,144,106,96,23,139,234,
+97,128,251,83,3,237,242,15,79,195,2,51,57,32,132,194,253,177,0,192,
+25,162,23,130,98,35,37,234,186,1,137,243,134,109,243,245,3,2,58,55,
+51,202,199,128,34,234,21,0,64,164,123,35,32,112,112,240,155,125,64,214,
+120,122,234,39,93,208,147,2,95,55,48,33,246,2,51,55,52,198,244,41,
+172,177,130,72,59,141,24,157,135,124,160,108,98,248,60,0,128,194,234,13,
+40,192,53,224,96,3,160,20,224,81,1,224,28,4,152,213,224,28,1,234,
+25,54,224,228,1,224,130,12,2,50,55,32,70,22,224,169,0,225,44,0,
+2,53,49,52,146,93,44,216,225,52,1,134,172,192,155,234,57,36,225,9,
+6,108,241,224,137,1,206,152,225,30,11,225,31,22,234,88,71,251,16,1,
+224,106,6,224,134,4,2,52,57,57,129,89,219,218,97,75,32,43,231,212,
+1,2,83,32,73,179,215,143,25,239,232,4,32,41,137,210,192,55,236,111,
+1,234,138,32,224,57,4,225,222,5,128,25,189,214,226,103,12,226,1,2,
+32,11,252,131,0,234,156,51,39,161,226,107,0,192,88,179,47,224,122,15,
+225,218,22,234,192,13,226,43,17,32,119,253,105,1,36,105,136,156,225,26,
+6,133,126,40,84,96,34,136,150,234,69,52,226,208,39,228,12,33,224,28,
+7,234,115,32,160,49,225,241,18,234,124,2,226,129,5,33,19,181,95,36,
+24,225,56,11,224,146,2,226,104,3,32,55,137,144,224,55,6,193,213,226,
+15,2,224,85,15,74,4,222,126,64,83,225,187,9,64,67,96,49,225,193,
+2,137,200,224,40,11,135,176,227,12,3,32,46,134,209,227,46,11,139,70,
+128,138,2,58,55,50,221,185,32,15,32,13,221,181,190,252,122,59,242,208,
+1,69,56,129,63,32,42,216,87,32,87,81,110,86,85,2,50,56,52,255,
+60,5,151,51,224,61,1,254,207,0,96,10,119,60,148,6,166,139,247,39,
+6,247,237,2,135,112,32,118,235,137,0,83,240,104,109,75,65,40,221,129,
+157,82,2,64,207,242,102,0,114,88,2,79,32,80,64,14,65,5,248,53,
+12,160,31,32,210,224,31,7,136,9,96,197,160,64,146,137,32,105,215,159,
+97,2,32,158,104,178,71,142,137,133,65,59,96,42,64,60,224,53,1,252,
+20,1,64,42,192,10,203,166,156,74,252,82,5,72,9,232,120,1,97,28,
+104,120,71,127,224,234,81,64,32,192,180,71,253,192,105,97,180,152,239,2,
+55,49,53,120,234,83,140,172,111,64,54,224,41,15,234,7,1,2,91,93,
+34,160,46,129,205,252,211,6,2,76,105,115,2,116,95,84,2,121,112,101,
+2,46,34,32,64,36,243,143,1,253,153,2,233,152,1,66,80,212,141,169,
+13,64,21,173,55,2,55,49,49,33,96,71,181,154,244,64,247,79,190,32,
+19,175,158,32,170,90,3,96,175,234,171,2,2,102,34,32,162,131,32,192,
+122,54,122,30,224,38,14,64,79,129,167,2,75,32,80,32,3,65,15,64,
+3,2,58,55,48,129,166,71,24,2,95,50,57,32,203,253,142,0,106,139,
+99,56,2,49,51,50,69,122,154,241,96,29,67,19,124,68,34,84,251,255,
+2,246,62,4,32,91,245,6,2,43,226,2,55,48,50,185,83,141,231,32,
+16,64,52,99,108,192,30,32,5,229,185,2,77,37,224,56,0,154,10,219,
+106,171,145,65,201,33,41,192,34,108,36,2,54,55,54,163,162,75,87,32,
+134,161,245,224,99,2,32,202,64,91,2,49,49,50,192,58,67,38,53,152,
+90,81,160,14,224,86,1,211,203,32,74,227,223,0,64,120,2,54,57,57,
+32,22,2,90,32,80,64,255,108,39,32,33,227,225,2,96,31,2,83,32,
+80,2,32,64,73,128,136,197,211,169,238,127,84,103,177,133,121,224,10,3,
+255,114,0,65,35,64,80,96,141,34,19,224,246,0,128,125,215,95,65,25,
+2,57,55,32,96,185,128,8,64,183,47,199,128,53,32,11,61,89,160,11,
+32,84,175,151,96,254,34,24,224,82,4,66,183,36,236,225,25,1,224,112,
+21,38,47,224,112,0,35,244,224,111,0,97,110,160,110,210,106,225,180,1,
+160,76,216,25,224,188,0,126,61,62,62,160,152,64,60,198,44,2,58,54,
+57,204,228,67,21,187,204,96,56,32,26,130,107,2,85,32,73,96,13,129,
+242,246,142,8,2,105,109,112,2,111,115,115,2,105,98,108,2,101,34,32,
+65,174,120,50,96,54,2,75,52,32,32,2,82,139,192,1,237,194,2,32,
+39,253,175,1,98,189,220,44,254,53,0,79,246,192,204,65,224,72,13,64,
+65,192,71,157,222,157,204,166,117,131,182,96,7,97,215,32,202,68,237,99,
+133,192,118,228,60,2,171,26,64,21,130,18,2,73,32,58,2,54,57,50,
+229,125,3,248,12,0,2,54,57,49,192,215,2,50,32,75,32,218,160,237,
+196,3,128,141,37,86,254,29,10,228,61,2,2,115,117,112,2,101,114,34,
+254,37,10,2,58,54,56,196,55,128,70,224,52,2,2,67,34,32,96,32,
+129,144,32,107,67,182,2,90,32,67,250,155,1,120,226,231,90,5,254,160,
+8,64,104,225,129,4,67,96,131,60,65,131,76,29,2,56,53,32,231,216,
+4,194,89,32,4,32,150,2,51,48,48,192,25,240,92,0,254,5,3,99,
+147,101,177,99,161,64,85,32,6,65,248,64,92,71,200,115,79,32,94,141,
+121,243,25,4,225,53,19,2,100,117,112,2,108,105,99,2,97,116,101,2,
+32,100,101,2,102,105,110,2,105,116,105,2,111,110,32,161,68,2,51,48,
+54,224,211,1,226,155,6,2,99,104,101,2,99,107,68,2,117,112,34,129,
+171,69,73,226,235,0,64,211,32,7,69,144,115,73,130,249,255,154,11,188,
+67,64,30,64,251,32,71,198,159,233,52,2,154,173,243,10,1,164,54,101,
+195,237,45,2,233,15,0,235,208,1,32,79,130,146,139,3,100,42,64,156,
+96,63,125,45,81,93,66,215,96,43,191,130,67,148,241,3,1,243,233,2,
+128,66,33,231,195,38,199,68,243,160,5,160,49,64,5,32,15,224,52,8,
+224,53,0,192,7,244,4,1,243,150,5,243,231,14,160,236,244,17,64,224,
+188,1,244,156,3,224,64,14,224,65,2,97,18,244,15,15,224,25,0,243,
+240,3,127,184,160,75,96,23,100,123,226,36,2,169,86,255,62,3,224,60,
+3,96,2,133,114,224,137,6,131,99,129,209,2,55,48,32,244,70,3,196,
+250,32,109,96,8,224,5,16,32,57,248,48,0,244,195,5,66,45,64,85,
+2,85,32,65,243,113,6,225,111,15,34,189,192,36,226,13,3,148,207,225,
+219,7,129,70,129,24,243,123,2,243,98,0,152,234,226,60,0,224,40,0,
+224,72,14,225,132,5,225,196,10,255,91,2,105,55,149,14,195,52,162,166,
+160,6,148,202,191,20,130,121,97,48,97,107,128,181,227,126,1,102,33,143,
+81,99,178,224,9,1,224,68,21,225,101,0,129,192,134,118,224,60,3,197,
+90,225,238,4,70,204,160,216,64,134,98,202,160,18,64,14,32,63,137,124,
+224,208,10,231,46,3,225,26,0,246,112,1,226,214,17,224,28,1,224,29,
+41,227,64,10,247,234,1,227,42,1,248,44,4,160,52,227,180,5,227,84,
+2,114,120,2,49,51,55,111,213,230,94,4,245,248,0,139,19,2,54,48,
+32,224,25,0,2,95,52,48,219,181,224,157,0,161,138,129,135,43,167,88,
+246,226,13,13,117,253,204,206,166,152,181,28,170,209,2,53,56,48,169,44,
+200,110,67,14,247,188,1,65,36,225,49,5,229,63,5,226,245,9,225,18,
+0,226,242,95,226,214,3,241,65,0,129,74,76,239,238,13,13,133,196,108,
+43,224,41,22,68,107,42,51,100,243,129,64,96,4,227,57,13,2,90,32,
+85,224,13,1,230,119,1,227,1,27,2,75,32,35,96,112,227,2,19,225,
+59,15,224,13,4,101,116,226,161,0,161,215,129,67,226,115,2,160,221,135,
+138,103,216,96,10,2,53,53,57,208,250,66,29,2,53,54,32,226,169,7,
+76,75,128,60,224,8,1,225,43,1,225,9,0,165,127,194,106,2,89,32,
+67,234,210,38,97,53,32,203,160,65,137,210,66,4,229,217,1,64,24,76,
+240,224,118,2,110,90,2,54,56,48,104,90,73,146,173,212,205,221,202,85,
+42,7,33,237,234,7,1,128,8,110,184,2,54,56,50,170,15,234,86,8,
+170,84,96,36,172,120,239,37,1,32,19,204,79,139,26,96,166,2,58,54,
+55,138,207,134,91,34,76,35,207,229,129,0,252,190,4,74,248,192,144,165,
+89,32,61,176,130,78,122,32,13,202,170,131,101,134,97,225,218,6,202,147,
+230,120,1,232,170,14,224,13,3,195,244,163,132,231,45,0,141,142,226,2,
+5,227,130,12,201,119,226,209,0,201,182,228,235,7,32,158,74,12,250,152,
+0,169,147,233,245,1,64,33,33,109,233,121,7,183,184,102,182,198,119,239,
+139,0,33,25,202,212,106,142,228,179,9,231,134,7,228,48,0,163,161,74,
+72,224,247,7,229,166,9,228,108,2,160,138,251,96,4,234,80,5,161,163,
+225,62,6,232,20,0,172,167,233,102,3,32,112,2,52,49,55,224,43,0,
+161,42,237,225,4,234,79,2,96,68,224,23,0,227,241,0,192,252,161,71,
+227,1,0,240,216,0,144,114,232,255,5,198,181,180,184,254,100,18,232,5,
+4,225,85,2,230,226,0,139,163,224,204,11,230,236,4,224,58,44,224,55,
+11,97,167,237,147,2,196,5,248,42,1,109,111,65,5,237,92,9,35,118,
+79,209,128,244,245,135,7,245,134,3,234,237,2,132,37,65,91,241,114,0,
+253,153,0,169,28,142,123,128,182,192,189,228,193,1,192,17,91,189,148,105,
+96,16,224,77,24,115,8,226,19,4,78,68,226,93,3,192,29,224,89,3,
+141,41,195,24,193,230,229,50,0,233,83,1,227,27,5,194,149,224,183,2,
+162,237,32,83,177,228,65,84,65,65,32,73,161,20,133,21,65,144,55,137,
+228,196,1,213,201,35,200,160,4,245,232,1,32,31,64,38,212,145,69,105,
+32,56,113,122,84,8,109,229,102,36,67,162,225,21,2,180,154,116,53,160,
+6,64,7,65,188,32,37,32,60,215,168,32,246,228,11,1,237,192,3,129,
+9,199,31,96,31,225,77,3,96,99,150,47,152,147,2,54,52,57,233,1,
+0,164,3,115,74,97,21,163,127,137,156,160,135,114,193,64,66,96,228,132,
+161,229,187,0,2,95,54,51,32,60,32,219,197,47,64,126,2,54,51,51,
+231,27,0,64,99,70,175,155,190,250,193,0,128,35,232,233,1,2,54,51,
+54,128,39,2,53,53,32,193,162,202,148,67,186,191,251,160,70,224,40,1,
+161,68,129,62,143,87,129,65,162,73,64,236,32,181,130,230,245,91,2,128,
+162,32,69,65,12,202,13,224,104,9,160,32,32,79,64,46,32,72,175,221,
+224,239,13,192,173,96,63,98,194,235,90,1,228,126,1,224,242,1,139,20,
+196,134,165,180,233,96,0,99,51,97,185,100,235,129,34,213,195,41,234,32,
+4,188,185,233,27,0,2,54,54,48,225,1,1,87,38,96,183,98,148,96,
+48,68,4,32,19,162,248,231,182,3,66,103,179,5,64,36,128,50,98,201,
+160,35,241,136,1,2,67,39,34,178,228,64,109,225,13,35,224,233,1,192,
+22,129,1,224,191,1,36,170,192,191,128,225,64,249,2,58,54,53,195,90,
+232,104,3,32,82,160,177,64,37,224,177,19,2,83,39,34,160,177,64,95,
+248,141,0,194,48,184,82,64,61,224,206,16,234,166,5,101,176,198,193,225,
+168,3,178,253,237,36,0,162,71,32,97,129,152,224,193,4,73,83,233,42,
+1,91,16,32,131,226,169,5,163,207,128,131,175,173,199,236,227,72,3,235,
+71,13,240,109,0,226,72,4,229,144,1,226,92,9,194,83,240,106,3,224,
+75,14,120,239,224,75,7,131,135,255,170,0,32,78,32,156,32,213,198,24,
+227,238,4,161,227,226,133,3,244,213,2,105,16,64,62,161,175,233,53,0,
+138,166,65,178,226,18,8,32,25,194,18,194,196,38,117,224,25,2,32,24,
+130,179,225,136,5,226,74,1,68,47,229,228,6,32,4,109,199,32,28,194,
+103,138,244,32,172,32,19,185,61,224,79,4,166,74,64,30,229,47,0,163,
+5,149,86,97,91,129,96,226,110,2,226,51,6,97,146,224,36,17,225,107,
+2,224,36,17,225,220,2,224,73,24,154,215,224,73,22,157,244,224,36,15,
+133,44,96,73,229,108,10,2,52,51,32,202,91,227,58,8,155,62,192,250,
+96,41,227,46,3,228,126,3,2,66,34,32,194,94,225,252,3,34,16,227,
+77,1,224,55,9,2,66,39,34,224,54,12,193,171,224,24,7,88,12,224,
+24,12,70,76,224,24,2,160,176,136,167,64,6,226,118,3,163,225,32,24,
+230,56,11,239,62,0,238,59,7,245,238,3,66,123,229,76,3,2,67,32,
+61,2,61,32,64,2,35,55,32,224,32,9,235,236,2,94,94,234,33,5,
+226,148,0,167,89,224,126,11,192,101,128,76,246,72,7,160,6,192,115,205,
+47,224,151,19,128,35,32,69,224,44,6,253,56,3,64,152,231,237,1,236,
+202,0,224,202,4,160,185,224,35,21,94,204,225,180,1,251,135,0,149,242,
+224,38,5,36,29,160,38,238,193,6,226,47,1,2,75,52,34,203,45,224,
+35,17,2,51,34,32,224,35,24,2,50,34,32,235,117,0,238,121,2,239,
+181,0,196,209,66,243,218,204,65,69,122,203,32,74,64,20,155,114,196,134,
+132,219,234,131,4,234,139,6,64,81,194,135,231,185,7,2,58,54,51,199,
+78,130,165,199,251,32,24,196,224,160,24,165,142,32,24,196,229,128,24,197,
+48,32,24,132,223,224,24,0,235,68,0,67,200,191,179,189,206,157,186,253,
+207,13,32,191,32,220,130,30,226,74,4,192,32,96,31,225,197,3,96,230,
+76,82,254,49,4,2,51,49,32,100,69,93,152,64,94,128,16,126,46,96,
+9,32,50,129,101,2,79,32,58,96,37,123,130,32,10,193,82,96,133,224,
+1,3,65,84,245,96,22,48,34,96,145,32,70,204,34,245,115,5,248,63,
+10,245,156,9,245,121,12,224,11,2,192,8,216,142,2,58,54,50,241,147,
+0,108,168,65,30,171,68,124,51,243,253,0,32,41,129,215,114,12,239,219,
+2,224,146,5,192,233,248,136,4,2,39,32,85,2,32,95,56,170,103,249,
+2,7,46,176,51,104,2,52,49,56,64,110,140,43,239,118,21,99,190,128,
+53,2,54,50,52,224,53,5,249,185,7,128,38,2,51,49,49,224,38,4,
+225,16,6,143,101,156,176,65,135,168,120,113,100,177,183,239,84,5,161,57,
+237,85,2,251,244,7,242,111,2,110,58,238,57,3,64,58,241,162,1,161,
+50,225,152,3,32,31,166,1,2,51,49,48,34,89,2,85,32,90,224,176,
+0,146,133,2,50,54,50,225,192,1,130,190,110,49,133,176,115,236,2,50,
+50,32,96,29,130,169,2,85,32,67,239,64,3,157,34,253,96,19,2,32,
+61,32,254,147,3,2,54,50,49,192,186,169,50,2,49,50,50,80,32,68,
+174,96,27,64,127,2,52,53,55,71,133,2,50,48,32,96,55,2,56,32,
+95,128,27,32,53,207,13,67,99,2,95,52,56,32,132,217,58,2,95,52,
+54,98,248,160,160,2,52,54,54,224,67,1,128,6,173,160,224,43,14,65,
+166,2,52,54,56,104,6,64,7,32,4,2,55,32,79,39,122,231,202,0,
+128,111,32,6,128,24,254,245,2,224,96,2,96,29,48,231,95,2,64,176,
+196,251,34,151,212,236,32,59,33,143,201,148,65,107,225,254,13,250,47,0,
+213,35,64,45,131,60,245,16,6,49,217,160,101,2,53,32,58,2,54,49,
+54,96,13,2,114,110,102,99,115,32,16,196,254,100,80,234,76,4,224,4,
+8,225,221,0,225,206,12,2,84,109,111,2,100,117,108,2,101,32,34,242,
+119,2,226,15,8,183,2,242,22,8,224,244,0,174,87,160,214,224,25,5,
+227,22,0,66,228,96,233,32,10,241,112,5,228,52,2,80,107,65,47,246,
+176,2,248,188,4,143,69,32,106,97,158,239,90,4,160,20,208,100,64,67,
+255,59,4,2,49,50,32,64,116,82,59,193,146,160,99,160,6,100,192,228,
+40,1,33,124,98,219,254,165,8,243,236,10,252,13,5,159,153,160,122,224,
+130,0,227,230,2,64,88,96,138,44,164,65,40,166,135,32,24,162,93,227,
+68,2,36,167,71,173,131,233,225,200,17,225,199,5,227,212,38,2,40,46,
+46,2,46,41,32,2,119,104,101,2,114,101,92,2,49,48,38,163,224,2,
+54,48,56,198,131,131,179,96,138,2,58,54,48,242,138,1,163,216,91,128,
+32,23,130,202,99,50,122,33,36,111,49,146,166,22,164,248,238,92,2,2,
+67,32,60,39,135,253,51,1,233,235,6,231,186,2,82,35,130,137,224,41,
+12,214,53,96,41,224,43,3,133,171,2,53,48,56,96,164,68,63,67,204,
+162,152,32,176,131,101,2,85,32,83,224,146,9,224,18,6,64,249,238,96,
+0,128,18,65,171,247,203,1,160,19,66,49,2,85,32,66,132,130,96,109,
+225,101,1,2,100,101,102,2,97,117,108,2,116,34,32,228,88,0,32,85,
+64,7,84,18,96,7,33,244,224,50,5,2,44,32,34,162,59,69,187,2,
+53,57,52,227,83,0,96,100,2,53,48,57,164,222,224,108,8,2,105,110,
+115,2,116,97,110,2,99,101,34,128,63,224,58,1,64,56,154,199,97,206,
+226,222,4,133,56,229,69,4,224,93,13,2,99,108,97,2,115,115,34,192,
+90,146,204,2,53,57,54,160,7,253,142,0,225,48,5,157,214,225,47,4,
+66,96,38,130,203,189,100,68,224,131,14,122,19,226,194,17,2,105,110,102,
+2,105,120,34,189,179,67,223,228,168,5,32,104,97,246,224,23,6,67,145,
+214,216,224,24,0,255,158,1,165,251,246,243,5,225,177,35,134,96,193,120,
+225,106,12,224,243,19,225,119,8,2,102,111,114,2,101,105,103,2,110,32,
+105,2,109,112,111,2,114,116,32,2,99,99,97,2,108,108,34,166,203,2,
+57,57,32,32,45,125,164,224,184,5,41,201,32,216,247,157,0,230,245,3,
+224,89,1,2,58,58,34,166,250,226,42,0,2,85,32,85,234,145,3,228,
+246,4,135,89,233,141,2,233,239,1,192,26,226,88,44,128,216,193,199,237,
+92,1,2,53,57,56,64,179,2,53,57,57,128,186,72,196,224,58,6,2,
+123,45,35,2,32,83,79,2,85,82,67,2,69,32,35,2,45,125,34,160,
+238,72,85,97,20,224,44,5,2,113,117,97,2,108,105,102,2,105,101,100,
+239,182,0,161,170,225,244,0,97,79,226,20,5,65,88,233,24,17,2,97,
+115,32,161,138,2,50,57,53,224,125,6,233,102,0,232,144,1,32,99,122,
+73,224,65,2,2,104,105,100,2,105,110,103,160,145,228,32,2,104,224,124,
+177,226,115,3,72,177,226,190,2,105,220,170,171,224,0,1,228,198,6,116,
+108,224,18,5,64,245,227,149,6,64,189,224,177,2,233,75,0,225,181,16,
+2,116,121,112,196,104,226,92,22,2,52,56,54,96,9,224,94,18,227,91,
+7,224,231,10,195,86,226,195,27,102,1,2,56,56,32,160,154,192,82,86,
+135,232,161,0,229,217,7,225,18,9,66,111,225,18,47,133,24,224,120,10,
+224,166,0,228,26,14,224,108,32,2,110,101,119,224,111,28,2,54,48,52,
+149,135,2,48,53,32,161,30,246,11,0,236,143,1,227,161,21,2,100,97,
+116,2,97,34,32,224,104,2,224,78,0,240,45,7,224,211,53,224,103,8,
+224,208,10,229,138,21,2,32,124,34,227,27,4,197,138,224,254,1,168,6,
+215,153,46,140,132,89,72,69,231,195,15,2,114,105,118,227,164,0,227,163,
+43,2,53,57,51,224,124,0,32,123,139,201,229,104,1,229,71,4,97,94,
+225,70,22,34,214,165,26,135,134,163,27,2,80,32,66,160,144,192,254,110,
+25,86,233,2,48,51,32,224,177,5,96,33,192,130,165,190,225,169,12,227,
+66,2,227,117,11,128,99,224,248,9,224,236,0,177,80,192,100,237,150,4,
+2,49,50,51,237,151,1,192,18,246,234,1,64,180,129,40,162,170,163,60,
+237,220,6,81,128,160,68,163,92,32,58,139,248,72,22,194,237,81,238,129,
+40,237,42,1,229,161,3,224,28,0,225,223,4,2,54,48,48,193,45,231,
+217,4,224,208,2,225,31,10,43,92,2,41,34,32,230,100,2,32,145,216,
+63,193,162,226,48,13,32,40,140,15,2,65,32,58,102,249,64,51,56,67,
+193,2,172,63,210,197,72,245,184,249,168,234,38,193,135,56,32,62,222,39,
+226,228,16,97,112,224,123,0,229,137,29,229,198,22,225,42,4,224,66,0,
+246,42,1,224,39,12,226,47,0,106,72,97,243,128,98,98,171,204,217,73,
+185,198,108,160,61,138,118,32,54,227,207,12,224,156,3,98,26,32,80,228,
+86,0,225,173,1,2,61,62,34,209,65,99,81,65,114,67,178,32,13,177,
+79,2,53,57,50,161,104,32,19,130,149,32,91,159,65,182,247,255,61,3,
+221,120,253,171,0,211,218,173,19,96,17,147,118,242,251,1,127,200,246,104,
+3,224,61,3,137,137,243,221,5,173,9,231,254,0,253,231,2,184,16,32,
+5,101,225,160,81,237,142,2,107,126,237,153,0,237,90,5,170,53,128,102,
+118,33,228,168,3,234,29,0,64,74,160,208,196,192,160,96,211,72,156,106,
+2,52,55,51,254,149,2,238,15,2,151,199,239,108,10,225,26,6,241,236,
+3,234,124,14,165,52,157,39,128,14,137,110,100,19,128,127,217,2,224,181,
+47,224,166,6,96,163,224,160,10,224,133,13,224,125,2,226,0,0,226,21,
+0,225,210,3,248,199,2,41,167,195,28,243,241,1,192,160,248,129,5,226,
+203,1,2,91,93,34,193,190,185,192,81,23,107,78,101,168,2,49,56,54,
+194,51,173,130,32,234,131,25,231,32,0,96,24,163,42,106,219,123,163,64,
+231,67,29,35,117,230,205,0,157,206,249,160,4,160,255,145,210,224,191,3,
+226,225,1,225,255,1,97,89,240,28,6,145,129,251,236,0,224,26,4,191,
+13,234,225,6,115,183,233,207,6,116,107,233,208,7,137,209,32,192,96,234,
+175,179,238,100,22,2,95,97,34,244,251,2,238,17,0,234,26,7,231,146,
+1,192,243,129,126,224,193,7,109,38,192,26,240,71,5,98,63,97,68,224,
+31,0,137,160,230,239,16,224,26,8,2,49,50,54,231,128,3,248,125,2,
+226,163,4,243,94,3,200,94,226,180,7,225,1,1,2,45,62,34,128,81,
+196,159,96,86,231,58,3,231,12,11,73,181,232,13,6,225,211,13,97,47,
+225,44,13,213,65,225,40,6,64,163,97,188,224,211,1,192,12,93,31,134,
+28,225,25,6,245,232,1,230,115,4,160,202,240,135,5,233,126,12,233,39,
+2,232,190,10,236,197,32,94,4,232,239,13,225,176,2,231,160,4,231,59,
+2,225,40,16,105,231,226,85,13,99,171,226,8,15,224,232,18,226,8,10,
+237,107,10,250,223,4,229,168,5,240,54,1,140,50,226,117,3,102,158,2,
+66,32,79,194,220,240,19,9,2,102,34,32,224,241,2,192,163,224,48,17,
+2,116,104,101,2,110,34,32,250,45,3,224,43,17,2,101,108,115,173,55,
+226,158,3,225,35,17,227,229,4,232,175,4,228,202,22,98,191,226,245,12,
+241,45,0,224,25,8,243,160,0,225,202,9,98,58,225,202,25,225,188,0,
+192,171,228,169,1,74,17,210,53,236,226,4,2,111,34,32,234,212,24,2,
+46,100,111,248,50,1,52,74,2,48,32,35,66,119,245,251,4,32,22,242,
+253,3,32,14,134,254,226,182,12,98,22,226,181,12,165,231,160,233,224,231,
+3,224,15,1,106,26,162,185,227,113,12,128,145,225,220,4,225,7,3,160,
+7,224,228,6,2,108,101,116,237,231,0,224,226,16,230,255,0,245,135,15,
+255,160,2,228,97,1,227,103,0,107,158,228,113,4,245,113,14,2,97,115,
+101,236,69,0,224,25,4,2,111,102,34,228,118,0,224,165,15,131,249,226,
+169,4,170,6,225,136,8,174,38,231,66,6,146,56,225,151,4,65,78,58,
+182,231,56,0,187,34,199,76,229,143,4,251,127,14,81,151,243,158,12,230,
+102,0,230,99,7,32,51,2,53,52,32,226,13,1,2,53,56,57,129,63,
+128,9,36,140,244,231,0,248,45,3,233,48,4,241,231,4,232,172,1,238,
+9,1,34,171,218,124,225,180,2,105,104,192,63,128,3,193,61,138,33,233,
+27,0,193,17,129,70,76,49,72,45,73,198,246,186,14,2,115,116,36,128,
+239,103,85,244,63,0,206,126,234,56,0,225,106,0,160,33,233,134,11,234,
+137,13,197,126,131,40,251,35,0,99,19,233,155,2,65,207,124,130,96,9,
+129,165,90,123,128,9,128,17,44,245,143,80,95,162,142,127,79,97,32,22,
+142,213,90,254,108,55,33,54,32,20,142,193,155,21,129,113,43,45,2,58,
+53,56,221,37,80,145,162,172,220,104,175,216,193,150,230,58,6,251,107,6,
+69,218,127,69,238,121,10,2,53,48,49,230,6,8,35,12,226,128,0,64,
+204,73,170,250,4,11,65,96,224,18,6,99,170,250,23,11,229,154,9,98,
+66,2,52,32,35,73,159,161,67,174,181,2,35,57,52,131,19,2,53,49,
+52,66,176,104,193,161,124,137,84,224,98,6,231,136,0,229,18,5,160,45,
+64,104,247,229,10,224,22,14,224,209,7,67,236,227,233,31,160,80,160,75,
+99,227,128,226,64,141,128,28,2,53,49,56,67,136,229,245,0,224,36,2,
+105,43,128,36,182,2,225,56,9,201,202,128,49,65,128,224,12,4,192,62,
+250,201,3,224,30,8,235,148,2,33,219,191,70,253,78,1,128,124,32,6,
+98,183,92,213,128,17,32,43,144,53,2,102,115,104,2,111,119,32,32,14,
+175,251,96,58,2,53,50,53,90,83,2,53,51,57,100,230,97,211,32,25,
+2,53,32,95,128,141,192,73,64,11,32,58,176,40,35,153,64,52,33,129,
+32,52,138,44,2,53,54,57,64,39,64,64,2,95,53,55,96,143,96,11,
+70,123,192,10,224,33,2,2,56,50,32,67,93,224,28,0,33,241,32,94,
+223,60,141,66,255,230,0,32,107,2,50,48,49,229,68,2,2,73,110,116,
+2,101,103,101,2,114,58,32,2,100,105,118,2,105,115,105,2,111,110,32,
+2,98,121,32,2,48,34,32,164,35,242,247,0,136,177,64,79,2,85,32,
+80,32,241,2,55,55,32,32,4,64,181,223,30,224,17,7,196,81,245,237,
+5,101,159,240,18,5,240,180,2,128,16,191,178,206,247,144,201,238,243,1,
+33,20,2,50,32,67,238,164,3,208,129,227,247,4,32,38,161,66,168,28,
+207,9,143,110,2,53,55,56,69,196,100,200,131,102,234,222,5,138,113,116,
+67,143,217,128,86,79,197,223,52,68,254,254,66,3,2,56,48,32,175,47,
+97,151,249,102,4,33,146,133,16,225,129,8,2,105,110,105,2,116,58,32,
+175,134,129,96,193,65,244,119,5,178,207,224,88,0,32,82,133,76,129,40,
+64,153,2,95,52,48,103,100,65,134,32,30,133,86,227,187,2,32,60,37,
+73,64,63,97,50,98,15,128,107,100,122,96,55,97,89,34,181,2,49,56,
+51,64,39,192,197,98,86,64,31,146,202,174,110,146,212,210,21,238,130,4,
+85,74,67,190,37,79,193,38,241,17,5,241,144,1,112,16,235,182,3,194,
+9,160,98,64,70,32,148,35,10,2,49,48,57,255,225,2,166,148,32,28,
+69,200,224,27,0,129,161,55,177,160,195,32,31,2,52,49,32,160,12,32,
+6,205,81,2,53,52,48,97,170,2,51,54,54,134,225,33,8,32,227,133,
+235,160,201,202,106,32,7,242,4,3,235,163,3,139,202,65,92,68,98,35,
+190,97,187,130,137,33,2,33,85,99,254,128,6,194,71,96,26,97,114,32,
+21,64,59,39,243,64,59,169,29,136,183,96,49,64,28,53,207,226,223,2,
+66,107,64,46,96,26,135,19,244,81,2,227,60,0,33,152,160,170,65,85,
+64,5,160,33,97,112,98,177,69,113,32,66,242,53,4,227,135,0,236,83,
+2,65,131,185,250,206,249,2,53,55,53,224,95,3,160,163,128,220,160,12,
+99,170,132,10,32,8,99,22,166,188,224,197,15,64,39,64,48,192,243,225,
+16,3,104,170,228,101,1,96,232,131,135,107,22,79,22,146,186,226,187,0,
+242,187,2,98,238,135,220,131,236,235,241,0,224,80,2,224,13,4,34,8,
+198,24,224,20,0,42,152,168,22,32,29,134,10,129,36,133,133,32,24,32,
+23,217,172,36,89,32,13,133,230,200,167,245,156,3,130,250,244,21,0,32,
+240,101,71,2,53,53,50,132,63,96,14,32,65,197,201,73,1,2,53,55,
+49,208,174,64,26,132,81,2,95,51,51,67,25,71,98,119,213,32,24,132,
+23,234,213,1,33,21,32,29,128,145,164,20,224,27,6,96,187,74,7,120,
+62,69,88,129,127,162,150,74,185,2,53,53,48,194,45,159,117,33,165,32,
+24,134,241,194,247,32,6,135,60,192,13,65,191,100,59,70,220,225,78,8,
+187,166,32,29,225,108,5,32,43,224,29,4,129,108,230,100,8,32,25,193,
+110,2,75,32,95,225,203,3,32,25,129,122,2,83,32,66,165,67,166,255,
+230,168,10,229,103,1,231,48,11,224,48,20,103,24,183,165,247,42,0,198,
+214,245,254,8,230,255,0,234,157,4,96,97,225,250,1,100,13,65,87,132,
+158,246,11,2,160,62,248,20,0,246,133,3,167,58,246,237,9,247,30,0,
+224,117,21,224,115,5,224,113,5,224,51,17,121,57,224,0,4,33,120,194,
+177,66,212,2,53,53,32,32,84,235,183,1,2,53,53,54,163,181,98,197,
+69,154,67,185,99,159,32,28,33,105,2,53,54,49,248,83,3,130,236,224,
+157,5,32,99,162,250,2,53,53,56,136,10,229,236,0,2,95,54,52,160,
+10,32,5,2,49,32,35,134,191,230,212,5,224,35,13,33,247,32,2,45,
+138,102,85,96,171,192,142,128,63,224,99,0,160,48,131,205,69,102,214,174,
+237,37,0,249,50,6,224,62,5,224,142,7,205,212,168,152,59,145,231,170,
+4,225,24,4,210,30,226,3,0,128,76,70,223,128,30,161,242,224,70,0,
+2,50,56,55,224,71,0,65,176,74,79,160,14,224,42,7,224,113,2,224,
+41,6,33,112,132,82,109,241,2,52,32,90,162,30,32,23,205,186,168,6,
+232,80,0,250,66,1,65,5,2,82,32,95,224,22,2,225,38,0,2,58,
+53,53,237,226,1,250,170,3,238,164,4,224,20,5,224,17,8,224,14,5,
+224,11,2,192,8,130,254,96,109,205,199,96,195,224,197,1,33,94,224,197,
+4,64,164,239,224,2,241,10,0,2,39,32,85,239,246,2,227,24,2,227,
+112,1,239,40,2,64,88,132,184,235,120,10,2,102,111,108,2,100,108,49,
+184,42,80,175,64,45,132,204,224,134,0,2,83,32,80,228,53,2,96,79,
+164,212,228,91,0,80,118,136,125,235,14,6,233,120,1,234,77,1,212,120,
+136,31,128,169,233,89,5,233,29,0,134,28,130,29,34,163,233,98,4,233,
+66,1,210,148,226,220,3,233,109,4,128,180,253,0,0,128,82,71,48,160,
+173,137,120,69,238,64,6,106,181,64,194,96,45,200,71,134,120,32,24,170,
+237,69,160,242,152,0,241,148,5,255,247,0,230,70,1,231,227,7,96,144,
+203,24,252,255,0,219,100,229,194,1,253,6,2,251,26,0,234,221,2,165,
+11,192,86,196,227,169,135,134,10,128,8,39,31,105,198,168,243,103,23,231,
+240,0,224,63,2,96,171,224,25,4,149,243,64,14,128,27,230,64,3,224,
+173,13,224,123,7,106,148,98,142,224,126,21,224,100,3,224,129,8,224,155,
+5,225,89,4,192,245,97,100,2,54,32,102,226,221,0,2,92,51,52,2,
+38,46,47,2,108,105,98,2,47,68,97,2,116,97,47,174,101,2,46,104,
+115,64,24,2,44,49,50,2,55,58,49,98,250,2,58,53,52,168,115,2,
+53,52,55,165,224,32,19,131,166,246,3,0,196,231,176,9,156,47,97,254,
+226,245,1,229,211,7,226,161,0,234,191,3,227,215,4,195,254,192,7,35,
+162,77,80,2,75,50,32,224,204,37,2,54,51,58,2,54,34,32,249,110,
+6,160,170,226,45,0,227,114,3,174,117,227,98,2,32,251,206,77,228,94,
+0,202,89,80,171,230,249,0,245,148,1,224,80,10,235,216,2,224,80,2,
+172,234,107,126,33,90,196,233,131,63,100,57,65,121,238,20,1,142,74,227,
+240,11,228,42,14,160,48,235,123,5,224,63,11,103,54,228,46,6,224,83,
+12,228,96,21,231,58,4,32,209,203,136,208,158,233,176,21,168,194,97,19,
+101,116,75,103,66,128,32,96,110,8,116,105,34,8,240,97,10,174,41,32,
+51,177,189,2,53,52,50,226,180,1,132,229,228,41,6,193,77,229,162,6,
+161,208,229,164,8,226,42,15,135,167,32,109,161,213,230,132,1,99,186,107,
+164,202,46,226,130,46,224,91,0,226,130,10,224,95,3,226,130,32,224,80,
+1,161,110,104,75,33,40,214,25,168,31,226,109,37,164,133,226,15,5,224,
+12,1,32,94,134,38,33,177,32,11,133,232,33,207,243,99,0,53,108,236,
+177,0,143,175,2,51,54,32,64,5,113,56,143,16,83,93,128,34,105,4,
+96,10,2,58,53,51,246,141,2,2,50,52,48,224,65,0,32,25,132,175,
+208,2,32,16,227,101,1,160,42,192,27,64,28,162,176,171,202,226,45,3,
+96,19,241,93,4,96,100,148,62,64,55,97,240,167,195,100,202,176,108,229,
+231,0,96,96,130,209,143,198,174,114,162,3,134,230,47,74,150,166,227,250,
+1,239,253,4,142,76,129,129,194,177,230,124,0,2,89,32,67,224,82,2,
+229,148,0,229,94,3,96,169,197,86,208,65,144,132,232,134,3,241,77,0,
+111,220,159,40,224,143,2,236,123,8,182,68,224,146,3,121,9,233,87,4,
+2,108,116,87,2,46,99,109,2,112,34,32,128,28,177,219,128,6,208,18,
+160,6,33,41,131,199,224,208,1,237,201,3,152,178,33,88,176,59,160,34,
+239,57,2,74,78,32,31,111,147,2,53,51,50,132,34,91,70,32,89,132,
+13,97,4,32,13,130,242,121,55,32,13,203,75,74,130,192,1,227,40,0,
+32,31,194,181,66,135,2,50,55,32,32,92,54,58,32,24,66,193,226,129,
+7,64,31,32,25,194,129,238,93,0,225,62,22,193,14,64,13,2,49,54,
+48,225,81,1,32,75,175,138,32,126,201,79,39,26,153,196,130,131,75,228,
+99,53,130,125,55,239,96,169,133,27,64,6,105,166,49,104,99,113,2,50,
+52,32,64,22,162,148,96,24,55,47,100,36,79,163,66,50,68,59,97,112,
+33,53,196,73,173,154,131,245,32,50,97,86,64,75,96,92,230,184,6,96,
+38,65,21,104,10,228,16,1,230,43,2,45,36,2,55,32,35,96,177,192,
+85,224,49,13,64,38,168,241,32,112,229,213,0,226,173,2,194,6,234,54,
+0,229,98,2,229,127,1,98,30,165,1,224,236,30,229,192,0,131,31,201,
+232,198,73,128,86,231,219,2,224,86,29,217,140,224,90,3,128,204,160,196,
+192,195,224,92,5,82,114,33,27,224,91,15,224,125,37,227,165,6,2,78,
+117,109,2,101,114,105,2,99,46,115,57,72,41,79,2,65,116,66,62,186,
+2,58,32,110,2,101,103,97,2,116,105,118,2,101,32,97,2,114,103,117,
+2,109,101,110,191,90,240,241,2,64,114,237,231,2,224,212,3,64,5,224,
+177,22,97,186,32,22,80,82,224,21,3,224,74,50,70,163,224,22,2,224,
+235,33,2,117,110,115,2,117,112,112,2,111,114,116,2,101,100,32,2,98,
+97,115,223,184,128,140,117,187,226,116,6,194,106,35,64,2,52,51,57,233,
+31,4,164,144,224,49,6,194,57,208,158,160,11,226,69,8,224,70,4,153,
+110,175,83,224,61,0,240,203,0,225,63,11,70,39,217,64,241,2,12,225,
+85,3,2,53,50,49,98,214,39,245,128,65,238,41,0,225,81,16,35,133,
+133,63,194,189,98,117,160,33,96,82,96,48,96,203,32,43,240,169,0,2,
+50,32,75,2,52,32,65,160,21,133,83,225,32,6,237,42,0,227,96,59,
+193,126,237,150,0,204,173,185,123,241,164,1,125,174,240,185,2,156,160,117,
+240,161,7,128,161,226,130,22,224,64,8,233,33,2,224,86,9,244,25,5,
+224,98,30,160,66,218,4,2,58,53,49,134,130,100,50,124,247,255,131,2,
+174,99,151,170,158,189,33,73,224,249,5,183,206,249,237,4,99,209,64,38,
+69,221,127,64,192,22,38,102,2,53,32,102,227,73,0,2,32,37,32,163,
+37,224,45,5,180,40,70,98,126,94,192,15,103,158,96,15,32,184,199,33,
+121,175,225,50,5,97,12,224,234,4,32,47,201,194,251,144,2,71,167,97,
+206,202,243,66,35,96,231,32,193,226,18,0,2,51,56,51,96,187,103,161,
+32,27,221,12,40,221,34,44,160,16,32,96,167,39,201,142,201,109,2,49,
+51,50,65,40,96,5,224,28,15,185,93,224,18,3,134,210,32,86,135,103,
+242,111,8,2,108,97,115,252,102,1,138,26,33,181,64,209,252,253,0,32,
+60,135,94,2,85,32,67,104,60,2,95,52,54,97,66,32,72,125,36,32,
+109,2,52,54,55,224,84,2,2,45,62,34,200,53,72,246,97,47,32,85,
+144,66,139,183,2,53,49,49,128,238,227,194,0,157,130,247,46,2,100,35,
+254,5,1,246,212,3,103,80,234,10,0,235,21,2,224,160,0,72,134,64,
+5,96,153,132,206,43,192,132,81,239,225,7,128,152,2,52,54,51,162,235,
+150,89,225,57,0,132,56,147,83,226,158,3,96,100,154,101,64,9,160,17,
+225,10,6,2,32,124,34,164,197,36,63,32,73,96,7,161,48,56,202,78,
+49,160,157,64,118,33,29,244,37,0,160,174,32,128,228,163,1,97,156,253,
+254,5,97,82,130,10,192,245,224,127,3,2,119,104,101,2,114,101,34,232,
+214,0,2,53,48,48,122,172,128,173,104,215,128,118,209,176,32,111,65,160,
+140,182,2,52,57,55,250,60,0,64,99,98,3,99,227,132,187,2,60,32,
+64,2,35,51,32,66,115,224,18,4,156,158,164,231,128,18,66,219,2,85,
+32,66,170,163,90,178,41,128,253,251,7,130,87,207,219,192,12,224,25,1,
+224,21,0,129,26,225,67,9,193,51,225,3,6,2,46,46,34,224,30,4,
+104,245,224,137,7,224,117,81,224,110,14,224,97,21,224,189,20,225,112,7,
+152,138,225,112,4,65,227,64,117,224,115,2,224,102,30,224,173,20,34,96,
+226,240,0,225,15,5,101,119,227,79,0,226,236,39,64,116,32,15,64,113,
+192,228,34,114,239,46,3,224,140,1,224,15,0,96,99,195,189,224,103,12,
+189,19,96,76,253,152,0,161,4,64,5,192,49,2,57,49,32,192,153,192,
+17,32,133,168,57,64,117,99,15,2,80,32,67,225,7,13,69,8,225,78,
+6,2,60,45,34,226,28,5,128,6,64,60,2,57,56,32,224,44,6,2,
+108,101,116,228,37,0,227,161,23,32,143,174,157,32,143,135,15,64,218,64,
+133,64,53,224,161,23,32,218,71,113,226,185,5,224,53,14,2,52,56,52,
+224,215,8,2,58,58,34,224,58,0,65,89,32,142,251,215,1,2,80,32,
+35,96,78,41,196,32,23,219,139,32,98,32,13,222,123,64,102,81,234,2,
+95,52,53,115,31,73,213,102,152,2,58,52,57,228,120,6,110,76,32,22,
+132,121,137,153,91,16,255,47,0,234,150,5,78,149,2,61,61,32,252,36,
+0,202,22,163,218,200,90,224,46,15,32,232,64,9,107,239,96,5,32,121,
+238,242,0,46,45,101,6,2,52,57,54,249,185,1,2,52,54,50,195,120,
+70,124,32,38,97,47,64,215,128,85,32,46,249,186,2,235,147,5,235,124,
+0,64,58,64,242,75,187,241,205,0,243,78,2,217,162,253,219,8,229,115,
+8,224,25,1,224,27,5,137,71,228,30,4,73,111,40,167,40,145,232,14,
+5,2,115,101,112,2,49,32,65,2,98,111,118,198,51,224,37,17,2,66,
+101,115,2,105,100,101,228,227,1,231,157,4,229,249,7,61,206,201,226,237,
+86,2,238,198,0,236,94,5,66,33,252,138,2,96,189,231,237,3,65,185,
+32,34,126,44,161,47,64,51,65,119,167,197,247,117,2,225,56,4,224,97,
+0,225,31,4,210,52,203,155,171,172,255,40,1,230,237,5,224,195,5,224,
+79,0,74,43,2,52,51,50,253,66,3,224,182,1,178,25,253,221,6,224,
+72,19,237,45,2,224,72,5,97,2,34,107,227,184,0,254,194,4,146,200,
+192,92,236,121,12,230,51,1,128,22,139,165,129,119,129,78,225,105,39,224,
+197,4,227,226,1,64,165,234,229,0,2,64,95,56,105,241,99,36,195,18,
+206,185,237,25,10,98,16,225,146,3,225,195,21,192,139,225,179,0,98,82,
+227,227,0,224,30,5,225,111,0,41,67,226,99,5,224,66,18,205,205,226,
+191,4,160,135,32,232,64,220,129,67,2,57,50,32,196,124,33,7,36,188,
+128,22,100,22,252,137,0,2,52,56,57,148,216,205,67,161,54,35,107,129,
+105,226,209,12,132,98,65,68,133,116,233,141,8,64,29,227,253,49,2,111,
+110,101,2,76,105,110,2,101,114,32,228,1,24,224,41,0,228,5,6,227,
+252,20,84,217,161,30,99,157,227,133,9,224,62,6,64,248,140,116,131,89,
+224,60,0,224,20,0,101,112,192,81,224,61,6,65,89,77,139,228,123,0,
+64,137,116,237,71,70,96,53,110,178,230,33,0,255,173,1,225,244,6,164,
+143,224,63,1,32,61,166,207,232,20,15,64,16,65,226,232,154,7,32,26,
+233,2,3,103,98,232,118,2,231,155,9,224,72,38,233,214,14,32,176,182,
+61,90,207,97,54,105,64,66,96,2,51,51,48,99,230,80,208,162,124,166,
+218,32,54,64,122,233,54,0,236,229,16,2,102,111,114,2,97,108,108,236,
+233,5,192,151,187,86,224,183,7,32,90,204,81,233,208,1,2,54,57,32,
+235,27,16,232,141,21,2,52,56,54,160,85,167,179,72,158,32,13,135,174,
+2,80,32,75,98,123,129,36,224,9,0,32,31,135,159,130,38,32,90,96,
+19,238,237,3,2,95,51,52,80,62,2,52,56,50,32,10,2,55,52,32,
+128,99,131,125,2,75,32,89,176,8,181,24,196,80,133,115,65,83,154,157,
+132,227,174,169,51,167,111,160,2,50,49,57,65,36,2,53,49,32,32,4,
+202,109,32,31,190,111,97,5,239,204,4,97,59,165,70,240,55,0,32,33,
+2,51,48,48,239,238,0,157,207,162,225,32,179,229,105,0,137,158,219,194,
+165,220,210,226,243,156,0,32,51,130,215,240,97,0,33,203,32,5,224,14,
+3,32,181,224,14,1,2,49,52,56,240,162,9,148,132,32,75,238,184,0,
+152,101,32,5,2,56,32,35,119,106,64,50,91,30,2,35,57,48,97,115,
+64,85,224,118,6,178,35,240,222,3,113,33,96,144,224,86,9,73,171,224,
+86,1,114,130,64,43,204,66,42,154,132,245,64,20,233,195,1,99,224,128,
+20,201,169,32,20,78,2,128,20,203,106,2,95,52,49,94,60,96,135,226,
+126,1,2,64,92,57,2,50,38,61,2,43,45,58,2,60,62,46,2,33,
+35,36,2,37,94,38,2,42,47,124,2,126,63,92,2,50,50,54,2,38,
+92,49,2,51,54,38,2,92,49,56,2,51,38,92,160,14,2,53,38,92,
+2,49,52,54,224,14,0,2,52,38,92,224,14,8,32,4,224,59,2,2,
+50,56,38,66,222,32,134,203,98,225,193,0,225,211,0,221,40,222,48,167,
+128,64,27,103,68,178,209,155,213,110,219,162,28,36,75,228,15,27,97,173,
+228,14,1,67,216,101,52,43,135,239,186,1,229,46,0,218,6,2,52,53,
+56,133,240,224,35,1,32,19,58,13,96,84,64,13,128,115,96,112,103,6,
+133,104,32,96,130,51,237,166,13,83,57,237,166,5,69,151,164,78,68,59,
+161,171,250,148,1,32,22,253,132,0,2,52,51,51,105,89,91,25,99,235,
+224,45,3,139,221,68,225,236,106,93,65,6,236,106,3,64,127,254,253,0,
+34,130,248,205,1,72,151,33,226,64,35,130,141,225,178,5,70,49,225,178,
+1,65,191,229,194,7,72,63,108,197,32,249,32,13,198,246,225,193,13,101,
+173,225,193,21,187,83,161,193,157,150,192,7,64,110,211,47,160,201,133,255,
+224,201,6,129,229,253,243,1,248,106,2,225,60,1,233,233,0,233,131,14,
+141,132,128,168,249,174,11,128,71,129,101,193,103,32,194,64,121,2,65,32,
+58,96,56,97,23,2,53,52,32,32,4,98,45,2,53,55,32,160,19,2,
+53,32,35,120,113,92,227,32,31,188,4,87,214,105,142,224,20,7,136,130,
+32,64,198,112,32,10,252,218,0,66,204,37,231,78,27,142,249,64,66,94,
+1,64,122,134,107,94,1,96,23,166,141,64,13,197,190,206,7,194,139,200,
+165,121,135,247,49,3,139,72,108,30,157,201,235,200,0,33,252,159,72,106,
+133,171,87,89,175,37,96,101,174,36,224,236,153,1,32,123,227,231,2,64,
+87,234,62,10,192,138,41,28,103,33,160,89,226,84,0,228,20,5,224,47,
+4,70,248,224,47,0,32,108,230,39,0,227,68,0,238,236,28,224,39,24,
+167,12,236,63,0,237,213,15,170,19,236,28,14,224,7,5,224,190,7,238,
+208,13,227,252,2,192,13,253,94,0,167,124,134,218,2,52,52,54,243,51,
+1,224,89,4,236,132,3,175,20,127,169,96,37,231,195,1,224,15,0,227,
+101,1,239,127,20,192,171,239,120,3,239,117,5,224,88,7,224,104,11,225,
+119,1,239,77,14,238,121,18,219,214,238,121,1,201,240,64,224,239,67,2,
+224,118,7,224,50,7,133,209,219,179,197,174,227,37,3,229,127,14,224,225,
+9,128,88,141,174,204,202,239,59,39,32,189,207,64,224,188,10,132,134,2,
+58,52,52,132,128,167,192,234,25,1,165,3,225,85,15,253,11,0,238,217,
+13,96,137,135,26,238,184,13,236,251,3,73,249,176,99,39,66,65,110,172,
+114,32,157,169,91,68,11,103,17,65,146,147,2,97,69,110,187,122,193,2,
+64,73,32,74,56,102,18,98,195,32,43,250,186,0,131,199,242,182,0,225,
+67,11,230,22,1,225,210,1,228,80,3,225,67,3,240,68,0,227,201,1,
+225,222,12,163,74,225,1,0,97,190,144,191,97,5,195,91,227,232,26,224,
+67,5,97,222,243,220,6,228,2,3,64,252,165,237,243,225,0,243,222,19,
+241,202,0,224,210,2,243,217,86,2,97,98,111,2,118,101,78,2,101,115,
+116,239,220,25,224,42,1,243,227,58,225,178,13,243,227,10,225,238,1,224,
+241,2,224,24,12,226,9,4,225,54,15,176,19,229,251,24,243,209,49,224,
+151,7,243,221,8,242,41,8,242,235,5,66,25,32,70,196,197,164,198,97,
+36,228,198,0,233,12,29,160,152,224,139,2,243,145,5,99,4,224,150,0,
+244,51,18,244,255,24,174,123,225,45,8,244,59,1,225,182,19,229,103,2,
+210,4,142,207,35,62,244,21,2,227,67,29,244,26,0,254,48,8,224,23,
+1,226,24,11,225,240,2,244,38,15,192,167,169,120,33,44,43,105,225,216,
+1,229,97,27,96,127,225,78,0,240,211,0,142,176,133,64,72,2,73,117,
+107,57,128,67,225,72,2,193,35,210,230,64,255,2,50,53,32,32,163,193,
+58,213,80,65,217,255,66,4,230,74,30,192,48,224,28,4,253,11,1,224,
+224,3,96,21,232,69,5,230,136,19,163,223,118,2,225,59,6,225,60,26,
+240,151,0,137,33,107,50,235,109,6,211,150,97,11,70,136,33,5,174,207,
+2,52,52,48,43,123,68,91,250,148,1,98,128,90,148,64,28,96,37,70,
+221,2,58,52,51,206,50,32,148,66,119,246,129,1,34,124,228,57,0,76,
+178,226,230,0,135,198,128,39,201,58,226,108,25,227,87,11,229,228,17,253,
+221,6,157,187,227,248,2,111,146,229,178,5,2,98,101,115,2,116,32,103,
+220,70,229,139,4,249,112,21,160,198,99,93,97,85,105,70,231,152,5,229,
+10,5,227,20,1,248,203,6,250,223,14,228,60,10,233,90,18,229,109,1,
+224,125,8,97,35,65,163,96,125,228,179,0,224,43,3,228,132,0,226,81,
+5,193,188,193,190,247,184,1,248,87,32,248,134,3,152,41,224,46,12,196,
+234,229,172,1,225,202,48,2,49,34,32,225,203,9,226,135,12,225,210,4,
+227,208,0,133,13,64,61,106,130,225,215,2,229,185,0,72,232,225,185,5,
+224,220,20,212,120,251,39,26,164,163,250,222,23,236,223,0,64,56,134,150,
+228,45,0,250,202,3,230,111,19,226,143,15,229,143,4,32,13,47,97,152,
+15,32,6,64,4,35,254,138,236,148,5,33,31,32,17,202,237,2,51,53,
+32,32,13,244,39,2,151,255,64,34,137,231,103,181,32,13,198,182,96,36,
+96,245,100,103,71,210,128,37,2,49,32,58,99,56,255,34,10,64,28,202,
+51,111,179,33,168,64,138,32,24,243,5,0,241,19,1,225,151,2,32,42,
+108,167,134,82,224,247,2,182,120,98,209,51,84,166,91,65,250,129,254,96,
+228,64,102,208,151,199,89,192,42,101,89,202,243,230,73,0,232,183,2,233,
+99,10,230,73,44,254,232,2,224,35,8,192,86,230,73,0,96,237,252,234,
+19,249,249,15,116,189,96,111,160,9,227,108,7,2,102,105,116,2,115,34,
+32,128,25,180,48,64,108,130,21,32,50,129,48,130,21,2,75,50,32,230,
+41,0,231,222,2,65,152,254,104,3,129,168,250,81,7,65,249,227,190,8,
+252,221,3,234,198,21,229,51,7,231,208,12,143,21,231,144,4,224,238,6,
+2,100,105,115,2,112,108,97,2,121,32,108,2,97,121,34,229,62,6,232,
+235,14,224,31,0,65,79,174,38,225,180,0,239,29,31,33,90,71,191,248,
+234,0,46,117,2,49,48,32,206,117,239,29,1,241,34,1,64,5,96,53,
+232,247,9,228,70,2,96,32,224,186,0,228,64,18,225,118,7,234,59,7,
+240,192,24,225,111,57,2,50,34,32,225,80,5,133,124,230,233,10,224,213,
+32,225,136,82,65,237,101,48,125,180,128,31,160,7,100,34,35,20,133,28,
+145,135,2,48,55,32,68,191,32,183,32,24,214,201,35,39,152,123,32,19,
+185,71,44,237,58,171,2,50,51,32,102,153,2,50,52,54,107,12,69,164,
+120,217,128,26,2,95,49,54,64,17,85,53,192,44,2,95,50,57,36,180,
+203,67,2,49,50,32,192,22,113,94,96,19,192,18,2,49,54,56,208,204,
+64,16,101,132,2,50,49,32,32,13,133,132,2,94,71,69,2,84,84,73,
+2,77,69,77,2,73,76,76,2,73,32,58,64,27,160,154,34,12,163,199,
+255,191,0,117,82,153,251,2,50,56,52,173,77,124,21,53,53,32,23,123,
+2,88,52,251,67,1,252,204,0,66,9,229,163,0,225,118,5,226,32,1,
+2,114,101,99,2,117,114,115,2,105,118,101,2,32,109,111,2,100,117,108,
+2,101,58,32,162,38,236,47,0,80,117,2,51,48,54,160,230,224,71,15,
+2,44,32,105,2,109,112,111,2,114,116,32,2,99,104,97,2,105,110,58,
+160,69,64,168,94,168,157,138,128,69,220,59,92,125,32,253,134,104,65,228,
+161,222,2,58,52,49,134,31,2,95,51,49,2,48,32,75,118,140,237,210,
+7,2,50,54,50,250,72,1,65,4,97,239,32,83,65,207,75,180,64,22,
+219,121,32,22,114,73,64,28,128,16,88,182,97,44,96,151,64,26,167,83,
+88,198,220,88,133,140,64,38,198,171,139,153,194,22,157,89,225,109,1,95,
+206,96,241,2,50,57,51,65,50,66,48,227,198,0,197,133,69,131,128,66,
+66,190,65,30,95,82,157,215,32,6,38,91,2,51,55,55,227,53,0,225,
+110,17,2,77,111,100,33,172,2,32,110,111,2,116,32,102,2,111,117,110,
+2,100,58,32,161,182,151,87,129,181,2,49,50,49,65,116,96,79,224,76,
+19,2,92,49,48,2,38,115,101,2,97,114,99,2,104,32,112,2,97,116,
+104,2,61,34,32,160,184,128,71,64,58,64,73,2,49,50,57,192,4,178,
+120,32,234,187,77,224,91,20,2,112,97,99,2,107,97,103,2,101,32,112,
+224,92,1,224,83,18,193,56,233,119,15,195,195,97,127,225,124,4,2,95,
+51,56,208,146,240,238,0,132,143,163,178,192,30,209,63,80,251,130,147,246,
+231,4,132,255,160,57,100,90,193,86,231,252,8,160,6,104,220,228,221,12,
+68,91,221,23,128,30,2,52,48,56,96,56,224,42,18,224,250,0,224,232,
+0,32,5,99,204,229,108,1,247,202,2,33,227,157,146,227,248,35,193,148,
+2,100,111,101,2,115,32,110,34,71,2,99,111,110,2,116,97,105,2,110,
+32,109,130,90,226,79,1,193,16,224,223,12,245,188,1,227,222,2,197,15,
+97,111,128,175,2,67,32,80,100,200,64,153,239,76,13,237,197,2,162,191,
+2,50,57,54,96,51,159,73,2,49,51,32,67,137,224,193,1,2,46,116,
+120,78,110,32,25,133,88,91,139,70,76,128,5,32,22,133,88,33,112,66,
+94,67,226,33,29,96,87,64,5,32,31,220,3,252,24,0,2,58,52,48,
+132,122,225,38,8,73,163,32,29,221,202,234,184,1,59,195,234,184,2,255,
+32,4,135,56,100,103,198,162,121,116,226,67,0,236,207,0,128,50,32,95,
+190,19,226,179,9,165,141,164,52,2,50,54,55,32,4,2,55,54,32,131,
+165,132,176,2,50,54,57,133,27,95,34,248,104,1,227,31,2,192,12,104,
+200,226,25,17,2,108,111,97,2,100,105,110,2,103,32,112,162,33,245,125,
+0,227,121,18,2,50,53,57,224,19,1,2,51,48,56,114,63,98,149,64,
+214,247,150,0,64,173,134,185,92,217,198,185,70,228,128,22,2,51,49,49,
+224,22,3,64,112,69,146,131,135,158,103,127,66,69,225,100,126,151,7,2,
+48,51,32,244,86,0,65,111,32,17,65,117,32,121,133,215,38,66,2,50,
+32,65,128,17,220,239,32,17,230,112,0,64,63,32,20,2,90,32,85,97,
+133,177,200,2,51,51,49,2,32,95,56,96,17,162,73,198,144,215,163,230,
+135,0,32,34,198,199,42,164,2,52,32,75,96,2,200,183,32,31,100,212,
+129,3,213,43,236,213,11,2,95,51,54,100,252,235,188,9,232,137,0,96,
+246,132,146,232,178,9,169,61,160,81,232,234,15,166,130,70,139,226,87,5,
+230,140,18,226,46,17,2,70,105,108,230,136,10,229,222,3,248,166,2,214,
+81,224,207,3,132,201,170,56,32,114,66,204,133,201,197,238,233,112,8,70,
+37,166,214,233,123,3,160,14,105,128,108,237,65,120,200,29,225,67,1,32,
+93,2,53,32,102,224,192,0,2,109,104,115,2,99,112,112,2,46,104,115,
+228,242,0,204,144,163,137,248,54,2,224,138,2,96,132,131,220,224,207,3,
+160,186,234,42,9,2,51,57,54,99,118,224,172,0,128,158,227,242,0,225,
+173,3,67,194,32,48,145,173,227,246,6,68,52,32,34,2,51,48,48,148,
+154,163,235,235,248,6,2,114,101,109,57,67,97,155,2,102,97,105,2,108,
+101,100,128,220,32,112,131,140,2,94,117,110,2,108,105,110,2,107,32,58,
+96,101,161,32,225,34,2,2,50,49,50,224,77,2,2,77,72,83,2,67,
+80,80,2,72,83,34,160,183,237,36,1,231,97,6,227,136,0,228,172,7,
+160,181,228,156,3,228,142,4,226,97,19,2,69,120,101,2,99,117,116,234,
+154,0,226,90,12,33,118,233,55,1,233,4,3,2,50,48,52,224,85,13,
+33,243,225,242,0,225,222,1,224,131,15,2,32,45,45,2,110,111,108,2,
+105,110,101,229,14,0,249,132,0,233,37,0,106,234,192,68,2,51,57,50,
+129,245,247,210,2,231,63,20,164,191,137,185,224,134,17,2,79,34,32,231,
+43,1,33,189,228,207,2,196,117,128,1,232,74,1,32,37,132,224,2,79,
+32,102,224,73,0,2,39,45,68,2,77,73,78,2,95,86,69,2,82,83,
+73,2,79,78,95,2,98,97,115,2,101,40,120,2,44,121,44,2,122,41,
+61,2,40,120,60,2,61,52,124,2,124,121,60,2,61,49,52,2,41,39,
+34,32,71,224,56,3,2,45,68,95,2,95,77,72,2,83,95,95,64,24,
+114,199,96,234,101,31,37,143,224,211,2,32,24,247,5,1,33,160,102,21,
+2,51,56,57,37,82,64,41,210,218,231,48,13,126,157,224,30,2,233,180,
+3,172,233,224,47,2,128,230,64,90,235,198,0,161,73,103,89,96,123,133,
+126,227,102,9,105,193,235,148,4,227,104,20,233,103,38,2,99,97,108,2,
+108,67,111,2,109,109,97,69,27,131,138,235,171,16,2,49,52,54,235,171,
+23,2,44,32,34,229,95,19,32,233,132,80,2,94,115,121,2,115,116,101,
+2,109,32,58,96,222,97,105,228,99,3,224,236,2,65,4,180,149,64,33,
+224,20,3,111,128,33,32,96,230,239,14,5,71,168,228,227,9,2,55,48,
+32,224,40,5,65,63,121,63,2,51,56,50,240,2,0,229,1,0,133,163,
+96,98,73,145,69,150,193,165,2,51,56,51,74,121,97,124,2,49,51,50,
+65,125,129,28,39,34,96,162,212,35,40,58,121,165,2,50,49,57,65,70,
+225,50,0,203,116,66,64,41,41,236,145,2,2,51,52,38,2,46,47,108,
+2,105,98,47,2,83,121,115,33,34,2,47,73,79,37,251,64,21,2,44,
+51,48,2,48,58,56,129,95,2,90,32,66,64,98,74,180,96,112,138,211,
+2,52,32,35,96,133,160,19,179,250,64,36,224,120,7,32,204,240,114,0,
+162,202,135,114,224,84,3,194,218,248,14,2,166,58,251,181,4,68,100,224,
+136,1,239,232,0,241,160,0,227,4,2,226,239,0,131,240,136,246,32,14,
+176,122,2,116,109,112,2,110,97,109,2,101,32,58,97,211,227,16,6,41,
+196,32,20,146,115,65,87,106,172,186,255,43,179,32,9,106,182,170,181,161,
+252,192,60,104,61,65,129,173,131,231,152,8,169,153,2,50,53,50,250,145,
+0,231,215,8,232,206,2,225,78,6,64,195,196,49,2,95,53,32,74,8,
+64,215,64,113,233,117,4,196,252,228,254,3,64,39,131,254,32,162,2,54,
+32,85,96,26,32,19,131,40,2,85,32,58,64,21,128,10,85,109,72,248,
+160,44,55,96,105,13,32,13,49,169,64,15,97,84,132,207,228,1,2,241,
+43,5,67,59,229,194,18,239,170,0,64,106,129,151,2,85,32,67,204,82,
+98,117,64,68,232,68,0,230,98,1,227,243,11,228,124,21,241,205,1,236,
+178,2,225,212,1,151,108,224,26,12,225,239,1,237,173,7,255,129,2,236,
+67,18,231,41,2,225,29,4,228,231,33,2,99,111,108,228,235,5,128,52,
+96,15,224,48,10,2,101,110,100,2,45,111,102,2,45,102,105,2,108,101,
+34,195,11,224,38,10,2,110,111,32,2,108,111,99,2,97,116,105,2,111,
+110,34,194,33,224,29,17,33,161,131,39,36,69,87,192,35,79,184,56,32,
+25,194,143,99,41,2,51,54,56,164,168,224,118,12,234,93,0,171,168,170,
+164,43,202,99,174,75,245,130,219,2,51,54,55,242,194,0,64,83,249,133,
+0,213,137,2,51,54,53,228,10,0,128,6,32,39,130,202,2,89,32,66,
+32,140,235,214,1,228,25,3,196,24,64,48,213,28,214,64,248,157,1,192,
+17,34,116,249,34,7,177,28,236,147,1,32,30,250,220,0,32,87,195,52,
+2,48,32,80,64,164,103,89,109,29,35,83,128,237,32,81,2,51,54,51,
+97,59,79,128,237,151,4,96,24,127,23,53,37,107,126,100,31,85,182,64,
+13,64,35,37,198,130,122,32,22,76,154,96,92,32,11,33,119,128,11,32,
+68,200,135,2,49,32,75,32,61,42,234,33,135,2,52,32,102,225,134,0,
+2,67,111,110,2,116,114,111,2,108,46,69,2,120,99,101,2,112,116,105,
+2,111,110,46,2,73,110,116,2,101,114,110,2,97,108,34,32,64,224,39,
+1,2,83,111,109,2,101,69,120,160,35,97,184,197,170,32,100,181,175,178,
+93,32,230,2,53,55,32,38,250,67,61,96,13,117,254,84,99,246,19,1,
+2,51,53,57,128,160,194,51,46,61,78,107,96,23,238,121,0,96,58,167,
+170,65,233,2,53,53,32,212,242,155,80,2,51,53,54,69,66,97,118,32,
+45,196,192,73,250,96,94,64,30,32,17,34,192,51,202,32,14,129,147,229,
+169,6,231,146,1,66,162,242,231,0,235,191,3,32,8,237,109,3,32,73,
+129,175,2,75,32,90,192,105,129,174,237,203,7,142,102,134,226,69,34,111,
+179,227,227,16,2,111,112,101,2,110,70,105,86,115,2,99,97,110,78,65,
+64,16,196,53,230,60,2,32,110,197,39,192,129,64,19,207,148,2,52,56,
+32,32,4,106,85,69,21,241,190,4,97,222,2,97,99,116,54,224,81,193,
+96,38,128,52,66,66,79,13,32,19,198,28,32,187,32,91,69,20,125,4,
+96,30,128,228,140,236,2,115,101,113,202,41,32,16,192,13,67,115,128,11,
+131,32,238,123,2,65,12,224,64,0,96,35,82,100,64,123,163,237,241,45,
+1,241,3,2,2,52,50,32,241,3,0,125,1,32,18,161,7,2,52,52,
+32,225,242,6,64,25,240,154,5,34,90,192,135,32,56,165,173,32,40,254,
+2,1,128,28,224,173,4,32,31,129,78,247,136,3,2,51,52,48,242,239,
+1,33,218,116,135,64,39,238,39,3,34,210,32,4,171,8,240,145,3,2,
+50,54,53,170,54,100,58,226,96,2,238,210,12,242,200,21,238,41,1,226,
+78,17,2,76,111,97,114,183,2,115,97,118,43,99,2,99,97,99,2,104,
+101,32,163,187,231,55,6,192,176,106,78,95,132,226,112,4,160,185,2,58,
+51,51,190,167,249,153,6,214,87,32,160,168,219,96,12,56,201,243,173,1,
+96,18,138,54,245,199,12,202,16,131,219,85,195,2,50,57,49,201,0,96,
+40,2,49,56,55,231,62,3,248,67,2,248,125,18,65,53,80,81,230,120,
+10,248,137,5,152,135,247,91,4,82,208,253,255,0,243,231,16,215,156,207,
+102,236,1,2,224,46,11,145,173,252,39,2,97,248,192,183,244,197,0,237,
+103,0,2,49,54,51,246,12,4,118,86,225,49,1,38,180,224,163,18,2,
+51,48,50,128,12,96,11,133,120,148,131,248,62,6,64,131,224,126,4,239,
+206,3,245,122,32,226,162,0,192,159,245,106,15,232,231,19,2,105,110,118,
+2,97,108,105,2,100,97,116,2,101,32,99,66,177,206,28,249,188,4,254,
+118,3,225,108,6,100,61,2,95,51,50,129,103,225,145,0,128,225,226,146,
+2,238,181,3,64,138,172,120,119,222,2,50,56,57,97,43,222,224,195,24,
+101,29,67,30,168,48,66,54,68,25,204,34,100,23,193,89,126,77,225,229,
+0,207,197,108,182,75,171,96,0,222,113,32,18,96,159,117,190,32,98,133,
+103,103,50,124,39,120,110,32,6,104,177,64,42,100,132,64,128,131,130,32,
+120,131,55,224,105,0,133,113,192,135,249,27,0,168,181,75,87,64,169,212,
+80,249,234,2,224,61,2,101,20,233,42,2,64,126,101,17,109,66,64,147,
+229,31,0,236,100,8,32,31,197,136,41,1,101,181,214,188,129,99,118,76,
+223,88,49,36,204,215,184,140,97,123,229,158,0,66,230,134,103,128,2,96,
+153,224,183,3,64,176,37,242,68,185,255,165,0,154,9,32,186,32,82,205,
+166,128,10,226,254,3,129,130,214,95,224,98,1,174,123,160,43,225,64,1,
+224,126,2,227,31,1,225,246,0,96,8,2,95,54,51,66,67,165,70,65,
+221,95,129,251,133,3,138,138,2,51,49,57,237,250,0,246,221,0,224,44,
+1,33,3,242,45,1,131,232,64,34,202,206,96,32,235,114,1,248,47,10,
+137,52,42,15,226,89,1,67,22,202,237,251,48,2,64,64,42,141,161,28,
+193,22,251,91,1,201,115,155,243,87,19,122,131,224,233,3,32,18,168,241,
+225,97,3,160,70,225,85,10,225,110,0,225,76,8,74,67,225,76,25,128,
+73,219,75,183,44,35,80,98,70,226,142,7,224,44,4,192,120,120,28,224,
+48,20,44,200,222,228,45,109,34,175,103,37,32,233,131,142,96,6,64,185,
+195,132,247,178,0,65,216,67,24,128,78,111,141,224,9,0,114,67,65,230,
+217,211,68,54,145,226,128,54,160,34,224,63,11,96,55,197,1,226,53,15,
+65,240,100,31,40,124,71,92,225,198,1,68,124,161,158,2,90,32,83,225,
+144,4,227,0,0,227,90,1,227,17,1,254,120,6,224,80,4,225,115,16,
+201,88,224,177,0,230,110,0,237,59,1,228,106,0,224,192,5,184,2,224,
+192,69,226,98,0,234,150,6,224,190,14,245,93,2,225,170,0,224,191,18,
+192,14,131,41,227,242,2,128,209,206,100,228,204,0,228,202,1,195,17,248,
+66,3,67,143,195,111,253,80,0,240,55,0,60,62,223,116,226,138,4,208,
+137,224,91,0,249,167,2,225,35,6,192,116,224,229,1,235,1,1,224,11,
+0,251,152,4,160,209,229,86,23,225,71,8,225,54,1,224,210,0,138,51,
+2,82,32,64,229,170,29,242,192,10,225,250,5,225,57,1,64,15,182,68,
+227,174,7,132,186,225,57,0,94,128,70,128,113,198,2,51,49,54,225,76,
+4,163,97,224,101,14,228,19,18,224,100,41,166,4,225,252,3,162,245,81,
+90,171,27,230,172,6,224,13,19,229,105,3,193,201,233,235,4,136,168,94,
+63,41,183,224,187,3,224,172,5,41,41,224,25,0,195,160,128,44,48,143,
+233,129,3,145,97,224,177,8,224,178,65,208,86,64,159,224,178,40,131,36,
+81,53,233,199,2,97,113,35,148,251,231,3,228,108,0,224,196,10,169,201,
+172,185,199,181,192,8,32,72,137,9,224,72,30,232,196,5,227,29,1,96,
+226,224,5,1,39,142,224,61,0,254,254,9,234,102,0,234,111,1,225,58,
+0,224,167,5,229,20,1,128,17,227,170,2,96,16,224,15,0,192,224,225,
+152,1,224,119,33,192,35,225,39,19,229,35,10,192,24,129,69,138,47,228,
+145,1,227,7,16,225,143,2,231,3,5,160,79,224,103,17,32,101,138,86,
+224,101,31,232,184,4,225,181,1,225,46,6,160,67,228,239,6,230,145,5,
+225,150,67,224,98,10,225,129,60,138,110,2,35,50,32,32,11,138,89,231,
+99,15,230,63,0,227,157,1,224,5,1,135,112,224,225,1,231,137,6,200,
+71,171,175,231,127,14,231,151,17,224,128,3,192,208,170,54,102,67,231,39,
+10,229,151,6,132,36,135,46,228,48,0,53,150,33,3,65,16,212,144,193,
+114,146,15,64,172,65,29,2,48,32,58,101,188,64,11,89,15,69,214,227,
+253,0,228,239,21,226,8,3,242,113,8,97,130,64,190,168,250,81,232,34,
+149,128,165,83,230,193,3,32,37,212,125,32,16,32,13,173,104,48,90,234,
+136,0,97,106,100,138,119,29,150,184,214,191,96,23,96,11,150,230,224,23,
+10,160,48,146,177,47,162,108,90,150,83,64,6,243,96,17,2,50,54,50,
+224,203,0,211,64,32,10,130,77,186,79,44,168,243,238,2,2,50,55,52,
+253,8,9,147,57,177,241,32,49,180,145,87,12,39,117,47,197,144,8,32,
+6,96,173,118,243,96,17,32,43,214,5,110,165,64,31,223,112,33,193,44,
+73,117,233,47,242,205,32,111,236,237,32,0,81,30,120,222,129,109,128,175,
+129,110,193,28,55,73,179,15,81,82,224,200,22,97,137,65,222,66,94,64,
+50,245,184,1,64,13,193,34,128,171,251,208,0,64,78,2,49,49,56,146,
+96,32,6,2,58,50,57,129,51,2,94,109,100,2,53,66,70,2,73,76,
+69,2,32,58,50,64,24,228,202,2,81,105,115,172,48,49,220,78,122,97,
+2,50,57,54,64,173,115,7,128,94,80,84,76,116,218,224,254,79,3,64,
+167,2,35,52,55,141,202,121,140,96,63,224,165,0,96,19,128,193,2,51,
+32,90,224,1,12,233,168,2,97,190,96,145,160,169,89,69,252,211,0,121,
+249,240,156,2,253,125,4,81,135,64,145,32,5,130,6,239,239,7,115,219,
+238,176,0,226,60,4,64,14,122,79,235,157,0,64,234,145,69,242,121,6,
+2,79,32,35,64,95,192,179,32,172,225,212,10,98,40,253,217,1,225,225,
+6,182,221,114,232,226,107,9,2,50,56,51,226,107,13,116,224,246,188,4,
+96,24,239,158,12,66,123,97,45,238,195,3,111,40,171,60,239,136,2,251,
+80,5,161,100,239,141,6,230,50,5,230,67,7,98,78,224,85,5,224,80,
+0,98,199,32,170,64,201,100,117,96,232,33,36,113,227,2,90,32,67,128,
+6,160,58,244,76,0,224,28,5,73,200,224,28,16,76,240,224,28,16,107,
+114,224,29,16,2,50,56,55,224,29,3,2,95,53,57,225,21,0,119,150,
+96,10,32,187,131,57,191,37,229,87,0,64,61,224,211,1,135,149,2,56,
+53,32,225,115,2,246,156,1,64,23,229,61,4,160,6,224,43,22,224,49,
+3,224,42,16,224,80,4,128,50,224,43,23,224,93,3,128,244,128,22,96,
+244,131,254,64,6,32,220,2,115,99,109,2,112,32,58,96,60,198,52,225,
+97,6,68,17,96,253,222,52,96,79,67,6,32,54,197,10,144,164,37,10,
+104,248,32,24,211,237,137,14,130,117,227,134,0,2,64,95,57,163,14,64,
+42,166,64,227,94,0,227,78,3,125,174,133,43,120,25,101,245,182,96,245,
+177,1,99,148,243,77,0,251,111,4,2,55,50,32,64,120,40,96,64,44,
+96,13,128,23,246,166,0,32,6,96,141,131,132,64,6,195,238,156,76,101,
+111,32,34,249,253,7,96,25,228,249,1,192,20,162,51,65,52,2,55,53,
+32,246,232,0,230,12,11,100,40,38,173,246,174,1,224,208,36,66,224,224,
+208,0,106,35,160,207,64,45,96,10,32,142,129,229,97,135,224,92,5,246,
+138,0,225,44,14,224,171,6,185,19,96,107,96,106,102,242,96,6,135,212,
+96,86,223,140,224,85,8,67,91,224,77,3,32,46,130,33,136,3,96,35,
+166,140,239,68,1,2,50,55,48,96,27,251,121,3,224,1,15,230,100,6,
+96,97,200,101,163,214,224,50,21,2,58,50,54,129,227,2,82,32,95,67,
+56,32,15,215,217,95,109,194,15,136,132,32,28,254,92,0,224,77,5,32,
+25,161,114,72,250,151,42,160,5,118,201,183,60,123,66,128,37,42,52,96,
+25,126,230,72,6,107,234,252,138,18,105,83,253,197,4,2,46,109,104,2,
+115,99,97,57,29,93,195,123,187,139,171,231,60,15,252,136,5,166,18,177,
+40,252,133,0,186,156,166,188,127,187,166,67,2,50,53,57,161,196,191,175,
+225,240,3,64,106,92,68,160,106,224,133,3,32,24,165,62,226,32,3,249,
+45,1,232,127,6,73,221,254,232,5,255,135,5,32,78,32,6,224,159,3,
+2,50,50,53,128,23,133,241,224,123,6,32,187,251,143,4,224,228,2,226,
+154,3,64,215,64,224,97,157,2,53,55,32,32,13,130,8,2,73,79,46,
+2,100,101,115,2,101,114,105,58,144,2,122,101,32,32,23,130,3,2,94,
+97,100,2,100,95,108,2,122,55,55,2,95,100,101,2,99,111,109,2,112,
+114,101,2,115,115,111,2,114,32,58,96,134,225,136,6,128,179,168,218,224,
+134,1,157,242,2,53,52,32,32,137,97,54,255,221,3,97,53,64,103,2,
+117,110,103,2,101,116,98,64,88,227,106,0,224,88,3,85,26,233,197,2,
+2,53,50,32,69,242,65,79,69,141,140,56,227,211,3,32,50,129,96,2,
+50,48,49,226,76,2,2,104,71,101,2,116,67,104,2,97,114,58,2,32,
+69,79,2,70,34,32,161,16,165,207,2,49,52,50,64,127,130,128,2,94,
+103,101,128,142,226,112,0,227,249,6,95,124,32,18,34,181,251,91,0,64,
+133,251,239,19,2,111,112,101,2,110,66,105,2,110,97,114,2,121,70,105,
+2,108,101,58,59,244,2,110,110,111,2,116,32,111,32,22,251,249,4,254,
+173,2,161,62,225,9,1,86,241,224,232,5,181,125,32,170,130,176,32,154,
+2,56,32,58,97,251,64,199,2,99,108,111,2,115,101,98,64,16,129,233,
+195,207,32,16,182,123,224,218,12,227,68,9,224,36,3,64,242,2,52,53,
+32,191,50,118,244,128,154,224,155,4,199,19,224,163,0,64,116,204,164,32,
+64,66,18,101,5,32,74,142,10,32,10,229,105,13,252,218,3,69,51,253,
+153,6,64,18,67,99,64,181,234,238,3,123,226,100,189,224,23,7,33,29,
+132,213,224,24,5,76,56,224,23,8,225,193,1,2,119,43,34,198,40,2,
+50,52,50,172,244,226,149,0,2,50,48,55,134,163,196,91,225,164,0,200,
+26,228,151,7,32,239,130,124,2,94,102,111,66,5,32,15,237,52,0,43,
+40,229,217,9,229,215,4,32,45,130,157,238,251,4,32,21,199,231,235,201,
+1,32,174,197,107,229,59,7,32,56,79,127,225,100,0,145,4,227,192,3,
+254,90,5,64,51,93,181,224,52,0,189,73,32,21,139,61,173,165,225,188,
+3,253,117,4,228,24,1,224,73,4,228,167,7,2,51,57,32,160,219,227,
+195,6,2,101,97,100,97,133,102,79,190,162,2,65,46,119,2,114,105,116,
+68,184,190,80,193,64,160,2,194,126,190,80,32,29,192,26,225,85,3,32,
+31,130,137,224,109,1,2,118,55,46,2,48,92,49,2,48,38,34,96,108,
+130,156,224,29,1,2,48,46,57,32,1,2,48,34,32,64,28,164,70,2,
+50,50,52,64,199,33,153,32,19,201,255,67,209,2,50,51,48,96,19,129,
+179,37,113,2,115,116,100,2,111,117,116,64,179,163,185,68,69,65,143,64,
+8,64,78,32,13,64,18,227,100,0,163,99,32,68,188,220,101,158,175,35,
+187,11,96,18,2,117,116,102,68,3,186,93,173,88,114,53,138,9,185,164,
+2,73,32,58,96,111,228,224,1,225,157,2,32,108,68,226,64,146,32,197,
+2,35,49,48,128,57,214,0,32,22,228,149,2,32,33,32,27,212,214,64,
+28,125,156,68,98,32,23,165,82,2,112,117,116,68,136,179,123,218,31,248,
+210,2,37,76,67,75,96,58,177,16,250,131,4,149,156,98,90,115,46,129,
+10,161,60,36,240,43,203,68,110,139,198,150,250,96,6,76,11,2,101,113,
+117,2,97,108,32,32,15,177,95,2,50,49,53,64,4,2,54,32,102,225,
+205,0,2,72,79,77,2,69,34,32,64,250,227,53,0,224,31,4,2,85,
+83,69,2,82,78,65,160,35,240,186,0,225,47,0,229,247,16,2,67,58,
+47,2,85,115,101,2,114,115,47,196,60,32,133,129,153,231,62,5,82,110,
+230,82,10,224,88,17,38,163,2,69,110,118,2,58,32,110,38,69,2,102,
+111,117,2,110,100,32,160,97,231,98,4,179,181,2,95,53,48,98,85,32,
+103,219,65,32,27,167,126,2,105,115,119,2,105,110,100,2,111,119,115,65,
+33,129,226,96,143,224,107,1,2,77,72,83,2,68,73,82,64,95,32,33,
+225,232,1,228,73,2,69,132,32,178,109,195,229,21,19,233,113,7,65,239,
+229,27,12,211,126,2,50,49,48,64,150,130,54,2,112,101,101,2,107,67,
+65,2,83,116,114,2,105,110,103,64,21,198,244,51,55,2,58,50,48,129,
+236,2,112,110,117,2,108,108,32,32,14,161,235,98,26,147,62,98,26,147,
+62,96,6,64,45,2,61,61,32,32,12,129,37,71,247,2,101,110,118,64,
+16,244,159,1,115,27,2,50,48,52,128,77,229,82,3,234,29,8,164,205,
+226,29,9,2,50,48,50,128,213,179,73,228,215,8,2,116,97,105,2,108,
+34,32,32,34,114,122,179,60,114,234,82,197,105,201,2,50,48,48,96,27,
+164,65,64,164,160,254,36,65,70,251,70,190,32,5,145,13,80,92,160,56,
+2,49,55,50,224,11,2,34,3,128,11,2,58,49,57,170,12,244,109,1,
+192,61,34,115,224,155,1,2,101,114,114,2,111,114,58,130,93,148,130,128,
+38,32,64,161,98,36,213,77,5,51,63,32,120,224,58,3,2,67,111,110,
+2,116,114,111,2,108,46,69,64,66,64,64,224,26,1,96,18,2,67,97,
+108,128,246,140,61,96,83,163,28,146,20,145,203,241,211,6,253,171,3,238,
+93,3,2,49,57,51,171,239,166,149,65,14,67,61,83,202,214,250,96,99,
+198,8,169,13,96,32,210,143,184,232,160,144,164,120,102,187,151,63,32,45,
+130,11,2,83,32,85,225,198,7,52,181,2,67,111,109,2,98,105,110,41,
+224,2,101,109,112,2,116,121,34,199,66,110,100,70,110,160,171,69,225,107,
+199,168,196,2,49,57,49,2,32,95,57,64,20,2,89,32,66,112,119,172,
+184,69,37,229,7,1,116,15,83,97,192,141,212,6,245,73,1,254,208,0,
+32,83,65,30,125,3,220,61,69,91,99,10,101,209,200,74,97,56,181,117,
+2,65,114,114,2,97,121,32,32,18,218,64,231,190,2,234,38,1,2,49,
+57,48,131,233,233,167,10,236,132,2,78,169,231,219,4,32,87,235,83,0,
+224,59,8,32,155,108,40,113,200,249,73,0,232,140,7,96,33,236,219,6,
+32,86,237,176,0,185,140,198,97,218,67,245,146,6,166,97,230,99,5,103,
+7,148,25,218,91,224,124,3,64,54,97,97,64,36,154,88,249,108,2,140,
+135,32,0,68,3,2,58,49,56,209,88,246,62,0,200,135,96,68,131,194,
+96,134,32,10,65,243,114,17,32,120,34,232,241,31,0,2,83,32,95,2,
+49,56,53,137,46,100,99,224,111,10,160,110,178,245,2,101,113,32,32,12,
+253,241,1,2,95,52,48,187,7,226,4,2,64,73,81,152,187,205,32,48,
+164,221,42,128,2,95,52,51,32,24,107,158,75,153,2,95,52,54,53,162,
+133,209,254,150,0,100,229,67,76,237,133,1,123,34,142,234,85,17,224,38,
+1,224,34,1,2,95,54,52,192,9,2,49,56,49,185,240,160,37,96,12,
+32,22,72,74,96,34,97,58,162,80,64,135,58,39,70,97,32,151,64,47,
+160,59,154,60,97,56,130,79,227,30,0,128,196,39,228,2,49,56,48,193,
+207,132,65,138,158,64,31,130,211,224,36,2,224,57,12,227,35,0,179,206,
+33,9,98,96,33,19,220,17,154,131,2,95,53,55,202,205,244,191,0,160,
+34,52,171,32,23,96,110,43,170,37,132,232,88,3,2,92,51,52,2,38,
+46,47,2,108,105,98,2,47,68,97,2,116,97,47,2,73,110,116,2,101,
+103,101,2,114,95,84,2,121,112,101,2,46,104,115,64,29,2,44,50,56,
+2,58,49,34,252,217,1,32,64,33,137,2,49,55,56,64,18,92,97,101,
+216,192,18,44,200,32,108,224,5,0,32,181,236,55,0,224,60,3,112,233,
+96,60,2,89,32,67,176,169,97,229,64,170,128,198,140,46,100,105,32,23,
+69,52,225,41,0,69,157,71,245,129,204,161,40,197,51,225,166,0,65,53,
+180,219,72,127,84,66,2,35,54,52,32,50,224,13,0,69,192,229,67,6,
+161,0,2,58,32,117,2,110,115,117,2,112,112,111,2,114,116,101,2,100,
+32,119,2,111,114,100,2,32,115,105,2,122,101,34,64,96,32,54,2,55,
+54,56,66,54,40,175,2,55,52,56,2,51,54,52,84,204,96,136,124,47,
+2,58,49,55,131,126,2,65,32,58,97,20,103,115,32,10,250,26,0,103,
+88,116,48,32,6,82,184,65,148,195,149,179,252,199,88,80,166,32,5,150,
+172,103,88,192,56,66,218,192,11,71,88,96,11,32,63,235,39,0,79,210,
+116,120,86,69,32,31,118,68,64,43,243,128,0,161,147,163,165,170,0,123,
+54,192,47,224,15,8,64,65,206,41,245,182,1,96,28,186,125,133,152,146,
+115,65,112,141,168,78,38,192,73,83,204,224,21,3,128,159,96,21,201,132,
+198,85,217,95,136,52,180,124,2,95,51,56,33,40,180,89,2,90,32,85,
+65,65,180,87,65,126,180,69,65,76,180,54,149,15,96,109,247,143,3,189,
+85,68,244,224,14,5,192,189,206,19,215,161,128,207,32,72,196,178,64,19,
+128,42,72,192,157,150,192,42,64,60,32,42,254,56,1,2,95,55,52,106,
+100,74,255,96,43,32,23,2,47,61,32,32,11,244,91,1,81,60,147,181,
+67,216,175,94,46,80,222,62,239,18,0,2,39,32,85,224,20,1,198,59,
+236,171,2,166,65,78,148,64,146,138,3,127,176,66,245,64,175,160,77,96,
+174,192,17,32,139,230,203,7,224,9,1,160,59,249,94,2,2,58,49,53,
+201,198,83,211,66,159,194,237,179,198,105,223,2,75,32,66,128,140,2,53,
+32,102,227,106,0,2,110,111,32,2,109,97,116,2,99,104,32,2,97,116,
+32,210,131,79,4,105,231,68,168,162,243,105,243,96,11,32,84,215,120,233,
+243,24,2,120,99,101,2,112,116,105,2,111,110,46,67,209,2,114,110,97,
+105,233,224,39,1,2,80,97,116,64,22,2,77,97,116,2,99,104,70,202,
+254,234,7,1,180,27,159,233,174,160,98,158,232,238,1,77,252,224,15,4,
+243,62,10,179,146,253,14,12,126,227,162,92,70,205,98,160,180,130,32,37,
+2,50,32,73,96,16,198,141,32,10,195,117,128,24,217,182,97,94,76,245,
+245,229,2,2,35,51,57,131,66,64,152,41,236,128,15,99,113,169,240,65,
+104,71,209,66,110,178,165,224,39,1,161,137,225,45,1,2,39,92,57,2,
+50,38,39,2,39,34,32,160,28,129,158,172,109,224,99,0,106,19,138,64,
+224,17,3,214,137,135,36,136,71,246,142,1,128,35,169,108,225,97,0,130,
+8,128,158,130,164,96,101,224,147,3,64,146,70,159,206,217,129,183,226,188,
+3,175,226,254,206,4,231,56,0,32,77,99,105,161,162,83,128,230,172,0,
+202,74,64,155,165,70,32,138,130,141,159,38,211,241,67,3,125,47,211,100,
+64,182,224,163,5,224,160,0,2,67,32,79,192,96,152,120,254,5,4,225,
+22,5,96,0,2,79,32,80,2,32,35,55,239,117,3,64,79,2,97,34,
+32,192,27,32,116,224,27,5,2,98,34,32,192,27,78,193,224,28,5,2,
+102,34,32,224,28,0,33,38,224,28,5,2,110,34,32,224,28,0,239,232,
+4,64,28,109,60,128,28,33,51,224,27,5,2,116,34,32,224,56,0,34,
+146,224,28,5,2,118,34,32,224,56,0,224,143,8,64,3,211,77,225,193,
+1,182,60,102,65,68,187,32,5,2,56,32,35,97,95,65,34,83,116,2,
+35,53,55,100,12,182,86,33,125,57,236,97,152,238,79,6,193,178,103,65,
+100,70,96,17,32,43,184,66,234,89,11,123,44,67,179,234,93,2,205,129,
+2,35,52,53,128,81,134,5,182,60,64,68,226,220,2,251,105,1,234,124,
+17,228,33,2,226,104,3,64,87,72,236,64,45,112,180,192,41,226,59,2,
+224,10,1,96,49,33,86,101,212,106,51,96,96,33,13,129,47,130,83,65,
+8,224,75,4,32,183,132,101,72,213,32,12,132,97,2,99,104,114,64,12,
+246,3,0,244,158,3,32,23,132,109,78,64,192,175,152,49,96,28,131,116,
+225,178,6,98,199,225,178,0,2,49,50,54,96,43,181,90,2,60,61,32,
+32,11,221,233,198,75,181,64,71,194,181,45,96,106,32,13,229,142,0,35,
+211,65,52,83,174,238,136,2,32,33,197,56,32,16,32,13,231,115,2,2,
+49,51,48,96,146,103,116,181,21,103,116,181,13,81,130,96,35,130,16,64,
+196,84,53,67,213,248,74,0,117,25,69,220,161,117,84,240,160,15,2,58,
+49,50,128,210,96,23,106,165,84,251,32,22,128,221,65,1,81,174,141,40,
+245,22,2,135,224,194,88,78,152,68,63,64,10,168,116,238,5,2,192,32,
+133,77,74,253,196,211,142,100,130,71,33,20,224,65,4,224,64,5,98,179,
+162,115,195,108,181,140,172,49,224,169,2,118,225,96,246,240,169,4,181,130,
+73,198,73,178,32,16,253,83,1,189,72,32,19,226,67,0,192,53,213,117,
+240,123,1,117,168,217,81,101,219,149,62,117,57,64,50,129,143,80,18,211,
+111,96,27,128,70,211,6,78,57,112,182,32,56,97,30,170,121,239,53,1,
+244,229,4,2,49,49,54,224,46,4,240,49,14,249,62,5,85,46,129,44,
+181,190,74,85,181,67,236,185,0,134,82,76,190,36,100,228,74,1,233,58,
+2,239,84,0,241,81,0,192,25,161,166,228,64,1,228,142,0,228,53,7,
+238,17,0,240,53,6,240,51,2,240,210,1,64,186,249,2,7,96,95,141,
+59,228,48,1,206,206,242,182,0,249,16,6,224,44,11,201,40,240,210,2,
+96,16,33,25,130,81,67,194,181,224,2,79,32,58,96,87,217,25,250,79,
+7,32,29,200,227,89,55,128,69,181,126,229,8,0,240,62,1,146,60,70,
+250,33,174,99,104,181,157,2,35,49,54,64,105,172,32,51,83,39,159,73,
+50,210,122,110,45,110,70,52,56,165,18,2,95,57,57,224,10,0,2,49,
+48,49,224,11,2,224,34,1,110,68,2,58,49,48,230,151,0,97,75,42,
+22,178,35,136,100,160,2,250,115,7,65,224,128,50,239,175,0,139,68,237,
+85,1,85,148,171,152,102,5,205,13,128,23,216,163,34,18,160,53,224,29,
+3,224,53,16,72,232,42,38,193,101,192,68,233,10,6,128,193,198,63,224,
+69,8,128,161,138,53,224,100,9,241,70,4,147,26,96,72,106,96,224,142,
+8,128,16,96,18,97,180,183,31,100,36,70,106,198,104,183,24,142,90,226,
+40,7,183,40,64,52,224,28,10,196,172,96,81,174,149,183,56,224,78,3,
+252,201,2,32,31,226,122,0,96,148,177,100,193,206,65,37,34,35,107,192,
+118,255,66,35,226,200,18,183,18,237,48,2,86,79,87,84,182,236,224,25,
+6,64,116,182,197,252,52,0,96,183,182,134,2,114,101,109,2,32,58,57,
+222,182,224,1,3,100,56,229,227,3,224,20,3,224,17,8,224,14,5,224,
+11,2,229,183,2,128,194,182,138,225,97,3,225,47,3,182,123,2,95,55,
+50,77,126,114,2,192,7,2,95,56,50,182,66,2,95,56,52,224,9,0,
+35,70,128,9,53,33,192,9,69,241,74,13,2,58,57,51,187,156,2,111,
+107,101,2,87,111,114,40,140,181,246,2,94,112,101,2,101,107,87,128,17,
+240,86,1,83,57,149,122,84,183,2,58,57,48,225,56,4,98,94,2,58,
+56,57,224,46,5,105,174,96,46,180,246,2,95,56,54,2,32,58,56,185,
+125,2,43,32,58,180,185,225,126,5,180,193,179,106,197,172,254,195,0,64,
+82,136,25,147,179,128,100,101,157,77,154,180,206,226,218,7,180,87,204,144,
+2,95,55,57,143,232,128,63,245,19,6,179,238,242,156,6,59,102,2,101,
+102,105,2,110,101,100,123,11,178,220,226,219,15,178,142,233,202,7,178,154,
+69,14,147,4,82,187,178,164,243,139,2,230,141,0,80,178,230,204,2,102,
+61,179,126,90,113,167,118,116,184,164,12,117,154,50,207,149,90,67,54,178,
+248,2,105,110,118,2,32,58,55,182,42,74,110,178,233,73,129,178,180,2,
+113,117,111,62,149,242,161,0,226,242,91,178,204,213,237,72,142,140,108,113,
+141,232,38,1,72,214,184,82,144,36,178,241,69,154,70,161,74,217,2,58,
+55,48,130,192,2,102,114,101,2,101,32,58,178,160,121,3,64,87,33,6,
+65,173,160,63,178,176,2,110,101,119,220,84,2,76,101,110,32,52,202,34,
+233,82,1,178,196,52,78,178,192,162,91,130,243,178,139,227,179,15,178,127,
+248,10,0,162,7,178,126,2,95,52,56,167,38,80,105,2,95,53,52,64,
+4,74,237,81,105,118,84,2,95,53,57,232,143,0,35,196,96,9,2,58,
+54,49,241,31,0,242,36,3,70,255,73,3,240,208,0,242,76,4,64,29,
+224,49,1,224,39,4,178,69,248,175,10,178,81,2,62,61,32,2,58,53,
+55,128,10,32,9,129,16,76,69,177,169,2,60,32,58,177,59,2,105,99,
+109,2,112,32,58,177,55,108,1,80,20,2,95,53,49,64,102,235,254,1,
+177,63,66,123,176,52,50,180,174,124,226,120,93,174,190,230,75,13,174,205,
+2,110,101,103,32,149,128,237,2,42,32,58,174,112,2,45,32,58,173,194,
+36,193,173,191,224,156,68,2,58,52,50,224,155,7,193,143,174,9,162,211,
+34,252,114,223,116,101,32,12,66,57,114,67,2,58,52,48,245,169,1,173,
+244,43,57,173,242,64,54,96,42,77,246,173,245,64,29,247,4,0,173,240,
+2,94,109,97,2,108,108,111,2,99,32,58,173,222,2,73,79,46,2,112,
+101,114,2,102,111,114,2,109,73,79,32,20,236,124,9,173,223,51,46,173,
+221,224,227,14,2,58,51,48,250,164,1,77,148,56,7,69,8,173,203,131,
+75,134,12,173,199,2,114,97,105,2,115,101,32,2,58,50,55,255,0,0,
+163,148,2,46,114,101,2,97,100,32,2,58,50,53,192,161,63,198,2,65,
+114,103,2,82,101,102,32,20,206,149,32,100,122,64,88,111,99,108,64,107,
+128,190,32,49,2,62,62,32,2,58,50,50,165,241,73,67,128,33,45,142,
+236,134,0,44,19,111,109,52,243,192,9,45,35,128,9,2,58,50,49,234,
+155,3,111,134,172,199,109,84,107,153,173,81,128,35,96,32,119,127,192,32,
+2,95,56,32,124,200,166,28,91,198,224,47,12,105,11,96,155,143,207,247,
+105,2,230,141,6,252,112,0,196,178,73,7,236,8,7,201,246,231,27,6,
+91,87,224,11,2,96,210,188,44,226,152,2,142,130,181,7,2,51,32,66,
+103,76,226,135,0,72,106,129,75,73,153,226,180,0,110,116,128,239,2,58,
+57,32,172,171,234,140,1,37,194,162,24,2,58,54,32,161,158,2,114,101,
+116,2,117,114,110,36,39,225,175,1,36,53,128,201,36,52,227,127,7,227,
+107,37,2,58,50,32,226,167,19,234,111,0,226,143,0,64,202,78,249,222,
+66,224,0,255,224,0,255,224,0,255,224,0,255,224,0,255,224,0,255,224,
+0,249,1,32,125,
};
unsigned char *combexpr = data;
-int combexprlen = 84471;
+int combexprlen = 85845;
#include "mhsffi.h"
static struct ffi_entry table[] = { { 0,0 }--- a/src/MicroHs/Flags.hs
+++ b/src/MicroHs/Flags.hs
@@ -15,7 +15,8 @@
compress :: Bool, -- compress generated combinators
buildPkg :: Maybe FilePath, -- build a package
pkgPath :: [FilePath], -- package search path
- installPkg :: Bool -- install a package
+ installPkg :: Bool, -- install a package
+ target :: String -- Compile target defined in target.conf
}
-- deriving (Show)
@@ -38,5 +39,6 @@
compress = False,
buildPkg = Nothing,
pkgPath = [],
- installPkg = False
+ installPkg = False,
+ target = "default"
}
--- a/src/MicroHs/Lex.hs
+++ b/src/MicroHs/Lex.hs
@@ -2,7 +2,7 @@
Token(..), showToken,
tokensLoc,
LexState, lexTopLS,
- popLayout,
+ popLayout, lex
) where
import Prelude hiding(lex)
import Data.Char
--- a/src/MicroHs/Main.hs
+++ b/src/MicroHs/Main.hs
@@ -7,6 +7,7 @@
import Data.List
import Control.DeepSeq
import Control.Monad
+import Control.Applicative
import Data.Maybe
import Data.Version
import System.Environment
@@ -29,6 +30,7 @@
import System.Process
import Compat
import MicroHs.Instances(getMhsDir) -- for GHC
+import MicroHs.TargetConfig
mhsVersion :: String
mhsVersion = "0.9.9.0"
@@ -75,6 +77,7 @@
"-Q" -> decodeArgs f{installPkg = True} mdls args '-':'i':s -> decodeArgs f{paths = paths f ++ [s]} mdls args '-':'o':s -> decodeArgs f{output = s} mdls args+ '-':'t':s -> decodeArgs f{target = s} mdls args '-':'D':_ -> decodeArgs f{cppArgs = cppArgs f ++ [arg]} mdls args '-':'I':_ -> decodeArgs f{cppArgs = cppArgs f ++ [arg]} mdls args '-':'P':s -> decodeArgs f{buildPkg = Just s} mdls args@@ -81,6 +84,50 @@
'-':_ -> error $ "Unknown flag: " ++ arg ++ "\n" ++ usage
_ -> decodeArgs f (mdls ++ [arg]) args
+
+readTargets :: Flags -> FilePath -> IO [Target]
+readTargets flags dir = do
+ let tgFilePath = dir ++ "/targets.conf"
+ exists <- doesFileExist tgFilePath
+ if not exists
+ then return []
+ else do
+ tgFile <- readFile tgFilePath
+ case parseTargets tgFilePath tgFile of
+ Left e -> do
+ putStrLn $ "Can't read " ++ tgFilePath
+ when (verbose flags > 0) $
+ putStrLn e
+ return []
+ Right tgs -> do
+ when (verbose flags > 0) $
+ putStrLn $ "Read targets file. Possible targets: " ++ show
+ [tg | Target tg _ <- tgs]
+ return tgs
+
+readTarget :: Flags -> FilePath -> IO TTarget
+readTarget flags dir = do
+ targets <- readTargets flags dir
+ compiler <- lookupEnv "CC"
+ conf <- lookupEnv "MHSCONF"
+ let dConf = "unix-" ++ show _wordSize
+ case findTarget (target flags) targets of
+ Nothing -> do
+ when (verbose flags > 0) $
+ putStrLn $ unwords ["Could not find", target flags, "in file"]
+ return TTarget { tName = "default"+ , tCC = fromMaybe "cc" compiler
+ , tConf = fromMaybe dConf conf
+ }
+ Just (Target n cs) -> do
+ when (verbose flags > 0) $
+ putStrLn $ "Found target: " ++ show cs
+ return TTarget { tName = n+ , tCC = fromMaybe "cc" $ compiler <|> lookup "cc" cs
+ , tConf = fromMaybe dConf $ conf <|> lookup "conf" cs
+ }
+
+
mainBuildPkg :: Flags -> String -> [String] -> IO ()
mainBuildPkg flags namever amns = do
when (verbose flags > 0) $
@@ -158,10 +205,9 @@
hClose h
ct1 <- getTimeMilli
mcc <- lookupEnv "MHSCC"
- compiler <- fromMaybe "cc" <$> lookupEnv "CC"
- conf <- fromMaybe ("unix-" ++ show _wordSize) <$> lookupEnv "MHSCONF"let dir = mhsdir flags
- cc = fromMaybe (compiler ++ " -w -Wall -O3 -I" ++ dir ++ "/src/runtime " ++ dir ++ "/src/runtime/eval-" ++ conf ++ ".c " ++ " $IN -lm -o $OUT") mcc
+ TTarget _ compiler conf <- readTarget flags dir
+ let cc = fromMaybe (compiler ++ " -w -Wall -O3 -I" ++ dir ++ "/src/runtime " ++ dir ++ "/src/runtime/eval-" ++ conf ++ ".c " ++ " $IN -lm -o $OUT") mcc
cmd = substString "$IN" fn $ substString "$OUT" outFile cc
when (verbosityGT flags 0) $
putStrLn $ "Execute: " ++ show cmd
--- /dev/null
+++ b/src/MicroHs/TargetConfig.hs
@@ -1,0 +1,119 @@
+module MicroHs.TargetConfig
+( Target(..)
+, TTarget(..)
+, parseTargets
+, findTarget
+) where
+
+import Text.ParserComb
+import MicroHs.Ident
+import MicroHs.Lex
+import Data.List
+import Control.Applicative
+import Prelude hiding(lex)
+
+{- File Format+[target_name]
+key = "value"
+...
+
+[next_target]
+key = ...
+-}
+
+data Target = Target String [(String,String)]
+ deriving Show
+
+data TTarget = TTarget
+ { tName :: String+ , tCC :: String
+ , tConf :: String
+ }
+
+findTarget :: String -> [Target] -> Maybe Target
+findTarget _ [] = Nothing
+findTarget name ((Target n conf):ts) | n == name = Just $ Target n conf
+ | otherwise = findTarget name ts
+
+
+-- Parser
+
+
+type Parser = Prsr [Token] Token
+
+instance TokenMachine [Token] Token where
+ tmNextToken [] = (TEnd, [])
+ tmNextToken (x:xs) = (x,xs)
+
+ tmRawTokens = id
+
+
+eof :: Parser ()
+eof = do
+ t <- nextToken
+ case t of
+ TEnd -> pure ()
+ _ -> fail "eof"
+
+nl :: Parser [Token]
+nl = many $ satisfy "\\n" isWhite
+ where isWhite (TIndent _) = True
+ isWhite _ = False
+
+obrac :: Parser Token
+obrac = satisfy "[" isOBrac
+ where isOBrac (TSpec _ '[') = True
+ isOBrac _ = False
+
+cbrac :: Parser Token
+cbrac = satisfy "]" isCBrac
+ where isCBrac (TSpec _ ']') = True
+ isCBrac _ = False
+
+eq :: Parser Token
+eq = satisfy "=" isEq
+ where isEq (TIdent _ _ "=") = True
+ isEq _ = False
+
+key :: Parser String
+key = satisfyM "key" isKey
+ where isKey (TIdent _ _ x) = Just x
+ isKey _ = Nothing
+
+value :: Parser String
+value = satisfyM "value" isValue
+ where isValue (TString _ x) = Just x
+ isValue _ = Nothing
+
+targetName :: Parser String
+targetName = obrac *> key <* cbrac
+
+keyValue :: Parser (String,String)
+keyValue = do
+ k <- key
+ _ <- eq
+ v <- value
+ return (k,v)
+
+keyValues :: Parser [(String,String)]
+keyValues = keyValue `esepBy` nl
+
+
+target :: Parser Target
+target = liftA2 Target (targetName <* nl) keyValues
+
+targets :: Parser [Target]
+targets = (target `sepBy1` nl) <* nl <* eof
+
+formatFailed :: LastFail Token -> String
+formatFailed (LastFail _ ts msgs) = unlines [ showSLoc sloc ++ ":\n"
+ , " found: " ++ head (map showToken ts)
+ , " expected: " ++ unwords (nub msgs)
+ ]
+ where sloc = tokensLoc ts
+
+parseTargets :: FilePath -> String -> Either String [Target]
+parseTargets fp file = case runPrsr targets $ lex (SLoc fp 1 1) file of
+ Left lf -> Left $ formatFailed lf
+ Right [a] -> Right a
+ Right as -> Left $ "Ambiguous:" ++ unlines (map show as)
--
⑨