diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -20,22 +20,32 @@
 GHCPROF= # -prof -fprof-late #-prof -fprof-auto
 GHCFLAGS= $(GHCEXTS) $(GHCINCS) $(GHCWARNS) $(GHCOPTS) $(GHCTOOL) $(GHCPKGS) $(GHCOUT) $(GHCPROF)
 #
+EMCC=emcc -sALLOW_MEMORY_GROWTH -sTOTAL_STACK=5MB -sNODERAWFS -sSINGLE_FILE -DUSE_SYSTEM_RAW
+#
 MHSINCNP= -i -imhs -isrc -ilib
 MHSINC=$(MHSINCNP) -ipaths 
 #
-.PHONY:	clean bootstrap install ghcgen newmhs cachelib timecompile exampletest cachetest runtest runtestmhs everytest everytestmhs nfibtest info
+.PHONY:	clean bootstrap install ghcgen newmhs newmhsz cachelib timecompile exampletest cachetest runtest runtestmhs everytest everytestmhs nfibtest info
 
-all:	bin/mhs bin/cpphs
+all:	bin/mhs bin/cpphs bin/mcabal
 
 targets.conf:
 	echo [default]           > targets.conf
 	echo cc = \"$(CC)\"     >> targets.conf
 	echo conf = \"$(CONF)\" >> targets.conf
+	echo ''                 >> targets.conf
+	echo [emscripten]       >> targets.conf
+	echo cc = \"$(EMCC)\"   >> 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
 
+newmhsz:	newmhs
+	rm generated/mhs.c
+	make generated/mhs.c
+
 sanitizemhs:	ghcgen targets.conf
 	$(CCEVAL) -fsanitize=undefined -fsanitize=address -fsanitize=pointer-compare -fsanitize=pointer-subtract generated/mhs.c -o bin/mhssane
 
@@ -49,6 +59,11 @@
 	@mkdir -p bin
 	$(CCEVAL) generated/cpphs.c -o bin/cpphs
 
+# Compile mcabal from distribution, with C compiler
+bin/mcabal:	src/runtime/*.c src/runtime/config*.h generated/mcabal.c
+	@mkdir -p bin
+	$(CCEVAL) generated/mcabal.c -o bin/mcabal
+
 # Compile combinator evaluator
 bin/mhseval:	src/runtime/*.c src/runtime/config*.h
 	@mkdir -p bin
@@ -77,6 +92,14 @@
 ghcgen:	bin/gmhs src/*/*.hs lib/*.hs lib/*/*.hs lib/*/*/*.hs
 	bin/gmhs $(MHSINC) MicroHs.Main -ogenerated/mhs.c
 
+#
+generated/mcabal.c:
+	bin/mhs -z -i../MicroCabal/src -ilib -ogenerated/mcabal.c MicroCabal.Main
+
+# Flags to read local file system, generate a single .js file, and to avoid ioctl()
+mhs.js:	src/*/*.hs src/runtime/*.[ch] targets.conf
+	bin/mhs $(MHSINC) -temscripten MicroHs.Main -o mhs.js
+
 # Make sure boottrapping works
 bootstrap:	bin/mhs-stage2
 	@echo "*** copy stage2 to bin/mhs"
@@ -114,9 +137,14 @@
 	cd tests; make alltest
 
 # Run test examples with mhs-compiled compiler
-runtestmhs:
+runtestmhs: bin/mhs
 	cd tests; make MHS=../bin/mhs cache; make MHS="../bin/mhs +RTS -H4M -RTS -CR" info test errtest
 
+# Run test examples going via JavaScript
+runtestemscripten: bin/mhs
+	cd tests; make MHS=../bin/mhs cache; MHSDIR=.. make MHS="../bin/mhs -CR -temscripten -oout.js" EVAL="node out.js" info test errtest
+
+
 # Compress the binary (broken on MacOS)
 bin/umhs: bin/mhs
 	rm -f bin/umhs
@@ -139,8 +167,7 @@
 
 #
 clean:
-	rm -rf src/*/*.hi src/*/*.o *.comb *.tmp *~ bin/* a.out $(GHCOUTDIR) Tools/*.o Tools/*.hi dist-newstyle generated/*-stage* .mhscache targets.conf .mhscache dist-mcabal cpphssrc Interactive.hs .mhsi
-	make clean -f Makefile.emscripten
+	rm -rf src/*/*.hi src/*/*.o *.comb *.js *.tmp *~ bin/* a.out $(GHCOUTDIR) Tools/*.o Tools/*.hi dist-newstyle generated/*-stage* .mhscache targets.conf .mhscache dist-mcabal cpphssrc Interactive.hs .mhsi
 	cd tests; make clean
 	-cabal clean
 
@@ -184,40 +211,52 @@
 nfibtest: bin/mhs bin/mhseval
 	bin/mhs -itests Nfib && bin/mhseval
 
-emscripten: bin/mhs targets.conf
-	make test -f Makefile.emscripten
-
 ######
 
-VERSION=0.10.5.0
-HVERSION=0,10,5,0
+VERSION=0.10.7.0
+HVERSION=0,10,7,0
 MCABAL=$(HOME)/.mcabal
 MCABALMHS=$(MCABAL)/mhs-$(VERSION)
-MDATA=$(MCABALMHS)/data/mhs-$(VERSION)/data
+MDATA=$(MCABALMHS)/packages/mhs-$(VERSION)/data
 MRUNTIME=$(MDATA)/src/runtime
 MCABALBIN=$(MCABAL)/bin
 MDIST=dist-mcabal
 BASE=base-$(VERSION)
-BASEMODULES=Control.Applicative Control.Arrow Control.Category Control.DeepSeq Control.Error Control.Exception Control.Monad Control.Monad.Fail Control.Monad.Fix Control.Monad.IO.Class Control.Monad.ST Control.Monad.Zip Data.Array Data.Bifoldable Data.Bifunctor Data.Bitraversable Data.Bits Data.Bool Data.Bounded Data.ByteString Data.Char Data.Complex Data.Constraint Data.Data Data.Double Data.Dynamic Data.Either Data.Enum Data.Eq Data.Fixed Data.Float Data.FloatW Data.Floating Data.Foldable Data.Foldable1 Data.Fractional Data.Function Data.Functor Data.Functor.Classes Data.Functor.Compose Data.Functor.Const Data.Functor.Contravariant Data.Functor.Identity Data.Functor.Product Data.Functor.Sum Data.Hashable Data.IOArray Data.IORef Data.Int Data.Integer Data.Integral Data.Ix Data.Kind Data.List Data.List.NonEmpty Data.Maybe Data.Monoid Data.Num Data.Ord Data.Proxy Data.Ratio Data.Real Data.RealFloat Data.RealFrac Data.Records Data.STRef Data.Semigroup Data.String Data.Text Data.Traversable Data.Tuple Data.Tuple.Instances Data.Type.Equality Data.TypeLits Data.Typeable Data.Version Data.Void Data.Word Data.ZipList Debug.Trace Foreign Foreign.C Foreign.C.Error Foreign.C.String Foreign.C.Types Foreign.ForeignPtr Foreign.Marshal Foreign.Marshal.Alloc Foreign.Marshal.Array Foreign.Marshal.Error Foreign.Marshal.Utils Foreign.Ptr Foreign.Storable GHC.Stack GHC.Types Mhs.Builtin Numeric Numeric.FormatFloat Numeric.Natural Prelude System.Cmd System.Console.GetOpt System.Compress System.Directory System.Environment System.Exit System.IO System.IO.Error System.IO.MD5 System.IO.PrintOrRun System.IO.Serialize System.IO.TimeMilli System.IO.Unsafe System.Info System.Process Text.Printf Text.ParserCombinators.ReadP Text.ParserCombinators.ReadPrec Text.Read Text.Read.Lex Text.Show Unsafe.Coerce
+BASEMODULES=Control.Applicative Control.Arrow Control.Category Control.DeepSeq Control.Error Control.Exception Control.Exception.Base Control.Monad Control.Monad.Fail Control.Monad.Fix Control.Monad.IO.Class Control.Monad.ST Control.Monad.Zip Data.Array Data.Bifoldable Data.Bifunctor Data.Bitraversable Data.Bits Data.Bool Data.Bounded Data.ByteString Data.Char Data.Complex Data.Constraint Data.Data Data.Double Data.Dynamic Data.Either Data.Enum Data.Eq Data.Fixed Data.Float Data.FloatW Data.Floating Data.Foldable Data.Foldable1 Data.Fractional Data.Function Data.Functor Data.Functor.Classes Data.Functor.Compose Data.Functor.Const Data.Functor.Contravariant Data.Functor.Identity Data.Functor.Product Data.Functor.Sum Data.Hashable Data.IOArray Data.IORef Data.Int Data.Integer Data.Integral Data.Ix Data.Kind Data.List Data.List.NonEmpty Data.Maybe Data.Monoid Data.Num Data.Ord Data.Proxy Data.Ratio Data.Real Data.RealFloat Data.RealFrac Data.Records Data.STRef Data.Semigroup Data.String Data.Text Data.Traversable Data.Tuple Data.Tuple.Instances Data.Type.Equality Data.TypeLits Data.Typeable Data.Version Data.Void Data.Word Data.ZipList Debug.Trace Foreign Foreign.C Foreign.C.Error Foreign.C.String Foreign.C.Types Foreign.ForeignPtr Foreign.Marshal Foreign.Marshal.Alloc Foreign.Marshal.Array Foreign.Marshal.Error Foreign.Marshal.Utils Foreign.Ptr Foreign.Storable GHC.Generics GHC.Stack GHC.Types Language.Haskell.TH.Syntax Mhs.Builtin Numeric Numeric.FormatFloat Numeric.Natural Prelude System.Cmd System.Console.GetOpt System.Compress System.Directory System.Environment System.Exit System.IO System.IO.Error System.IO.MD5 System.IO.PrintOrRun System.IO.Serialize System.IO.TimeMilli System.IO.Unsafe System.Info System.Process Text.Printf Text.ParserCombinators.ReadP Text.ParserCombinators.ReadPrec Text.Read Text.Read.Lex Text.Show Unsafe.Coerce
 
-$(MCABALBIN)/mhs: bin/mhs
+$(MCABALBIN)/mhs: bin/mhs src/runtime/*.[ch] targets.conf
 	@mkdir -p $(MCABALBIN)
 	@mkdir -p $(MDIST)
 	@echo 'module Paths_MicroHs where { import Prelude(); import MHSPrelude; import Data.Version; version :: Version; version = makeVersion [$(HVERSION)]; getDataDir :: IO FilePath; getDataDir = return "$(MDATA)" }' > $(MDIST)/Paths_MicroHs.hs
 	bin/mhs -z $(MHSINCNP) -i$(MDIST) MicroHs.Main -o$(MCABALBIN)/mhs
+	@mkdir -p $(MRUNTIME)
+	cp targets.conf $(MDATA)
+	cp src/runtime/*.[ch] $(MRUNTIME)
 
 $(MCABALBIN)/cpphs: bin/cpphs
 	@mkdir -p $(MCABALBIN)
 	cp bin/cpphs $(MCABALBIN)
 
+$(MCABALBIN)/mcabal: bin/mcabal
+	@mkdir -p $(MCABALBIN)
+	cp bin/mcabal $(MCABALBIN)
+
 $(MCABALMHS)/packages/$(BASE).pkg: bin/mhs lib/*.hs lib/*/*.hs lib/*/*/*.hs
-	@mkdir -p $(MRUNTIME)
-	cp src/runtime/*.[ch] $(MRUNTIME)
 	bin/mhs -P$(BASE) -o$(BASE).pkg -ilib $(BASEMODULES)
 	bin/mhs -Q $(BASE).pkg $(MCABALMHS)
 	@rm $(BASE).pkg
 
-install: $(MCABALBIN)/mhs $(MCABALBIN)/cpphs $(MCABALMHS)/packages/$(BASE).pkg
+install: $(MCABALBIN)/mhs $(MCABALBIN)/cpphs $(MCABALBIN)/mcabal $(MCABALMHS)/packages/$(BASE).pkg
 	@echo $$PATH | tr ':' '\012' | grep -q $(MCABALBIN) || echo '***' Add $(MCABALBIN) to the PATH
 
 # mkdir ~/.mcabal/packages/array-0.5.6.0
+
+preparedist:	newmhsz bootstrapcpphs
+	rm -f generated/mcabal.c
+	make generated/mcabal.c
+
+minstall:	bin/cpphs bin/mcabal $(MCABALBIN)/mhs
+	cp bin/cpphs bin/mcabal $(MCABALBIN)
+	cd lib; PATH=$(MCABALBIN):"$$PATH" mcabal install
+	PATH=$(MCABALBIN):"$$PATH" mcabal install
+	@echo $$PATH | tr ':' '\012' | grep -q $(MCABALBIN) || echo '***' Add $(MCABALBIN) to the PATH
diff --git a/MicroHs.cabal b/MicroHs.cabal
--- a/MicroHs.cabal
+++ b/MicroHs.cabal
@@ -1,6 +1,6 @@
 cabal-version:       3.0
 name:                MicroHs
-version:             0.10.5.0
+version:             0.10.7.0
                      -- *** When changing the version number, also
                      -- *** run 'sh updateversion.sh'
                      -- *** Yeah, it stinks.
@@ -41,13 +41,15 @@
 data-files:
       src/runtime/*.c
       src/runtime/*.h
+-- I would like to have these two only for ghc, but I can't figure out how.
+      lib/**/*.hs
+      lib/**/*.hs-boot
 
+-- These files must not be installed for mhs!
 -- Cabal doesn't seem to understand this, so it never copies
 -- these files.
 --if impl(ghc)
---  data-files:
-      lib/**/*.hs
-      lib/**/*.hs-boot
+--xMHS if !impl(mhs)
 
 source-repository head
     type:     git
@@ -110,6 +112,7 @@
     hs-source-dirs:    ghc src
     build-depends:     base         >= 4.10 && < 4.22,
                        deepseq      >= 1.1 && < 1.6,
+                       filepath     >= 1.1 && < 1.6,
                        ghc-prim     >= 0.5 && < 0.12,
                        haskeline    >= 0.8 && < 0.9,
                        time         >= 1.1 && < 1.15,
@@ -120,3 +123,4 @@
   if impl(mhs)
     hs-source-dirs:    mhs src
     build-depends:     base         >= 0.1 && < 10.0,
+
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -37,7 +37,7 @@
 
 To compile on Windows make sure `cl` is in the path, and then use `nmake` with `Makefile.windows`.
 
-The compiler can also be used with emscripten to produce JavaScript/WASM, see `Makefile.emscripten`.
+The compiler can also be used with emscripten to produce JavaScript/WASM.
 
 ## Language
 The language is an extended subset of Haskell-2010.
@@ -84,6 +84,7 @@
    * RecordWildCards
    * QualifiedDo
    * ScopedTypeVariables
+   * StandaloneDeriving
    * StandaloneKindSignatures
    * TupleSections (only pairs right now)
    * TypeLits
@@ -186,6 +187,17 @@
 the cache.
 Do **NOT** use `-C` when you are changing the compiler itself; if the cached data types change the compiler will probably just crash.
 
+### Targets
+The configuration file `targets.conf` (in the installation directory) defines how to compile for
+different targets.  As distributed it contains the targets `default` and `emscripten`.
+The first is the normal target to run on the host.
+The `emscripten` target uses `emcc` to generate JavaScript/WASM.
+If you have `emcc` and `node` installed you can do
+  ```
+  mhs -temscripten Example -oout.js; node out.js
+  ```
+to compile and run the JavaScript.  The generated JavaScript file has some regular JavaScript,
+and also the WASM code embedded as a blob.  Running via JavaScript/WASM is almost as fast as running natively.
 
 ### Environment variables
 * `MHSDIR` the directory where `lib/` and `src/` are expected to be.  Defaults to `./`.
@@ -260,16 +272,53 @@
 
 There is a search path for installed packages, controlled by the `-a` flag.
 
+There is no need for any extra flags to `mhs` to use installed packages, they are all visible at all times.
+When compiling to a binary only the used parts of a package will be included in the binary.
+
+### Compiling a package
 To compile a package use the command `mhs -Ppackage-name.pkg modules...` where `modules...`
 are all the modules you wish to expose from the package.  If other modules are needed they will
 automatically be included in the package.
 You typically also want to use the `-o` flag to give the package a sensible name.
 
+### Installing a package
 To install a package use the command `mhs -Q package-name.pkg [install-dir]`.
 If the `install-dir` is left out the package is installed in the default place.
 
-There is no need for any extra flags to `mhs` to use installed packages, they are all visible at all times.
-When compiling to a binary only the used parts of a package will be included in the binary.
+### MicroCabal (`mcabal`)
+Normally a package is downloaded from hackage and it will have a `.cabal` file
+that describes the package contents.  To install a downloaded package simply
+do `mcabal install`.  The `mcabal` program is included in the MicroHs download.
+You can also do `mcabal install PKG` to download an install a package.
+
+### Installed package organization
+The packages are typically installed in `~/.mcabal/` and it has the following
+layout:
+* `.mcabal/bin/` installed binaries, initially `mhs`, `cpphs`, and `mcabal`
+* `.mcabal/mhs-VER/` installed files for the given `mhs` version
+* `.mcabal/mhs-VER/packages/` for each library package a `PKG.pkg` file (the binary blob for the package)
+  and also (maybe) a directory `PKG/` that contains `data/`, `include/`, and `cbits/` for the package.
+* `.mcabal/.../MODULE.txt` a file for each installed module, it contains the name of the package the contains that module.
+
+For example, after installing `mhs` version 0.10.5.0 we will have something like this:
+```
+.mcabal/
+        bin/cpphs
+            mcabal
+            mhs
+        mhs-0.10.5.0/Control/Applicative.txt   -- contains "base-0.10.5.0.pkg"
+                             ...
+                             Monad/Fail.txt    -- contains "base-0.10.5.0.pkg"
+                                   ...
+                             ...
+                     Data/
+                     ...
+                     Prelude.txt               -- contains "base-0.10.5.0.pkg"
+        packages/base-0.10.5.0.pkg
+                 mhs-0.10.5.0/data/src/runtime/eval.c
+                                               ...
+```
+
 
 A (maybe) short-coming of the package system is that there can only be one version of a
 package installed at a time.  If you need multiple version, you have to use different directories for them
diff --git a/generated/cpphs.c b/generated/cpphs.c
--- a/generated/cpphs.c
+++ b/generated/cpphs.c
@@ -1,1650 +1,1654 @@
 static unsigned char data[] = {
-122,76,90,49,75,128,0,0,31,118,55,46,48,10,55,56,54,10,65,32,
-95,48,32,95,50,52,32,64,95,50,54,32,95,51,55,32,64,95,51,57,
-32,1,64,64,224,22,4,1,52,50,224,22,13,64,8,128,22,1,49,49,
-192,23,6,50,49,32,64,67,39,32,224,17,0,9,64,66,32,95,50,55,
-32,95,49,50,160,15,6,64,83,32,83,32,95,50,64,19,31,50,50,57,
-32,64,95,49,55,49,32,95,49,55,51,32,64,102,114,111,109,85,84,70,
-56,32,34,45,45,99,112,112,34,64,45,1,64,73,64,95,2,50,52,54,
-64,12,0,66,224,87,1,11,95,50,52,56,32,64,64,83,39,32,83,39,
-224,196,0,5,64,64,67,39,66,32,64,113,0,53,64,17,0,50,96,58,
-224,105,23,6,118,101,114,115,105,111,110,128,109,96,187,192,77,64,72,9,
-54,53,32,64,67,32,95,49,53,51,64,64,1,53,51,64,64,192,69,7,
-79,32,35,51,50,32,64,75,64,57,2,95,50,54,96,162,3,64,95,50,
-55,64,234,64,31,64,236,224,159,57,2,104,101,108,161,10,224,156,12,65,
-19,224,150,5,224,60,1,6,85,115,97,103,101,58,32,128,61,224,197,15,
-224,46,1,20,32,91,102,105,108,101,32,46,46,46,93,32,91,32,45,68,
-115,121,109,32,124,128,7,3,61,118,97,108,64,11,12,73,112,97,116,104,
-32,93,42,32,32,91,45,79,64,45,4,93,92,49,48,38,96,96,224,87,
-17,17,92,57,38,92,57,38,91,45,45,110,111,109,97,99,114,111,93,32,
-96,11,3,108,105,110,101,96,10,64,8,5,112,114,97,103,109,97,96,14,
-224,10,2,3,116,101,120,116,224,97,36,4,115,116,114,105,112,96,58,96,
-9,3,45,101,111,108,96,13,5,104,97,115,104,101,115,128,109,4,97,121,
-111,117,116,96,10,3,117,110,108,105,224,95,2,224,79,8,0,32,98,135,
-3,32,115,116,100,64,7,8,45,111,112,116,105,111,110,115,32,96,59,7,
-105,110,99,108,117,100,101,61,65,4,4,110,97,109,101,93,161,163,226,2,
-8,7,66,32,67,32,67,39,32,83,99,23,128,8,160,9,160,12,96,13,
-224,29,0,0,39,97,219,0,66,64,11,224,8,5,0,39,65,235,0,66,
-226,75,2,0,66,98,90,226,74,3,0,55,64,23,128,71,224,38,3,163,
-130,98,46,160,15,226,50,17,6,110,107,110,111,119,110,32,128,235,162,58,
-64,195,67,211,98,62,1,50,55,64,70,224,67,19,10,44,32,102,111,114,
-32,118,97,108,105,100,160,71,4,115,32,116,114,121,226,135,6,226,119,2,
-130,228,225,135,0,225,67,3,3,54,32,35,49,225,88,0,96,135,97,10,
-225,7,2,64,153,225,4,1,96,167,5,54,48,32,95,56,48,65,18,3,
-57,53,32,64,96,64,228,185,1,193,9,224,127,1,18,65,116,32,109,111,
-115,116,32,111,110,101,32,111,117,116,112,117,116,32,99,8,20,40,45,79,
-41,32,99,97,110,32,98,101,32,115,112,101,99,105,102,105,101,100,130,137,
-224,157,1,64,116,128,0,131,235,0,67,161,182,68,228,1,55,55,193,222,
-1,39,66,161,189,1,50,53,197,24,3,64,95,55,53,68,50,1,95,50,
-69,27,1,49,56,68,206,194,11,128,26,2,95,49,56,96,64,96,42,64,
-9,2,95,55,53,64,37,2,95,55,53,101,117,1,55,54,64,227,3,64,
-95,55,56,96,79,128,0,9,58,55,56,53,32,64,10,65,32,89,66,59,
-1,32,66,96,142,130,129,98,65,64,5,226,100,0,4,66,32,95,51,53,
-96,68,64,185,128,188,224,9,11,160,65,66,138,4,66,32,95,55,49,70,
-16,1,50,57,130,116,96,6,1,64,66,96,111,1,80,32,69,12,192,119,
-161,16,64,251,128,65,2,32,61,61,65,142,129,208,64,125,0,85,160,25,
-2,95,49,49,64,209,128,0,224,82,43,129,133,224,82,68,195,189,224,82,
-22,1,95,55,99,15,225,255,0,160,2,224,60,0,98,11,129,124,128,20,
-224,39,4,64,116,224,39,4,128,16,224,17,0,66,71,224,16,6,225,135,
-0,0,83,66,33,1,50,56,67,78,4,49,32,64,35,52,160,134,224,44,
-5,192,63,224,64,7,0,66,134,214,224,62,1,0,55,224,218,1,195,99,
-128,104,226,192,4,164,132,66,19,0,80,96,26,225,20,5,224,101,2,128,
-103,224,101,7,224,164,2,224,43,0,64,91,4,83,32,95,55,56,68,93,
-1,51,52,192,77,224,133,7,224,82,1,97,141,1,39,32,64,128,224,127,
-7,224,52,1,97,72,224,51,3,160,26,96,53,104,160,2,57,32,64,130,
-13,2,95,49,54,200,75,64,222,227,42,1,225,96,6,131,140,193,84,225,
-72,15,160,38,98,92,96,101,192,17,128,130,224,175,5,96,40,192,129,160,
-135,160,6,0,58,99,214,3,10,65,32,83,96,145,96,153,3,32,95,55,
-55,68,51,0,83,128,131,64,162,224,173,16,97,105,96,38,224,167,13,96,
-100,132,16,201,163,132,131,65,52,1,95,55,100,187,136,174,3,80,32,64,
-85,99,50,96,78,132,214,2,95,50,50,101,96,233,13,4,65,187,96,39,
-5,64,64,64,85,32,65,64,9,3,95,55,55,56,99,58,224,120,0,2,
-64,35,54,229,209,1,224,193,30,2,66,32,90,128,198,224,196,7,68,235,
-101,142,160,189,1,95,55,226,199,1,195,213,226,129,11,0,83,64,212,227,
-8,14,99,248,225,18,4,160,12,0,55,134,83,2,55,49,52,160,43,230,
-253,12,3,47,92,57,50,230,199,1,128,137,65,1,1,50,51,192,98,233,
-232,14,200,81,128,59,165,252,224,135,7,1,55,56,64,64,1,50,51,71,
-23,101,184,64,0,75,35,4,67,32,95,54,49,202,74,70,19,68,157,0,
-58,99,84,3,10,65,32,79,98,100,224,118,12,169,148,134,215,1,55,54,
-70,74,224,45,20,73,173,192,44,65,75,224,44,18,233,216,1,192,48,66,
-188,224,48,18,224,44,5,64,255,224,44,18,74,28,160,42,0,55,65,10,
-224,42,18,106,12,192,86,65,31,224,43,23,74,56,192,47,65,121,224,47,
-18,138,90,192,136,66,218,225,17,19,106,124,192,44,65,162,224,44,18,106,
-158,192,43,66,149,225,151,20,2,119,97,114,140,196,1,95,55,106,7,195,
-136,96,0,0,58,98,15,1,10,65,99,205,134,219,1,85,32,64,21,0,
-49,224,21,2,64,142,128,21,0,48,96,21,64,19,1,52,32,66,93,0,
-58,99,86,96,40,2,95,50,57,69,167,0,54,66,208,65,117,0,58,67,
-224,224,67,1,64,255,96,67,68,36,96,67,3,95,49,53,53,68,22,2,
-95,49,51,64,118,0,58,100,193,100,214,224,1,8,3,39,32,95,55,68,
-28,64,101,64,92,141,28,1,55,54,64,112,130,153,224,26,14,134,85,224,
-27,13,205,150,224,19,3,101,144,224,18,5,100,250,107,80,0,50,106,229,
-224,27,7,224,17,5,132,100,224,112,12,98,139,224,47,6,98,22,224,18,
-6,136,61,224,18,4,228,121,0,224,84,9,96,252,0,58,104,107,161,153,
-0,48,193,153,134,37,3,80,32,35,57,192,17,131,243,3,80,32,35,56,
-192,17,129,252,3,80,32,35,55,192,17,129,248,2,80,32,35,225,225,0,
-225,244,0,0,53,160,17,64,229,128,17,0,54,192,17,129,234,3,80,32,
-35,51,192,17,193,230,75,8,128,17,129,222,64,162,192,17,224,180,0,192,
-179,65,203,80,124,0,54,70,27,0,66,106,144,134,206,134,10,2,67,32,
-60,69,136,161,145,224,25,9,138,65,224,26,13,97,67,139,135,231,202,0,
-160,26,162,64,0,85,70,206,69,248,233,235,1,64,25,130,167,1,64,85,
-194,168,129,224,0,85,64,61,104,251,224,49,5,64,33,160,49,128,37,134,
-66,133,125,128,0,224,132,13,170,135,224,87,15,64,30,224,87,21,224,59,
-17,65,21,224,59,10,2,55,54,50,67,134,144,99,224,160,3,225,67,15,
-96,33,224,189,13,98,219,225,66,12,136,13,225,66,14,224,44,6,102,161,
-224,43,10,224,116,13,168,148,224,70,9,137,44,224,114,29,109,62,224,114,
-11,225,3,14,194,70,224,25,9,136,63,224,168,11,178,163,224,124,9,109,
-230,224,168,30,64,36,225,27,33,226,210,16,226,209,20,224,43,6,226,203,
-2,225,27,6,192,115,227,98,5,225,0,16,226,219,1,224,97,6,226,213,
-2,224,141,24,226,197,2,224,141,5,224,44,11,226,117,15,69,90,2,49,
-55,57,165,63,68,113,133,19,69,224,68,196,64,66,173,240,106,226,128,208,
-207,165,96,8,172,159,1,95,49,111,165,112,240,1,50,56,235,9,0,224,
-16,3,106,232,160,17,71,39,99,113,96,116,199,115,224,1,9,108,146,160,
-0,224,29,20,224,26,17,224,23,14,224,20,11,224,17,8,224,14,5,224,
-11,2,192,8,109,221,128,0,0,58,103,147,101,192,71,197,2,57,54,32,
-232,120,1,31,92,51,52,38,99,112,112,104,115,115,114,99,47,109,97,108,
-99,111,108,109,45,119,97,108,108,97,99,101,45,117,110,105,85,92,1,101,
-47,96,33,6,45,49,46,50,48,46,57,128,12,2,46,104,115,64,58,4,
-44,56,48,58,49,138,239,134,23,134,131,65,99,0,90,96,1,161,107,0,
-58,112,241,168,78,75,23,0,90,203,18,0,58,113,18,96,51,128,49,224,
-51,3,134,155,241,127,3,65,255,246,154,0,193,185,130,2,143,87,224,29,
-1,173,174,0,55,86,103,193,244,66,119,98,238,243,96,2,1,95,55,76,
-246,1,95,55,81,216,87,41,143,21,1,55,53,177,147,0,80,233,179,15,
-3,115,116,100,105,201,176,98,192,108,147,1,95,53,130,195,0,58,114,1,
-71,35,2,53,51,50,151,153,0,58,96,38,96,208,64,175,76,23,128,105,
-81,141,0,55,83,82,110,217,64,226,0,53,64,27,141,200,247,48,0,2,
-53,50,56,225,184,2,15,85,84,70,45,56,47,47,82,79,85,78,68,84,
-82,73,80,129,132,131,234,244,62,4,87,234,96,209,0,50,99,73,4,64,
-64,95,53,49,64,92,0,58,96,225,1,10,65,97,170,65,29,0,58,96,
-130,225,111,6,225,78,2,1,95,53,110,248,97,64,224,22,2,160,204,225,
-77,0,128,93,248,47,2,64,88,131,71,96,132,73,25,0,55,82,179,0,
-58,65,113,64,22,8,94,102,108,117,115,104,98,32,58,96,22,65,50,64,
-170,97,139,0,58,97,155,131,247,160,216,225,223,2,3,95,55,49,53,104,
-123,1,95,55,79,162,1,95,55,70,196,2,95,55,48,130,87,65,247,128,
-57,226,61,13,129,230,0,51,165,129,128,1,224,182,3,228,81,3,98,50,
-67,88,2,95,55,48,115,216,147,205,174,139,112,172,99,118,233,251,0,1,
-54,57,138,143,197,95,234,152,1,0,55,66,31,1,95,55,88,120,142,28,
-103,213,64,119,0,53,180,6,194,28,2,95,50,55,71,253,153,58,121,118,
-100,253,82,182,128,63,128,75,64,108,160,6,160,184,96,253,163,59,1,32,
-80,67,36,78,96,2,75,32,79,138,117,99,10,0,58,96,87,226,140,1,
-76,15,111,122,160,11,64,144,1,55,51,96,223,65,117,0,54,66,170,97,
-47,0,55,197,181,1,55,51,148,203,0,52,162,86,0,55,90,79,0,58,
-97,19,96,120,148,191,227,111,0,0,79,67,133,177,26,131,140,129,211,145,
-138,241,181,17,179,199,164,216,115,13,227,237,0,239,251,8,207,82,198,22,
-145,172,224,119,0,2,64,64,82,67,198,161,37,162,83,160,127,167,34,224,
-122,10,224,39,25,128,117,96,114,128,40,100,121,98,40,178,44,224,144,27,
-224,180,28,130,123,0,58,97,108,165,79,64,37,226,104,1,98,107,98,143,
-243,12,20,148,252,128,32,241,149,2,138,94,228,102,1,10,98,101,103,105,
-110,123,99,111,100,101,125,132,97,160,158,161,253,243,127,4,242,11,2,201,
-117,225,162,10,224,120,9,241,88,22,2,101,110,100,224,128,3,224,130,7,
-226,128,0,228,138,0,97,62,1,95,55,124,217,192,0,132,60,225,195,18,
-103,241,192,150,224,181,9,131,9,128,30,128,96,211,213,2,95,50,57,67,
-28,96,81,72,117,64,208,0,56,89,88,142,164,160,147,1,55,52,68,21,
-6,51,53,50,32,95,52,56,96,152,2,95,50,57,105,136,64,192,96,8,
-224,200,0,224,100,2,64,57,64,199,148,135,100,51,224,241,3,248,22,0,
-128,114,0,50,100,0,225,30,0,102,204,192,44,225,52,14,0,58,96,8,
-70,5,0,50,230,6,0,64,55,1,10,65,231,142,0,87,61,96,22,133,
-173,115,202,224,4,3,96,6,168,111,0,58,96,231,224,37,11,0,90,66,
-209,128,34,64,208,166,119,167,236,0,58,96,149,96,54,0,89,162,57,161,
-77,226,192,11,78,250,1,95,49,71,85,65,73,3,95,50,48,48,110,152,
-96,0,2,66,32,82,160,64,213,189,72,38,250,130,0,128,76,130,12,151,
-88,136,53,224,2,0,183,109,224,21,13,164,176,224,2,0,224,43,0,224,
-15,2,134,71,162,96,64,3,224,19,0,193,41,224,16,2,247,221,0,130,
-37,224,154,11,234,209,0,192,83,228,255,2,96,96,0,80,101,208,69,224,
-128,24,1,95,50,135,166,131,93,96,5,3,95,55,51,54,227,81,3,6,
-112,114,111,103,114,97,109,99,79,224,21,1,5,99,111,109,109,101,110,146,
-175,228,141,1,119,139,228,198,4,164,224,163,188,102,16,192,49,224,228,3,
-160,225,247,49,3,107,178,4,67,32,95,57,52,129,186,172,138,224,61,3,
-193,17,161,14,161,11,224,255,4,133,139,224,249,4,96,253,224,176,41,224,
-177,53,192,60,225,196,46,162,89,128,157,96,30,67,66,227,83,0,225,198,
-26,225,176,3,225,220,13,182,90,225,203,103,163,213,155,164,230,32,2,193,
-213,227,154,1,224,70,19,0,58,96,142,104,74,161,53,96,60,160,5,230,
-174,2,230,53,12,76,157,64,3,193,7,248,166,3,253,65,6,255,7,16,
-4,76,105,110,101,32,192,64,193,65,128,47,4,64,95,49,52,48,64,215,
-198,23,224,71,19,0,58,192,68,129,65,64,62,224,46,19,0,32,87,118,
-5,32,98,101,102,111,114,192,126,70,140,255,115,6,64,36,0,46,255,114,
-4,192,208,97,179,224,10,8,224,113,19,1,73,110,159,48,224,74,0,226,
-46,3,140,152,224,66,23,2,32,97,116,128,183,225,47,163,96,0,226,5,
-199,0,58,100,38,99,55,64,1,2,80,32,73,139,242,195,142,168,75,96,
-178,224,15,2,104,91,132,194,224,219,10,232,128,4,224,14,0,64,26,0,
-58,108,37,177,37,76,58,90,237,109,2,227,248,0,79,165,108,84,155,225,
-0,49,140,208,100,120,108,209,170,59,184,64,99,210,0,55,109,69,1,55,
-51,114,76,172,216,109,125,236,145,3,237,18,31,96,173,0,80,64,39,141,
-187,193,108,217,97,0,58,110,5,176,183,1,75,52,240,136,7,96,32,137,
-37,0,85,224,30,3,224,32,5,137,52,96,32,96,35,128,27,0,58,96,
-194,128,24,0,51,224,57,2,224,59,2,64,35,201,52,64,1,0,89,193,
-152,64,1,134,230,65,146,206,152,141,74,159,103,224,67,0,133,203,198,94,
-232,199,7,160,21,96,18,192,88,141,151,224,35,7,224,41,3,224,43,1,
-96,136,236,32,3,226,176,12,7,95,95,70,73,76,69,95,95,227,95,3,
-224,91,65,2,76,73,78,224,91,21,166,204,224,91,43,2,68,65,84,224,
-91,80,2,84,73,77,224,91,6,96,57,192,89,74,227,160,83,170,62,237,
-189,2,3,67,32,95,54,80,110,160,34,66,245,82,23,1,95,55,238,13,
-1,160,169,224,2,7,192,30,225,121,3,224,112,2,224,199,7,224,49,2,
-224,157,15,224,85,0,224,14,3,207,222,196,94,224,30,0,230,119,0,224,
-179,12,224,124,2,235,16,6,224,18,2,192,62,201,61,71,186,234,254,5,
-230,156,1,232,224,1,100,11,150,71,192,5,153,79,225,40,1,0,79,128,
-155,64,48,73,113,192,195,3,95,53,56,53,159,230,0,52,64,87,68,120,
-207,216,105,67,227,175,1,224,173,4,224,175,1,224,22,65,225,178,13,160,
-25,97,15,69,10,0,49,144,28,64,22,225,101,11,224,95,5,119,123,160,
-0,226,220,3,128,91,192,35,96,91,224,59,4,226,249,12,227,20,0,129,
-71,161,51,125,35,1,95,57,65,109,1,66,32,96,7,1,95,54,155,178,
-224,62,0,224,115,1,161,208,224,115,0,128,88,243,156,3,96,15,1,54,
-51,224,16,0,230,92,7,230,77,8,224,101,0,226,52,6,226,58,3,224,
-233,2,226,60,1,235,30,5,226,64,16,227,106,4,98,68,224,56,1,110,
-253,129,43,2,95,54,50,98,53,226,47,6,227,8,13,103,74,247,144,55,
-22,76,97,110,103,117,97,103,101,47,80,114,101,112,114,111,99,101,115,115,
-111,114,47,67,64,34,8,47,77,97,99,114,111,80,97,115,247,176,0,5,
-49,53,50,58,50,50,196,143,225,118,6,2,95,52,57,68,206,64,9,0,
-54,230,114,2,1,95,55,112,57,64,215,224,168,5,7,37,72,58,37,77,
-58,37,83,235,104,1,1,95,55,213,61,224,244,15,224,114,55,6,100,32,
-37,98,32,37,89,224,114,39,192,23,81,81,64,25,64,130,232,223,1,2,
-95,55,50,161,228,224,46,23,0,52,82,18,95,106,96,52,226,123,1,224,
-123,14,227,204,2,98,35,96,251,85,219,64,34,230,50,2,245,154,3,96,
-0,231,54,4,96,21,226,126,3,231,225,7,160,2,224,39,12,226,249,0,
-224,137,9,224,141,32,224,221,14,224,164,3,132,57,235,31,0,224,234,34,
-224,137,59,206,115,233,89,1,233,101,4,138,215,161,53,128,10,192,113,225,
-226,0,64,85,0,52,95,131,68,189,174,142,242,102,7,211,177,121,158,246,
-109,0,96,81,119,225,96,148,92,84,70,87,128,120,2,32,95,54,84,9,
-129,118,3,95,54,48,55,209,172,64,0,0,58,106,237,105,250,100,145,196,
-237,2,95,50,56,139,21,233,249,3,211,195,169,252,96,61,147,54,203,233,
-5,75,32,95,54,49,50,228,77,2,76,30,6,98,114,101,97,107,115,44,
-77,160,228,92,70,6,72,97,115,104,68,101,102,76,130,164,93,3,50,53,
-58,54,131,149,224,138,130,108,127,0,75,156,43,1,75,50,96,7,0,58,
-97,193,252,117,0,98,37,0,58,99,206,252,189,0,192,19,0,53,96,19,
-228,175,1,2,55,50,50,98,34,66,172,225,154,4,98,189,89,226,150,58,
-4,48,32,95,50,48,64,13,3,35,49,48,48,130,40,0,58,100,169,5,
-10,65,32,73,32,58,96,41,64,88,2,55,50,49,64,13,140,62,3,94,
-71,69,84,74,49,3,77,73,76,76,96,36,140,60,114,12,225,74,1,16,
-100,101,102,97,117,108,116,84,105,109,101,76,111,99,97,108,101,64,231,0,
-58,101,44,149,201,230,221,0,228,227,3,67,74,91,47,160,216,66,72,130,
-58,99,21,131,202,98,174,128,207,64,1,221,173,228,85,4,224,30,1,128,
-16,93,92,71,50,160,40,227,207,1,122,48,235,32,12,2,79,32,35,86,
-39,131,156,224,57,2,224,132,6,224,112,1,224,9,8,0,39,237,38,5,
-173,53,227,137,0,139,65,246,66,9,224,5,3,64,145,246,78,23,224,233,
-0,229,131,7,237,79,6,172,35,137,17,0,85,94,222,196,177,193,41,128,
-69,248,85,0,225,17,11,0,49,228,231,3,229,21,1,159,39,225,146,1,
-160,10,1,95,50,185,73,99,108,224,52,0,224,158,0,233,220,6,225,3,
-51,225,103,3,244,237,0,230,103,10,234,41,12,225,23,14,224,83,4,225,
-29,27,0,52,225,29,4,224,126,4,96,231,233,137,0,64,184,251,58,0,
-225,28,1,224,110,1,226,215,4,224,200,9,160,2,224,29,1,166,209,231,
-142,6,224,188,0,97,75,224,17,3,245,51,3,96,214,161,152,97,132,161,
-163,180,255,2,95,54,55,225,196,0,220,103,231,83,2,237,152,7,224,1,
-1,238,122,15,227,89,4,224,57,2,224,85,13,224,79,1,226,151,33,192,
-199,64,49,182,11,161,66,246,229,1,245,215,1,0,49,75,192,245,216,3,
-224,54,3,224,53,16,246,13,7,224,52,3,0,75,225,187,4,158,138,129,
-237,160,6,135,93,224,38,2,64,16,64,98,160,67,227,58,2,0,89,97,
-73,0,83,83,33,96,53,226,198,1,226,186,17,226,172,3,251,117,2,128,
-115,64,5,0,58,109,153,231,211,41,0,53,99,112,0,58,104,139,101,243,
-1,55,56,135,210,128,214,0,67,76,115,96,97,0,58,108,243,192,96,184,
-30,96,2,237,63,3,240,71,3,133,225,162,4,2,64,95,55,72,132,2,
-95,55,48,156,9,0,48,98,136,0,55,136,204,160,179,109,25,128,233,1,
-83,32,94,137,243,51,6,98,228,160,4,230,108,1,64,177,244,210,19,7,
-35,105,110,99,108,117,100,101,103,252,244,210,5,224,47,12,119,195,0,49,
-244,219,2,224,92,20,117,47,0,49,224,91,3,224,152,0,0,53,84,162,
-224,87,18,64,254,169,218,225,153,1,1,64,83,78,216,76,133,0,49,96,
-160,161,189,1,95,50,64,34,1,55,49,208,37,224,185,13,3,57,50,38,
-47,160,94,161,97,65,182,136,75,98,1,78,192,130,133,161,186,226,27,0,
-0,50,175,66,78,75,0,50,106,104,94,43,64,42,0,58,64,117,130,27,
-5,52,48,32,75,32,85,228,110,0,227,198,1,129,38,224,11,0,2,95,
-55,49,196,96,0,58,96,199,244,102,0,224,46,1,224,61,17,192,8,221,
-220,64,75,244,228,0,128,144,244,221,0,0,52,169,88,66,71,244,239,1,
-162,176,65,1,128,20,94,102,245,28,1,66,130,226,200,0,231,224,3,132,
-166,136,6,229,160,2,225,47,1,196,196,195,3,160,171,2,95,55,48,129,
-84,246,43,0,99,217,2,95,50,56,65,164,134,20,225,112,2,99,19,67,
-227,1,95,55,83,104,227,140,0,0,54,161,119,108,95,1,95,54,173,231,
-1,95,54,65,154,0,58,99,62,246,45,1,161,11,96,206,0,54,137,83,
-76,10,170,38,0,54,171,255,98,141,86,126,2,54,57,55,73,50,67,92,
-194,250,226,210,5,0,79,151,103,229,114,1,3,95,55,48,52,96,118,170,
-138,5,55,48,51,32,95,53,118,243,96,209,0,58,96,31,251,40,3,231,
-212,17,130,229,129,60,134,210,132,35,2,95,54,54,118,92,128,93,130,6,
-64,177,128,13,229,198,2,96,35,0,54,67,22,170,221,130,94,3,95,54,
-54,51,96,137,226,98,5,137,149,225,191,1,225,200,4,230,128,4,232,177,
-1,225,147,0,64,201,228,180,0,102,114,202,169,1,95,50,120,30,1,50,
-55,193,88,75,108,64,191,171,134,4,50,54,52,32,95,72,49,228,50,21,
-31,85,110,109,97,116,99,104,101,100,32,35,105,102,58,32,112,111,115,105,
-116,105,111,110,115,32,111,102,32,111,112,101,110,12,32,99,111,110,116,101,
-120,116,32,97,114,101,58,228,48,1,96,100,97,81,68,9,107,97,1,50,
-56,201,45,228,64,0,232,130,1,238,145,3,231,72,2,224,251,1,202,170,
-69,104,224,61,8,224,42,7,244,66,25,231,232,4,200,174,231,235,3,129,
-81,200,182,224,25,3,244,1,0,224,69,9,224,72,0,224,184,7,96,75,
-224,146,13,163,215,168,10,66,147,101,50,186,124,192,0,226,30,10,160,53,
-224,31,20,226,68,0,130,207,224,171,2,164,30,224,36,6,224,71,16,160,
-43,224,146,2,224,41,15,224,50,1,224,191,26,224,45,2,224,93,5,192,
-175,224,31,4,224,2,12,224,52,4,224,191,23,224,56,17,99,56,224,42,
-2,224,5,6,225,61,7,224,60,6,225,211,8,224,1,5,249,4,25,0,
-100,111,151,249,2,3,224,0,0,224,189,6,224,152,3,224,14,9,224,152,
-72,4,117,110,100,101,102,224,151,27,225,103,6,225,69,7,224,151,71,1,
-105,102,224,152,144,224,151,15,227,123,3,224,151,12,192,11,227,213,0,128,
-0,224,143,19,224,190,7,224,43,19,224,187,27,224,184,11,225,79,6,226,
-113,6,224,210,4,224,141,68,2,101,108,115,227,17,12,224,143,113,225,31,
-13,172,69,121,26,64,2,64,130,249,191,4,224,5,27,245,117,2,240,114,
-1,224,139,18,1,110,100,224,140,1,201,223,231,236,67,96,96,84,132,128,
-100,231,194,5,231,130,14,192,0,225,160,112,225,20,3,224,0,3,224,144,
-111,5,112,114,97,103,109,97,224,145,11,194,36,226,50,9,192,10,128,122,
-143,90,224,22,3,192,146,104,153,224,11,10,241,122,9,128,126,192,16,254,
-79,8,128,245,232,124,6,187,245,128,37,65,20,239,210,2,87,163,187,240,
-108,51,224,212,0,160,0,233,21,3,253,43,5,225,120,6,228,233,4,224,
-159,1,224,1,1,225,147,11,224,39,11,64,1,228,221,26,143,89,225,142,
-9,231,223,6,229,137,12,224,112,9,224,156,10,224,36,9,64,1,224,153,
-25,6,119,97,114,110,105,110,103,224,153,8,226,153,4,226,168,6,224,125,
-65,4,101,114,114,111,114,224,123,11,224,2,9,225,15,0,224,99,6,224,
-161,0,224,69,2,224,140,11,228,220,29,80,165,224,143,7,224,73,7,209,
-186,100,246,82,98,0,49,110,65,224,0,0,227,94,1,192,183,128,127,192,
-9,227,89,1,224,8,9,154,164,238,2,5,140,12,2,95,49,53,78,159,
-1,50,56,68,251,1,50,56,99,3,128,85,114,233,101,17,96,58,128,69,
-115,92,64,29,67,50,0,50,78,212,192,202,160,27,144,52,128,0,224,219,
-1,225,219,6,225,240,2,228,24,1,224,38,8,224,19,10,224,16,7,224,
-13,0,110,180,142,148,128,28,128,20,70,27,0,51,89,135,6,95,51,53,
-50,32,95,52,174,204,96,0,227,233,3,226,26,34,237,63,9,64,1,237,
-10,14,0,83,64,71,225,98,0,225,211,0,65,45,238,203,2,192,0,225,
-225,12,231,82,4,231,8,3,193,167,252,208,1,1,50,53,64,27,65,5,
-2,95,52,57,134,215,128,30,231,43,3,231,45,19,0,87,131,181,20,58,
-32,117,110,107,110,111,119,110,32,100,105,114,101,99,116,105,118,101,32,35,
-162,190,98,23,148,41,224,73,19,79,55,2,105,110,32,231,106,11,224,237,
-9,166,49,98,12,224,207,0,226,84,12,226,56,9,129,246,2,95,52,57,
-65,203,225,210,6,227,46,255,224,16,0,227,46,15,128,31,160,45,227,48,
-11,119,11,1,95,50,92,107,160,0,225,106,3,128,207,183,102,226,30,59,
-231,87,2,160,240,130,232,65,132,128,5,226,224,4,231,205,27,96,31,226,
-101,3,163,81,227,78,1,128,197,227,42,3,226,233,60,224,160,31,64,0,
-232,71,7,161,232,233,24,16,118,235,247,252,1,226,41,1,226,228,0,129,
-248,224,131,1,96,50,1,53,51,120,90,84,139,0,54,94,144,1,95,50,
-99,61,64,142,193,86,224,98,0,0,85,161,101,192,86,228,145,3,121,184,
-224,193,1,128,145,64,5,149,79,247,183,27,225,54,3,1,49,52,73,173,
-0,55,225,59,0,224,225,0,117,47,181,142,224,92,2,117,174,163,249,224,
-0,0,224,234,1,160,9,161,110,137,255,224,172,6,225,150,16,99,159,85,
-72,226,242,2,224,49,21,3,95,54,50,56,117,104,192,106,224,49,35,128,
-16,64,0,226,244,1,229,244,3,225,206,1,225,238,3,193,146,2,95,54,
-54,96,170,193,8,129,172,227,208,1,85,92,224,119,2,160,34,100,206,130,
-16,224,41,15,64,21,65,255,0,67,86,40,252,177,0,224,59,37,96,180,
-102,236,224,70,6,192,55,98,160,161,33,128,13,128,6,64,102,160,86,2,
-95,54,54,97,251,225,197,13,228,212,2,197,10,226,172,2,224,28,8,224,
-15,5,224,64,3,64,26,224,33,5,87,188,169,132,196,63,64,18,133,199,
-129,152,228,33,0,226,237,9,0,79,247,210,4,0,66,67,119,90,62,224,
-31,3,1,52,57,160,31,166,53,96,0,224,230,8,76,241,136,42,2,95,
-50,52,64,39,224,68,2,128,93,134,160,70,76,96,136,226,89,7,253,3,
-0,194,215,192,17,224,91,5,98,235,249,47,0,224,116,24,224,58,17,193,
-61,162,37,128,217,202,223,96,20,228,160,2,162,70,192,15,162,76,224,14,
-1,71,117,135,142,165,32,193,216,134,110,192,107,97,97,135,157,1,54,57,
-96,134,129,10,0,57,230,150,0,0,52,123,237,162,165,224,203,6,192,46,
-231,177,5,0,55,71,9,224,30,2,160,159,128,19,224,14,5,160,184,162,
-84,160,9,96,8,167,105,121,100,228,170,1,0,66,254,239,1,249,173,13,
-64,32,0,53,92,197,1,56,53,255,167,0,110,202,1,64,35,157,180,64,
-0,225,130,1,64,252,1,56,56,228,6,1,223,7,2,95,50,57,154,198,
-237,106,10,97,160,97,91,1,95,50,65,56,192,84,226,234,0,231,48,12,
-233,156,16,225,17,6,192,100,230,139,14,165,16,232,135,0,226,238,1,229,
-210,1,225,115,2,225,248,1,64,135,203,132,235,184,4,139,175,224,49,4,
-225,146,0,224,77,5,160,31,248,195,4,224,30,6,224,114,1,248,196,41,
-224,156,5,229,204,7,224,2,1,249,139,10,226,93,0,224,90,10,138,141,
-224,90,0,239,221,9,224,32,3,224,206,8,140,138,0,50,71,239,192,209,
-110,175,240,78,3,246,129,1,224,43,26,96,39,224,30,17,192,73,224,0,
-1,228,0,2,237,99,7,224,166,2,224,195,1,224,189,5,224,105,15,244,
-195,6,225,21,6,224,78,42,245,162,4,224,173,5,224,77,1,224,74,1,
-0,67,224,74,17,243,188,5,128,46,99,45,101,160,128,19,226,50,1,96,
-151,96,13,128,22,238,29,1,224,57,2,125,236,128,34,66,61,192,122,93,
-244,0,64,132,56,96,80,97,103,128,101,64,34,253,199,0,128,34,200,213,
-232,229,10,245,105,109,224,224,3,113,79,225,110,0,160,115,0,54,224,234,
-13,225,12,24,161,104,196,90,231,24,0,160,0,225,43,1,239,102,4,233,
-119,36,65,37,68,175,237,29,4,194,26,224,10,2,232,92,4,194,72,227,
-4,1,233,1,0,224,240,19,230,226,1,137,81,224,223,7,224,122,1,161,
-77,235,184,4,226,15,0,198,120,192,85,232,12,12,231,243,13,228,152,5,
-99,189,239,199,4,226,190,2,231,185,2,97,65,231,137,33,227,95,6,224,
-16,4,128,14,225,95,6,166,79,231,107,85,231,73,0,231,74,10,231,71,
-11,231,70,5,161,30,241,170,0,71,58,225,0,27,224,239,19,231,63,5,
-231,56,3,96,13,3,49,57,54,32,238,167,2,31,51,52,38,99,112,112,
-104,115,115,114,99,47,109,97,108,99,111,108,109,45,119,97,108,108,97,99,
-101,45,117,110,105,118,4,101,114,115,101,47,96,33,30,45,49,46,50,48,
-46,57,47,76,97,110,103,117,97,103,101,47,80,114,101,112,114,111,99,101,
-115,115,111,114,47,67,64,34,64,5,0,73,69,227,2,46,104,115,64,89,
-4,44,54,56,58,53,131,238,0,58,96,145,1,10,65,140,0,64,174,87,
-158,132,228,196,239,65,76,110,131,226,140,2,194,142,0,58,97,186,3,10,
-65,32,80,83,46,98,177,164,11,231,135,3,97,151,65,98,130,188,201,170,
-160,15,1,35,57,65,20,192,12,96,43,233,204,0,0,58,96,8,96,159,
-239,63,4,2,95,50,56,65,187,64,176,228,163,0,65,69,107,223,0,58,
-98,189,5,10,65,32,85,32,90,224,1,8,225,183,3,0,58,106,124,96,
-93,99,0,65,225,5,54,48,55,32,64,73,64,36,129,5,162,51,160,192,
-66,59,2,54,57,50,69,166,78,231,139,252,2,95,54,57,110,244,0,57,
-64,132,3,67,39,32,79,65,59,0,80,64,40,128,163,240,143,21,0,35,
-159,124,0,32,129,144,208,198,0,79,129,9,160,173,96,6,97,155,132,140,
-128,171,128,204,64,3,98,156,96,180,226,74,12,97,244,2,48,58,48,161,
-243,109,19,1,10,65,64,160,0,53,224,41,2,3,112,114,101,68,96,138,
-0,100,64,39,0,58,96,189,1,10,65,103,51,65,123,98,4,1,95,53,
-73,83,97,251,96,4,138,185,0,58,64,72,129,112,4,75,50,32,75,52,
-225,106,6,0,58,97,25,128,30,0,51,192,30,160,28,0,58,97,59,161,
-130,64,1,194,72,64,0,227,87,1,168,122,227,201,6,129,161,224,25,15,
-233,96,2,224,29,13,233,129,3,224,33,16,224,36,3,224,37,20,224,40,
-4,224,41,23,224,44,5,224,45,26,224,48,6,224,49,29,224,52,7,231,
-67,3,224,38,4,233,55,6,237,245,0,224,0,1,193,138,224,55,5,224,
-103,14,224,40,19,224,43,6,224,83,30,224,75,16,224,41,50,192,232,199,
-213,165,174,244,188,6,224,5,9,236,9,0,225,21,3,192,1,0,89,224,
-96,1,224,28,9,224,32,6,224,172,14,230,177,1,224,42,2,224,74,11,
-172,149,192,155,233,92,1,192,5,224,105,2,192,67,230,232,5,192,250,64,
-25,245,191,1,160,13,224,2,4,224,242,16,165,238,5,67,32,60,32,64,
-35,237,111,3,224,67,9,128,218,192,34,224,70,5,160,203,128,70,238,222,
-1,224,37,6,148,224,224,22,4,76,29,192,19,224,103,3,238,96,6,224,
-13,5,97,94,230,162,9,64,0,65,32,0,85,82,74,105,171,102,146,82,
-24,224,27,0,129,66,64,74,234,127,2,240,243,0,69,245,0,54,104,186,
-235,47,0,225,50,9,224,197,0,224,25,4,0,82,224,198,0,227,144,7,
-128,24,224,41,1,225,247,1,224,195,5,0,52,243,175,5,160,44,225,187,
-0,224,64,4,96,196,239,45,5,106,68,128,0,224,232,16,192,234,150,77,
-230,215,16,1,32,32,237,150,2,225,19,11,224,157,1,128,13,235,81,1,
-65,123,182,86,135,241,136,110,224,0,4,224,201,1,128,1,239,96,9,226,
-104,17,128,28,162,104,233,129,2,224,35,3,225,31,1,3,67,32,61,61,
-224,39,17,193,200,225,178,8,229,61,0,224,81,1,252,118,0,224,100,4,
-64,44,96,42,160,173,160,26,96,17,90,167,173,41,225,4,1,192,106,240,
-168,8,192,36,64,61,76,78,1,95,50,105,86,226,147,15,224,78,0,224,
-1,17,226,166,1,224,43,21,194,184,224,37,9,225,151,10,225,49,0,224,
-1,1,226,206,15,235,205,1,224,47,6,253,192,13,226,212,13,242,2,3,
-196,251,227,193,20,233,246,2,130,140,65,58,193,59,225,66,8,162,185,229,
-80,4,224,239,47,227,127,2,224,239,27,194,102,227,196,6,228,3,1,236,
-212,8,226,149,0,227,222,16,228,199,4,67,133,227,210,14,224,93,9,224,
-248,121,224,68,2,224,248,54,65,227,224,248,17,231,170,6,224,244,11,226,
-24,10,192,2,128,40,224,38,0,231,235,0,224,73,16,224,70,27,160,108,
-224,65,11,224,62,4,224,53,2,193,97,225,20,2,226,238,2,228,116,10,
-225,56,14,227,61,7,224,88,5,160,220,64,21,0,85,97,176,0,54,81,
-32,2,95,54,55,98,165,0,67,77,41,247,210,2,224,100,71,110,19,224,
-100,5,212,214,224,100,26,225,57,2,224,46,0,230,253,3,224,88,5,229,
-100,17,226,47,3,133,229,225,172,0,64,14,161,123,65,151,129,155,192,44,
-201,151,155,212,109,129,145,229,128,96,237,65,0,129,11,237,36,10,192,64,
-161,30,129,226,242,217,4,224,38,0,144,160,168,238,165,119,224,96,0,240,
-155,85,7,84,111,107,101,110,105,115,101,208,155,5,50,49,53,58,49,51,
-245,137,7,224,1,5,235,67,3,224,31,11,224,35,7,225,132,6,224,2,
-2,235,107,12,224,83,14,235,110,39,161,124,227,190,6,64,43,235,114,67,
-222,191,64,0,228,71,10,224,74,35,235,189,255,235,189,255,96,0,235,189,
-65,226,80,48,151,201,224,37,10,226,80,2,224,86,6,235,126,8,96,78,
-225,139,8,232,74,13,0,49,91,75,224,112,8,0,83,183,165,225,138,26,
-227,72,1,160,38,64,15,192,8,64,48,152,97,87,103,1,55,53,96,61,
-247,229,9,225,156,15,1,45,123,232,142,8,224,251,13,225,43,4,233,142,
-15,194,130,103,49,247,110,6,235,126,2,226,145,22,233,145,14,225,6,7,
-96,42,225,69,32,1,49,50,224,63,1,226,209,55,1,125,45,226,209,22,
-226,42,2,199,18,226,176,9,128,21,224,183,4,227,201,13,224,248,11,227,
-201,33,224,248,3,192,59,226,63,23,252,53,7,225,11,31,192,96,195,136,
-224,100,3,160,159,225,93,0,96,107,234,26,7,224,67,1,192,1,229,229,
-62,135,153,229,229,13,224,47,2,228,122,6,102,123,224,161,5,226,59,16,
-229,246,21,224,0,1,224,199,1,160,151,96,73,240,115,21,224,52,6,231,
-104,6,240,78,2,163,191,232,17,2,224,76,1,229,29,29,237,240,2,224,
-37,5,225,136,10,226,220,2,231,225,10,128,24,224,102,8,226,223,8,208,
-88,224,90,6,194,223,225,19,7,224,198,1,224,45,1,225,16,2,224,89,
-2,224,90,12,201,162,129,34,155,71,224,50,2,224,44,3,227,39,10,64,
-99,1,95,54,127,155,64,14,162,24,250,119,2,224,63,22,98,131,192,63,
-224,54,2,224,65,8,225,80,10,160,246,224,241,5,64,144,224,194,11,160,
-129,227,136,29,98,184,226,230,25,225,53,0,64,1,162,238,128,39,224,60,
-6,229,18,21,64,1,242,234,213,242,236,9,224,46,18,242,239,5,224,40,
-6,228,22,10,225,57,0,224,1,1,227,89,15,242,242,155,224,240,9,224,
-237,10,224,163,4,231,36,75,224,62,2,226,249,11,229,224,9,70,26,233,
-69,2,231,4,4,64,0,224,112,1,64,1,224,213,47,234,58,13,224,214,
-83,0,53,137,168,234,32,17,99,39,238,133,11,226,164,47,244,167,166,224,
-94,8,224,252,122,224,68,2,224,252,54,244,171,21,240,247,7,224,248,6,
-232,174,1,226,255,7,224,189,0,103,63,228,92,3,237,140,2,224,53,4,
-225,83,13,224,31,1,225,80,15,0,51,234,74,1,224,44,2,227,48,32,
-224,62,2,225,48,30,0,57,225,48,3,1,39,39,225,48,5,224,110,1,
-224,207,68,0,83,226,99,12,2,66,32,90,226,51,11,165,141,224,230,4,
-232,104,3,227,21,30,1,55,32,128,139,0,79,128,7,244,169,0,128,0,
-224,155,2,225,184,87,135,194,237,246,11,192,5,225,211,17,245,176,67,1,
-66,32,161,10,149,186,225,23,9,232,61,17,227,70,73,237,64,4,224,95,
-22,228,89,0,160,95,228,208,8,96,2,160,101,224,83,3,203,58,224,80,
-18,224,77,30,224,73,25,224,70,27,193,243,224,65,10,224,62,4,224,53,
-2,162,42,64,12,194,47,248,167,219,224,100,92,249,12,99,224,206,16,229,
-156,8,227,151,9,224,59,29,100,240,64,229,64,64,0,52,228,240,8,227,
-100,6,96,28,226,141,0,64,14,162,92,66,120,130,124,192,44,205,66,249,
-136,230,4,57,52,58,49,49,231,29,1,236,21,5,224,239,3,192,1,249,
-113,1,224,25,7,192,1,229,40,3,224,37,15,224,35,4,224,30,10,97,
-44,249,220,4,224,36,9,192,1,250,3,5,229,101,7,224,2,0,132,110,
-160,11,224,162,26,225,201,2,167,25,224,5,8,224,68,3,160,73,227,66,
-2,163,72,229,75,6,241,152,1,224,1,1,229,110,16,224,156,16,165,59,
-242,27,8,64,0,230,18,3,229,203,10,230,201,5,224,95,27,250,124,3,
-224,95,0,239,175,4,128,5,224,106,20,224,97,20,234,110,3,224,38,8,
-99,51,5,67,32,67,32,61,61,224,42,20,249,180,15,243,14,3,240,217,
-9,240,215,6,240,213,8,228,46,0,236,36,9,249,202,69,1,39,32,246,
-178,22,242,106,6,96,12,230,65,1,98,170,133,166,213,195,65,169,245,197,
-7,225,240,13,241,23,3,226,59,2,164,171,128,1,225,52,10,225,104,7,
-242,19,1,224,102,9,229,47,0,224,28,11,235,33,0,224,79,6,192,107,
-66,96,224,31,9,166,217,230,173,0,235,76,17,228,21,10,225,247,8,193,
-68,202,194,162,43,193,89,160,32,128,73,246,135,2,225,172,0,184,156,229,
-210,2,229,211,1,224,105,5,247,40,1,226,139,64,245,172,22,224,64,4,
-225,43,10,242,145,2,228,194,0,209,78,224,224,19,246,7,6,128,191,224,
-126,1,224,13,4,129,71,224,117,12,64,113,225,80,2,253,207,3,234,4,
-1,128,0,224,201,1,64,1,246,252,255,246,252,221,226,154,0,131,137,229,
-46,9,96,207,246,97,8,224,0,1,192,166,160,170,164,60,167,164,227,139,
-13,224,52,5,194,212,224,22,9,193,234,249,248,6,224,37,5,226,174,10,
-64,1,240,31,4,224,134,4,225,39,0,160,25,64,220,226,195,6,128,21,
-247,117,39,230,114,21,224,0,0,224,167,5,224,1,9,247,79,8,238,32,
-9,161,90,224,166,0,225,99,12,194,90,225,145,5,224,42,11,224,123,1,
-227,141,16,231,209,50,231,146,1,224,103,11,224,64,4,229,69,10,232,16,
-2,229,67,3,181,187,253,166,2,230,21,13,224,83,13,224,146,11,0,83,
-255,94,32,232,100,13,133,214,254,53,10,245,86,9,129,151,226,97,2,96,
-109,199,16,232,21,14,224,149,3,232,18,1,224,21,1,96,25,225,253,2,
-224,47,3,192,72,170,85,231,248,10,226,39,5,224,244,10,231,249,19,230,
-162,5,195,62,231,246,6,224,163,1,160,16,192,58,128,148,132,193,249,66,
-7,128,56,99,100,225,91,2,0,79,135,44,225,241,2,232,20,4,225,20,
-6,244,67,3,193,123,200,226,226,226,19,129,37,224,69,3,224,92,6,232,
-55,102,228,82,4,64,62,225,22,25,192,69,233,212,4,224,241,17,96,144,
-224,165,8,194,172,251,110,15,228,41,6,224,67,17,103,83,224,67,2,247,
-16,2,224,130,5,225,19,9,245,49,4,225,19,38,241,18,6,224,63,41,
-241,17,9,226,186,5,224,182,3,224,202,0,98,61,192,212,230,37,0,224,
-16,0,1,54,55,169,255,229,218,0,2,95,54,57,102,227,96,30,253,150,
-0,64,0,230,79,17,225,50,5,64,11,225,140,6,228,14,0,227,173,1,
-224,151,1,128,16,177,84,128,5,104,101,224,89,1,96,37,226,184,2,224,
-173,1,194,72,231,32,16,192,93,244,23,27,227,189,2,224,119,1,128,1,
-254,49,1,224,82,0,224,226,6,227,218,1,128,211,231,42,5,162,118,224,
-67,1,224,61,7,224,64,2,224,61,22,163,68,224,59,11,224,55,4,224,
-52,2,225,17,4,128,158,245,130,16,224,243,1,229,33,2,229,30,4,225,
-80,14,244,158,10,224,76,71,192,223,96,51,226,142,9,160,217,128,204,224,
-60,6,128,0,226,126,1,226,135,4,224,169,6,165,80,105,244,140,189,128,
-98,237,242,14,128,52,230,241,1,224,100,8,228,223,12,226,235,0,96,255,
-224,56,13,224,59,1,225,73,9,64,6,237,176,4,244,100,110,5,49,55,
-49,58,49,50,232,90,4,108,182,229,101,1,1,50,50,97,165,233,33,5,
-196,140,196,98,0,73,129,240,0,83,165,110,224,51,20,100,183,0,51,224,
-59,1,64,40,64,7,0,83,85,216,95,190,3,95,52,54,48,98,78,2,
-50,50,55,204,165,225,16,1,1,95,96,160,173,224,47,3,0,49,224,47,
-17,0,39,224,48,0,224,33,15,7,40,41,44,91,93,59,123,125,128,38,
-224,37,15,3,32,92,57,38,224,33,21,22,58,33,35,36,37,38,42,43,
-46,47,60,61,62,63,64,92,57,50,38,94,124,45,126,192,52,193,28,230,
-250,2,83,58,224,20,4,83,207,143,96,128,11,231,34,0,1,58,54,65,
-44,1,10,65,162,244,130,132,98,228,163,5,130,245,67,63,79,169,162,112,
-4,80,32,95,49,56,138,103,226,148,1,224,30,1,225,231,20,224,215,1,
-3,108,105,110,101,226,33,0,224,71,50,5,112,114,97,103,109,97,224,73,
-0,232,80,0,128,208,224,68,30,2,100,101,102,224,142,1,132,83,193,67,
-224,52,17,4,117,110,100,101,102,128,51,193,16,64,183,2,95,49,56,68,
-24,1,95,54,97,40,227,118,83,4,72,97,115,104,68,96,185,195,120,3,
-56,56,58,53,96,145,0,90,64,191,4,54,55,57,32,64,108,139,192,0,
-196,47,160,163,128,235,160,2,8,95,50,51,57,32,95,54,56,50,64,238,
-0,56,97,239,162,9,97,252,193,249,224,208,102,0,57,160,208,233,203,3,
-226,35,1,200,0,160,13,165,28,225,186,15,3,79,32,35,52,234,132,4,
-238,170,0,130,222,225,10,0,120,97,162,131,199,87,76,47,97,58,0,50,
-103,22,129,69,1,53,51,233,144,3,225,23,1,16,105,110,99,111,109,112,
-108,101,116,101,32,109,97,99,114,111,32,98,96,8,105,116,105,111,110,58,
-92,49,48,163,242,224,68,22,2,32,32,35,130,151,0,32,196,106,0,39,
-160,46,100,245,224,54,5,224,219,4,3,95,50,57,48,224,28,7,234,41,
-8,224,252,0,129,85,233,40,4,160,251,227,58,17,224,81,9,235,199,8,
-227,202,31,64,74,0,49,224,74,2,226,144,1,161,148,64,65,232,143,5,
-228,47,10,228,169,0,161,38,1,54,56,72,52,198,12,244,36,0,0,95,
-138,200,187,241,130,228,200,45,102,110,192,76,195,13,0,53,227,13,2,128,
-204,192,25,111,83,96,5,0,54,165,13,192,31,5,55,56,32,95,53,56,
-140,65,132,76,232,46,0,102,167,171,67,128,8,5,53,32,95,50,56,51,
-64,9,96,48,235,94,5,128,147,64,40,0,57,64,136,0,54,64,87,0,
-53,229,222,5,197,204,1,95,50,163,210,128,100,99,224,97,7,0,52,226,
-46,11,226,101,1,0,35,229,64,3,224,68,2,224,67,4,226,114,12,224,
-67,2,229,204,1,224,65,2,64,187,96,191,65,21,67,82,129,31,68,68,
-169,157,227,210,12,130,43,238,185,2,226,48,10,1,51,53,234,81,9,196,
-11,196,5,224,76,1,137,47,234,229,1,2,95,49,53,65,208,199,113,96,
-95,224,33,1,130,103,74,73,225,80,1,235,95,3,248,27,1,224,167,22,
-225,31,2,0,35,230,159,1,195,105,128,108,228,209,22,242,35,7,224,98,
-28,192,59,176,226,229,226,1,141,16,225,6,8,160,245,64,12,226,138,6,
-224,12,2,128,0,164,45,224,53,0,163,216,225,74,8,225,73,8,225,97,
-14,0,57,230,156,3,1,64,89,96,181,227,43,1,229,207,2,224,138,6,
-0,58,110,144,2,10,65,32,106,224,0,58,96,71,3,10,65,32,75,128,
-13,64,109,96,13,0,65,96,13,0,56,96,13,4,95,54,56,48,32,99,
-254,224,4,1,0,58,99,185,64,28,4,50,52,48,32,75,75,230,10,32,
-67,32,80,32,75,32,95,54,49,50,230,231,2,2,114,101,112,70,210,8,
-109,101,110,116,44,32,97,116,32,230,247,88,3,50,53,58,54,129,208,224,
-139,131,2,64,75,50,224,141,131,0,90,140,249,97,217,96,157,0,52,224,
-157,131,66,93,0,54,226,93,15,69,81,97,218,134,38,64,28,137,174,96,
-12,96,214,64,17,160,216,96,18,141,229,224,26,1,248,117,0,0,58,102,
-165,99,12,120,91,224,4,1,151,174,0,58,96,100,1,10,65,224,29,7,
-224,34,5,0,51,227,8,28,69,232,5,98,114,101,97,107,115,227,7,120,
-224,138,113,1,64,90,225,172,0,97,67,193,167,65,163,89,219,225,156,0,
-0,58,107,77,97,121,192,27,165,156,224,10,24,232,216,1,0,32,83,101,
-225,233,0,132,246,192,44,224,7,11,224,70,2,224,59,2,0,58,96,163,
-226,4,6,224,60,5,128,41,0,58,96,217,98,77,0,90,121,239,0,58,
-116,15,96,57,2,80,32,35,72,156,0,85,69,57,91,176,1,10,65,64,
-18,1,51,32,71,230,1,58,54,88,101,192,38,66,213,128,38,130,154,65,
-189,70,176,0,58,113,198,226,171,1,160,96,130,124,224,144,11,0,58,115,
-149,160,28,1,80,32,155,107,0,80,96,72,129,10,3,80,32,35,53,192,
-128,128,225,0,80,121,127,96,17,82,11,128,17,0,54,192,17,128,203,113,
-155,234,66,1,112,157,145,126,2,95,54,54,73,106,1,53,56,73,196,0,
-57,68,81,1,48,53,97,24,64,128,170,131,129,41,144,97,2,58,54,54,
-129,9,128,74,80,63,224,65,14,0,66,137,189,64,118,74,121,70,213,1,
-51,52,231,51,0,1,95,53,170,101,96,86,2,58,54,54,193,77,0,66,
-169,59,238,215,4,158,5,96,8,153,60,2,95,54,54,111,218,233,0,6,
-200,92,248,87,8,128,207,96,8,4,95,54,54,32,95,196,105,224,60,6,
-246,54,2,107,20,202,232,96,195,64,230,6,64,95,49,51,49,32,95,231,
-224,4,128,54,2,95,54,54,167,174,224,20,0,160,89,192,70,224,44,2,
-165,200,192,49,64,255,130,56,226,19,3,194,206,0,58,96,39,194,203,98,
-102,64,252,160,45,107,86,1,51,48,72,204,158,84,193,56,225,125,7,233,
-81,1,225,125,1,96,37,0,55,225,255,12,64,101,194,138,129,235,64,44,
-77,116,2,95,54,51,97,123,201,173,116,184,96,138,238,43,27,31,67,97,
-110,110,111,116,32,101,120,112,97,110,100,32,35,105,102,32,100,105,114,101,
-99,116,105,118,101,32,105,110,32,102,1,105,108,238,0,4,206,2,3,95,
-49,52,48,73,23,139,252,224,93,16,110,110,1,32,32,251,232,3,224,166,
-1,2,66,32,95,64,67,97,116,97,238,97,153,64,183,0,53,64,23,67,
-235,3,95,50,50,53,225,82,3,201,130,128,222,3,54,52,32,95,78,7,
-224,227,23,31,87,97,114,110,105,110,103,58,32,116,114,97,105,108,105,110,
-103,32,99,104,97,114,97,99,116,101,114,115,32,97,102,116,1,101,114,64,
-248,239,21,29,143,80,97,46,3,115,105,111,110,225,35,59,225,28,2,130,
-138,97,215,2,95,54,53,98,27,225,214,52,4,112,97,114,115,101,225,213,
-91,227,184,3,225,213,24,64,20,171,240,225,222,11,1,95,54,85,43,225,
-229,116,225,45,68,225,223,4,2,95,49,50,193,29,64,0,2,58,54,54,
-134,72,225,5,1,96,8,207,95,224,81,12,1,47,47,128,81,175,191,129,
-53,0,58,97,53,64,73,1,49,49,66,65,68,70,1,54,53,143,66,224,
-17,1,5,51,50,50,32,95,53,96,89,0,48,192,19,2,53,53,52,68,
-119,0,48,232,221,2,1,124,124,192,97,4,55,32,95,53,55,79,249,101,
-224,128,43,162,153,225,161,0,86,55,64,86,191,254,1,95,50,64,100,118,
-198,96,151,64,45,224,151,7,130,18,224,151,40,0,38,178,187,224,151,15,
-240,62,1,224,151,16,142,118,96,151,173,154,1,51,49,64,103,96,123,224,
-10,13,224,145,9,2,79,32,35,69,116,178,239,224,198,1,224,150,7,96,
-232,96,233,224,135,0,129,229,224,54,5,2,54,53,53,225,15,6,0,54,
-96,165,130,107,224,38,5,128,21,224,82,4,104,236,96,0,224,44,7,247,
-140,1,0,52,120,85,6,49,51,50,32,95,52,51,96,170,1,48,48,104,
-169,194,147,128,53,0,49,134,75,224,17,3,128,116,102,164,64,92,224,221,
-0,194,6,0,58,96,228,225,72,28,225,94,31,225,240,1,1,62,61,161,
-240,224,144,1,2,52,49,53,64,195,130,93,225,155,13,71,41,193,155,224,
-200,1,1,54,48,224,55,1,224,117,21,0,60,224,117,9,1,55,55,224,
-60,21,64,117,245,1,1,224,55,1,72,221,224,116,29,0,61,224,116,9,
-225,185,1,224,61,24,0,33,224,61,9,105,223,192,61,0,58,98,81,225,
-165,6,226,45,3,0,51,138,61,224,29,1,226,144,7,68,101,226,144,38,
-227,126,5,98,63,128,50,0,58,96,6,224,141,6,225,84,12,0,52,227,
-102,2,224,217,0,73,24,98,197,225,139,16,0,52,243,162,0,226,220,4,
-0,49,224,55,1,0,58,96,209,225,16,17,1,51,56,225,16,23,70,202,
-225,16,8,97,109,225,16,37,64,50,0,58,96,6,227,68,17,224,228,13,
-226,230,11,130,229,225,27,20,0,55,224,54,11,118,86,96,230,224,56,16,
-64,85,225,84,9,1,50,54,224,56,1,0,58,97,21,101,236,1,50,49,
-85,107,132,118,128,143,1,95,54,136,214,64,42,2,95,54,52,96,251,96,
-11,1,49,50,101,188,160,11,72,17,160,35,0,53,104,21,0,48,81,246,
-96,17,109,67,64,9,107,6,1,83,32,85,223,238,76,0,0,80,137,25,
-227,18,1,12,73,110,116,101,103,101,114,58,32,100,105,118,105,105,172,3,
-98,121,32,48,232,0,0,206,136,108,195,64,64,83,252,122,99,70,55,0,
-57,255,199,1,224,17,9,128,64,238,46,5,136,25,248,27,1,108,248,248,
-23,0,192,16,184,247,184,244,191,75,130,46,105,249,84,105,197,178,78,98,
-251,64,2,128,96,96,51,1,95,54,65,250,64,6,97,231,128,23,64,96,
-173,26,1,52,56,76,152,0,65,64,27,2,95,54,52,134,239,233,161,2,
-0,39,192,5,160,71,184,38,154,99,136,219,0,85,223,186,96,56,2,95,
-54,52,64,252,88,5,104,117,249,9,0,64,0,0,58,97,166,1,10,65,
-160,212,64,69,2,95,52,48,127,72,1,51,54,65,176,64,59,253,229,3,
-64,9,0,89,161,114,224,19,0,238,80,0,64,63,2,67,32,79,247,97,
-1,247,81,5,141,174,129,45,236,77,6,193,99,160,98,118,23,98,157,1,
-50,48,165,65,129,30,143,69,96,28,73,191,192,28,96,252,68,89,110,77,
-82,228,0,48,160,11,0,95,185,97,2,64,95,51,150,50,185,38,130,13,
-0,58,97,110,141,152,224,208,1,207,142,174,197,207,11,224,7,2,65,231,
-0,52,119,81,1,52,51,105,193,129,224,0,80,97,150,136,61,96,6,193,
-158,96,26,78,96,64,21,64,59,1,48,50,96,59,186,70,64,32,160,49,
-96,28,194,55,96,58,0,39,160,46,96,26,186,200,251,39,1,226,147,0,
-188,121,239,174,5,243,247,1,64,69,95,200,2,95,52,50,192,93,161,119,
-161,122,225,226,0,96,17,64,87,161,190,162,150,236,20,1,66,196,128,163,
-128,220,160,12,65,117,128,37,64,253,98,110,155,23,224,197,16,64,39,64,
-48,192,243,225,16,3,138,1,227,188,0,204,120,65,62,64,74,1,49,49,
-128,8,240,66,1,98,225,113,228,99,118,1,67,39,66,135,131,65,162,141,
-224,78,4,224,13,4,0,58,99,140,113,238,228,135,6,7,108,97,115,116,
-58,32,91,93,100,121,129,41,2,85,32,64,82,224,227,156,0,0,58,96,
-8,101,55,224,81,0,0,79,114,238,64,119,0,58,97,10,227,66,0,133,
-23,0,75,98,121,134,194,99,235,0,58,97,252,176,134,70,110,196,121,227,
-50,1,114,57,98,40,1,51,57,64,120,2,95,52,48,141,113,128,14,0,
-58,100,14,160,103,129,248,5,95,50,48,49,32,64,128,93,133,119,224,27,
-7,128,135,132,1,3,85,32,75,51,115,185,121,24,128,216,0,51,227,253,
-0,206,8,75,35,96,247,195,10,154,117,250,229,0,162,65,66,61,250,223,
-2,109,14,0,35,67,106,163,226,155,10,192,225,252,149,4,0,35,67,217,
-64,39,4,85,32,95,54,51,106,46,163,193,162,126,224,50,10,224,89,0,
-154,185,224,89,16,66,53,192,89,105,219,224,89,0,128,19,106,39,196,47,
-135,61,83,76,163,27,0,82,68,112,203,120,84,225,129,39,0,58,104,110,
-116,25,64,216,1,95,54,68,17,64,120,99,110,96,49,157,103,68,115,103,
-75,0,53,84,110,0,58,64,110,224,54,21,128,213,1,95,53,134,201,192,
-53,130,108,224,108,18,180,12,0,53,224,108,5,243,20,1,101,188,251,44,
-2,162,87,128,1,118,1,128,16,255,151,3,96,253,224,47,1,231,24,0,
-134,14,197,233,224,2,1,212,61,224,91,4,193,249,224,22,0,164,25,128,
-98,229,111,0,0,64,156,230,192,57,133,63,224,117,0,230,77,4,224,162,
-0,69,252,130,90,105,69,96,61,64,27,1,95,51,69,255,67,214,230,42,
-1,160,171,1,79,32,116,19,97,196,225,65,5,197,32,0,58,97,93,135,
-29,234,75,6,233,222,11,0,54,157,98,233,93,1,239,254,0,163,80,234,
-110,4,0,53,70,162,0,53,84,142,1,95,53,80,126,0,54,174,90,64,
-220,238,139,7,162,210,3,95,53,53,57,160,51,101,33,0,52,64,13,98,
-251,133,25,69,80,204,174,101,46,192,108,64,23,0,50,129,55,224,90,57,
-0,58,96,8,129,21,224,209,6,98,121,225,253,1,98,68,233,18,0,149,
-47,229,90,1,0,100,121,35,0,100,241,156,0,96,53,225,104,5,194,2,
-224,100,3,75,119,240,65,8,93,227,161,75,225,86,5,73,150,113,220,170,
-161,241,145,10,1,44,41,209,227,235,105,5,0,52,232,198,1,96,137,162,
-164,225,85,2,161,58,69,26,1,95,52,69,251,0,54,70,141,204,34,132,
-52,245,233,6,0,90,107,88,96,174,73,90,236,84,5,96,0,227,103,2,
-225,16,10,224,18,10,225,32,7,228,182,1,66,215,165,6,233,147,0,224,
-45,6,97,73,77,76,129,88,224,70,12,64,194,96,34,224,171,7,224,93,
-9,224,189,7,230,14,13,98,9,225,139,12,226,19,5,230,42,0,132,2,
-0,67,138,160,129,87,229,225,0,96,101,105,241,102,150,203,136,197,107,224,
-179,0,65,210,0,56,237,3,9,225,168,0,224,5,3,139,10,0,75,128,
-45,94,185,224,69,13,1,64,75,64,103,224,26,3,0,57,224,26,1,0,
-52,224,26,16,72,122,0,54,232,99,2,252,127,70,7,67,112,112,73,102,
-100,101,102,252,125,0,4,51,56,58,49,50,161,82,231,220,0,165,169,129,
-79,234,235,1,160,13,64,10,225,83,0,107,147,66,230,142,50,225,9,12,
-225,80,7,170,150,160,81,166,19,64,13,161,200,225,100,7,64,24,252,93,
-1,224,111,38,64,214,64,1,67,140,197,141,98,181,66,92,2,95,54,49,
-100,35,224,48,0,227,212,0,224,113,3,238,80,0,96,169,224,69,1,131,
-47,96,72,194,33,2,32,95,54,104,161,211,93,224,89,10,225,226,104,1,
-52,53,225,226,1,0,58,101,235,252,0,2,231,199,2,0,80,169,18,239,
-13,2,231,84,9,71,78,137,41,234,133,4,192,21,203,206,64,69,81,117,
-171,203,0,58,68,252,128,118,149,38,120,62,144,66,87,39,65,209,107,211,
-100,181,225,26,1,2,39,96,95,128,184,0,58,103,1,75,71,2,53,52,
-49,136,160,1,53,52,67,123,64,168,1,95,50,97,107,97,229,64,23,228,
-53,4,25,69,120,112,101,99,116,101,100,32,101,110,100,32,111,102,32,105,
-110,112,117,116,32,40,69,79,70,229,218,0,0,58,103,156,252,21,16,0,
-50,137,193,0,85,254,227,6,248,24,17,3,35,108,105,110,248,88,0,166,
-23,248,87,1,0,49,124,223,207,144,224,64,2,81,136,241,248,2,96,43,
-0,52,74,159,73,164,160,0,1,58,54,70,80,140,140,96,251,194,119,189,
-126,157,123,234,217,4,1,64,35,73,222,192,212,0,80,66,161,101,175,161,
-226,193,164,160,26,0,53,128,135,243,101,0,1,64,89,226,42,3,162,12,
-229,181,1,78,12,224,92,1,224,10,0,235,137,13,111,91,192,33,236,179,
-1,229,173,0,235,143,5,160,244,64,26,75,127,97,227,96,172,224,26,0,
-224,108,1,66,186,208,0,143,195,226,194,3,140,125,232,118,1,236,131,15,
-192,87,224,204,6,224,159,13,129,84,129,223,130,14,224,124,1,66,57,225,
-75,11,194,14,239,124,0,128,150,81,176,224,134,9,128,86,96,117,195,70,
-224,107,18,225,210,3,128,0,3,58,54,50,54,98,42,2,65,32,58,96,
-139,3,10,65,32,75,64,10,222,228,209,170,128,235,130,72,224,144,12,208,
-197,225,6,11,139,79,210,58,242,66,1,128,231,135,130,230,74,1,224,61,
-1,191,32,144,5,1,95,54,124,62,64,178,138,61,128,43,233,30,1,0,
-50,139,89,133,131,134,24,96,56,0,58,96,56,74,110,161,86,232,252,33,
-172,93,233,178,3,64,111,1,56,49,96,119,235,8,7,107,5,234,72,0,
-160,145,234,18,19,96,123,250,168,7,163,246,224,145,12,224,48,12,237,87,
-3,231,24,0,134,134,96,49,67,235,232,227,5,97,22,194,243,167,87,225,
-139,3,231,90,6,144,172,0,48,160,158,230,239,8,82,121,65,97,167,39,
-224,217,0,245,31,3,224,7,7,198,2,129,211,231,23,14,128,0,231,8,
-101,2,51,55,55,231,8,0,0,58,97,192,240,245,4,132,32,225,95,5,
-225,104,3,193,160,225,137,2,128,47,230,203,0,254,68,1,0,54,164,143,
-245,237,0,84,129,0,53,97,71,66,62,114,137,96,33,90,125,126,103,242,
-161,1,224,69,0,224,60,14,213,174,128,143,100,26,160,117,230,142,14,5,
-109,97,99,114,111,32,166,142,194,26,166,145,129,250,224,63,21,1,32,101,
-199,66,237,142,0,224,48,0,96,73,230,213,1,224,169,6,230,228,10,224,
-86,2,23,97,114,103,117,109,101,110,116,115,44,32,98,117,116,32,119,97,
-115,32,103,105,118,101,110,160,102,224,89,5,160,244,194,55,226,176,0,161,
-191,109,105,99,40,64,154,147,38,160,167,234,109,2,202,93,181,208,160,248,
-0,53,91,78,239,143,5,160,96,66,182,1,49,55,228,172,1,108,213,133,
-30,2,53,56,53,106,135,96,59,135,102,165,183,244,215,4,66,27,64,95,
-82,66,239,242,6,96,39,224,97,9,65,60,160,200,1,95,54,101,230,161,
-76,165,246,133,141,69,70,65,126,70,95,228,120,0,0,58,99,99,73,36,
-2,52,48,56,67,228,0,58,96,64,178,16,71,224,0,75,64,83,0,50,
-227,114,2,4,101,120,112,97,110,89,66,4,44,32,97,116,32,227,128,70,
-4,72,97,115,104,68,109,180,234,139,0,2,53,58,54,129,221,224,137,129,
-109,195,224,139,128,81,236,225,23,129,66,87,0,58,98,143,139,187,0,54,
-84,63,100,153,64,22,180,162,229,65,0,224,9,1,99,87,1,54,49,67,
-178,121,178,0,95,118,148,1,53,56,102,233,1,95,49,121,118,85,34,2,
-95,49,56,98,235,0,58,96,88,232,149,3,74,223,153,157,128,85,216,133,
-67,181,224,53,2,183,62,226,222,15,228,98,2,226,222,118,224,137,112,226,
-222,10,224,139,114,226,222,8,224,139,114,216,204,0,58,101,96,226,70,19,
-2,114,101,112,64,129,64,167,226,72,120,224,139,114,226,74,10,224,141,116,
-129,190,83,76,224,148,128,0,58,107,40,133,44,87,38,0,54,104,20,1,
-95,54,81,28,0,58,64,165,64,27,2,73,32,58,96,16,112,206,0,48,
-111,119,0,48,80,198,0,54,95,92,72,123,0,56,224,56,0,1,49,57,
-97,114,160,11,99,61,64,11,0,58,96,6,64,63,4,49,52,49,32,75,
-183,7,1,53,52,225,4,2,6,110,111,32,102,105,101,108,201,180,96,29,
-144,87,65,47,160,105,0,52,86,151,96,11,0,58,96,6,96,145,64,80,
-1,95,50,77,71,1,49,55,224,81,3,25,67,111,110,116,114,111,108,46,
-69,120,99,101,112,116,105,111,110,46,73,110,116,101,114,110,97,108,64,98,
-224,39,1,10,82,101,99,83,101,108,69,114,114,111,114,96,123,163,100,64,
-226,227,100,2,0,73,141,194,64,28,163,135,252,93,0,0,58,106,149,177,
-143,122,201,147,238,0,54,166,47,64,8,1,53,56,78,241,0,50,173,39,
-198,43,234,221,0,73,158,107,96,75,137,238,114,5,198,134,96,37,152,53,
-4,56,32,95,53,57,97,22,170,100,0,58,109,76,105,73,0,49,77,244,
-1,57,54,192,28,2,95,53,57,65,157,128,11,0,49,82,187,2,95,49,
-54,77,33,1,53,57,65,238,128,23,2,54,48,48,224,11,2,65,193,192,
-11,224,100,0,0,58,96,6,217,40,115,128,110,141,0,50,115,127,0,53,
-170,237,243,99,3,243,139,3,3,95,54,48,51,64,155,96,244,2,95,53,
-57,98,31,224,6,4,0,58,64,107,64,95,1,85,32,71,199,0,52,94,
-72,96,21,130,158,243,246,2,224,114,5,224,101,6,0,49,224,101,14,0,
-58,64,214,224,94,3,193,184,130,214,224,94,29,1,52,49,93,103,224,94,
-14,130,223,225,208,0,224,69,3,160,60,0,50,224,60,7,0,58,65,131,
-160,53,65,248,128,46,64,199,65,194,77,105,120,90,1,51,50,160,9,157,
-17,129,241,224,66,1,200,236,92,45,0,49,84,182,0,58,64,59,224,86,
-13,0,67,124,91,96,77,224,88,25,130,81,97,48,150,146,247,111,0,64,
-29,226,13,0,1,95,53,64,67,136,235,83,118,140,208,179,47,174,148,64,
-5,236,254,2,3,95,49,50,54,252,197,1,128,30,64,22,224,155,0,193,
-206,225,2,14,131,68,192,170,125,36,224,40,13,236,164,0,0,64,125,7,
-67,66,0,57,78,70,67,61,96,197,199,72,2,95,53,57,113,32,82,161,
-0,58,96,35,1,10,65,83,184,2,49,32,58,96,19,129,8,96,27,130,
-49,3,85,32,75,51,225,20,5,0,58,96,141,0,10,84,234,0,58,97,
-18,96,37,0,65,64,51,68,4,234,44,5,109,76,129,25,175,146,138,41,
-1,54,54,175,95,141,233,100,37,97,213,161,23,96,103,64,21,224,144,1,
-68,29,234,137,7,145,131,146,98,170,137,110,63,113,33,211,158,0,58,100,
-116,224,165,2,129,12,0,83,192,141,144,77,190,31,0,64,78,163,195,55,
-1,95,53,177,21,2,95,53,56,177,52,119,65,96,35,226,42,6,160,43,
-160,147,2,58,53,56,179,49,224,101,8,0,53,80,133,160,101,99,252,224,
-101,0,249,209,1,146,141,224,103,19,197,82,225,83,0,126,12,240,163,1,
-224,60,21,225,27,0,228,16,3,0,51,82,24,224,254,12,99,116,0,66,
-89,97,224,85,20,128,12,78,255,230,116,1,31,87,104,101,110,32,108,111,
-111,107,105,110,103,32,102,111,114,32,97,32,110,111,110,45,101,109,112,116,
-121,32,115,101,113,28,117,101,110,99,101,32,119,105,116,104,32,115,101,112,
-97,114,97,116,111,114,115,58,92,49,48,38,92,57,38,102,166,0,58,97,
-123,135,186,255,182,0,211,220,0,48,207,99,117,142,244,48,2,224,41,8,
-0,49,247,193,1,243,200,2,0,58,116,88,128,92,243,255,2,0,55,65,
-29,149,31,130,89,230,171,6,132,233,254,17,1,241,169,22,241,168,11,216,
-122,241,134,16,2,103,111,116,192,47,224,181,6,0,58,64,211,64,180,121,
-116,0,89,100,108,65,153,0,83,224,164,3,240,214,7,0,64,131,49,243,
-216,42,14,112,111,108,121,112,97,114,115,101,45,49,46,49,50,47,64,43,
-5,84,101,120,116,47,80,64,19,201,106,4,49,48,57,58,55,128,174,177,
-197,113,142,0,50,68,121,224,14,1,246,188,3,65,55,224,25,13,68,179,
-214,56,248,13,9,92,80,96,57,165,140,248,161,9,116,209,151,50,122,141,
-0,64,99,248,241,168,0,96,64,192,12,128,44,100,98,97,102,0,50,73,
-204,0,53,126,134,64,0,224,134,50,143,11,224,133,29,96,43,224,132,75,
-0,49,156,19,225,11,30,96,44,224,134,8,182,231,224,134,51,99,79,224,
-133,30,96,43,224,132,16,130,235,240,209,1,101,197,128,148,229,101,1,252,
-182,5,227,94,12,8,44,59,40,41,91,93,123,125,96,195,98,230,157,0,
-116,145,229,23,0,71,221,224,99,6,253,35,3,0,48,224,233,6,1,64,
-35,234,33,1,165,203,128,6,1,95,49,65,206,128,97,157,10,165,132,228,
-55,19,13,66,97,100,32,99,104,97,114,97,99,116,101,114,58,164,13,181,
-125,220,124,168,85,250,40,1,161,164,128,128,251,90,0,213,104,252,3,15,
-0,52,153,126,128,33,136,211,161,100,160,46,160,71,224,214,0,64,62,162,
-161,114,74,225,125,1,231,129,0,126,112,68,229,165,30,97,234,96,103,231,
-159,1,225,232,0,162,18,193,241,192,91,213,143,224,48,8,224,46,14,129,
-14,226,103,6,224,62,10,96,54,254,237,30,1,95,39,229,135,1,160,215,
-224,98,27,96,79,73,98,64,0,65,130,128,47,3,64,67,32,79,230,181,
-2,226,168,23,22,33,64,35,36,37,38,42,43,46,47,60,61,62,63,92,
-57,50,38,94,124,58,45,126,160,145,129,226,193,223,170,119,97,220,224,204,
-15,1,101,69,224,58,12,253,142,0,226,66,2,227,231,9,128,204,224,110,
-4,226,14,8,192,130,225,135,11,226,22,12,231,53,16,0,43,231,46,4,
-226,45,5,226,37,7,224,192,30,232,207,1,224,192,91,0,45,224,192,35,
-224,140,76,0,79,139,220,221,1,224,136,31,196,162,224,221,19,3,109,105,
-115,115,73,212,7,43,47,45,47,100,105,103,105,200,173,224,51,19,14,97,
-102,116,101,114,32,101,32,105,110,32,102,108,111,97,224,50,27,6,108,105,
-116,101,114,97,108,196,253,64,42,100,255,0,52,65,212,133,4,217,116,224,
-252,20,224,81,1,2,46,46,46,227,207,1,64,0,227,153,0,160,0,0,
-89,129,107,98,73,0,85,101,161,65,13,171,217,225,240,20,10,110,100,32,
-111,102,32,105,110,112,117,116,64,227,197,176,224,47,15,2,115,116,114,65,
-65,160,226,160,46,96,145,198,140,97,251,129,218,97,150,233,38,7,194,33,
-247,231,10,64,213,0,55,98,239,64,68,167,22,97,251,107,178,97,223,87,
-233,234,17,80,3,49,56,58,52,212,19,228,255,3,80,53,78,107,134,16,
-192,198,251,50,5,64,36,95,234,67,176,230,240,4,65,140,92,80,160,60,
-238,248,0,0,67,103,100,2,50,57,53,64,92,192,82,161,183,235,8,4,
-225,173,13,160,166,0,58,107,249,115,191,236,12,1,0,53,80,166,0,54,
-111,78,1,53,50,129,69,66,109,224,72,2,203,222,0,97,225,202,0,71,
-181,128,83,101,137,234,247,7,236,59,2,224,70,1,3,98,105,110,100,194,
-49,236,138,2,144,211,224,17,3,65,24,0,54,83,102,224,143,14,224,132,
-3,4,32,104,97,115,32,116,115,3,110,97,108,32,198,200,65,141,224,150,
-41,237,58,5,97,45,143,240,238,69,3,1,53,55,238,222,15,238,251,19,
-0,58,64,213,143,163,142,87,0,58,96,71,237,152,8,64,240,162,231,237,
-239,2,165,208,224,207,3,66,96,106,145,224,228,9,224,196,2,224,240,12,
-225,206,14,0,44,109,145,0,39,232,11,0,224,152,14,134,117,224,138,4,
-229,200,0,224,27,10,208,192,224,27,10,0,49,83,202,224,28,16,158,213,
-224,28,15,99,1,224,28,15,169,130,224,28,13,224,144,18,97,83,224,27,
-14,131,198,224,27,14,99,165,224,83,14,192,55,101,109,64,27,102,136,224,
-157,15,108,205,224,28,14,237,246,0,64,24,0,52,81,13,239,164,5,229,
-185,19,18,117,110,114,101,99,111,103,110,105,115,101,100,32,101,115,99,97,
-112,101,240,157,1,1,105,110,226,8,4,1,58,32,73,133,195,221,233,203,
-0,208,48,224,151,7,0,54,245,96,0,224,27,10,97,138,224,27,14,98,
-54,224,27,14,97,165,224,27,14,97,109,224,27,13,133,67,224,27,14,97,
-91,224,27,14,97,249,224,27,14,224,195,18,68,31,224,27,15,0,56,224,
-83,18,83,60,224,27,16,97,79,228,193,9,120,61,230,206,81,5,51,48,
-56,58,49,52,163,252,81,73,227,251,5,224,141,8,66,215,229,230,24,196,
-137,0,35,130,216,236,1,13,0,39,66,110,1,86,84,228,120,0,224,124,
-26,110,94,224,124,32,87,76,224,124,20,1,85,83,228,245,3,1,53,53,
-83,92,224,4,15,224,154,22,111,221,230,254,34,224,67,12,66,57,225,91,
-34,160,186,224,154,61,224,86,1,168,101,226,9,61,224,67,22,67,71,224,
-154,33,234,203,0,224,242,24,226,40,37,0,49,181,230,224,174,24,225,228,
-59,224,242,38,224,243,32,100,63,224,156,54,101,183,224,156,34,177,92,227,
-188,29,123,111,227,188,33,128,248,227,188,17,4,83,79,72,39,32,160,9,
-192,8,1,84,88,192,9,0,73,192,8,1,89,78,192,9,5,85,66,39,
-32,111,114,160,12,0,80,240,251,1,228,119,73,146,194,224,186,17,0,82,
-228,119,9,225,220,90,102,208,224,197,33,179,135,225,31,27,104,10,224,157,
-55,224,67,28,226,122,1,228,253,1,225,101,15,2,78,85,76,225,240,1,
-2,78,65,75,225,241,35,104,80,228,64,34,225,241,23,1,76,70,230,230,
-35,231,99,37,174,249,224,123,16,0,72,231,98,82,154,54,224,124,18,0,
-71,226,234,40,225,122,39,165,32,224,218,73,151,154,224,218,17,1,70,70,
-226,94,1,0,70,224,230,1,232,74,20,225,249,60,224,67,22,230,96,37,
-181,199,232,69,62,226,216,68,208,238,231,83,62,224,155,22,118,169,224,155,
-32,254,24,0,225,210,91,231,150,39,193,211,225,56,25,77,139,224,88,34,
-192,245,227,108,63,224,246,22,224,157,38,209,191,227,178,12,2,111,110,101,
-83,21,99,173,0,69,232,39,0,2,69,79,84,192,9,1,78,81,192,9,
-1,84,66,192,9,0,77,227,225,1,2,69,83,67,227,226,14,224,197,23,
-234,52,59,226,0,37,0,49,225,10,2,224,88,59,224,224,59,224,156,1,
-234,52,35,226,2,28,229,99,37,64,70,224,174,35,129,74,224,85,23,0,
-53,230,181,38,189,247,224,86,24,228,149,37,183,5,224,86,25,238,105,37,
-146,129,128,20,231,13,15,1,68,69,233,109,2,2,68,76,69,224,12,2,
-6,67,91,49,46,46,52,93,227,62,9,228,67,23,239,15,38,164,246,234,
-175,94,237,199,38,247,187,0,225,65,16,1,67,82,225,51,1,2,67,65,
-78,225,46,40,228,104,106,196,102,233,125,73,233,124,23,0,66,226,110,3,
-0,66,233,125,2,228,83,62,225,39,23,236,173,37,196,242,224,207,17,1,
-65,67,236,159,2,0,95,94,224,122,38,0,54,95,195,0,52,100,4,0,
-53,64,58,1,50,48,162,228,224,34,14,0,50,224,34,2,90,143,224,36,
-9,86,101,0,95,69,42,64,152,154,118,0,51,64,223,213,239,3,95,53,
-55,52,224,68,2,225,9,8,86,133,93,176,0,49,88,242,8,67,32,95,
-52,49,53,32,95,51,99,170,0,35,89,188,64,19,89,201,160,18,0,57,
-104,50,246,176,33,249,227,4,4,99,116,114,108,45,182,181,8,109,97,108,
-102,111,114,109,101,100,150,166,0,94,129,44,246,167,3,64,86,193,113,96,
-113,64,239,64,237,4,49,51,49,32,95,145,187,0,49,73,74,96,5,128,
-172,193,112,225,170,1,187,122,224,17,3,128,40,224,17,2,152,48,228,123,
-4,212,106,224,35,1,224,34,8,129,81,224,17,3,206,53,224,17,1,224,
-88,8,195,7,227,114,7,224,234,2,158,253,68,33,225,103,6,253,208,18,
-218,10,225,110,4,194,127,0,58,123,156,1,10,65,118,138,0,83,66,249,
-0,53,68,91,224,62,1,6,100,101,99,105,109,97,108,96,47,129,96,0,
-50,64,123,159,190,1,95,49,110,20,3,95,50,48,48,94,167,160,191,131,
-116,0,53,77,220,0,58,66,97,64,94,126,128,129,163,64,69,157,69,190,
-242,106,106,0,58,98,155,224,136,18,2,111,99,116,224,134,28,161,69,0,
-53,120,95,224,133,0,0,50,224,91,20,2,104,101,120,224,224,27,131,218,
-1,95,53,224,224,5,0,49,156,63,227,43,3,6,95,49,53,55,32,35,
-52,64,129,68,75,0,53,65,204,64,4,0,64,227,82,5,128,38,123,91,
-224,38,0,187,49,64,165,224,39,6,102,201,224,39,0,153,6,3,95,50,
-49,57,248,43,2,8,100,105,103,105,116,84,111,73,110,190,12,227,17,13,
-192,16,163,27,64,86,193,188,224,49,28,96,176,224,49,22,64,39,96,255,
-65,33,0,48,129,124,0,39,127,210,159,224,66,3,254,148,0,64,0,128,
-27,64,5,228,133,1,100,178,0,54,68,192,99,192,1,95,53,66,46,192,
-44,128,42,227,25,1,153,107,0,39,93,196,2,32,66,39,96,5,3,32,
-95,52,48,64,27,253,219,3,91,172,225,221,6,64,79,121,164,1,95,54,
-99,87,224,28,6,160,111,1,95,50,99,177,64,37,96,43,2,51,56,55,
-64,7,0,80,197,64,224,55,11,160,90,130,231,229,11,20,3,92,49,48,
-38,227,169,0,108,191,5,114,32,109,111,114,101,163,168,192,67,224,48,1,
-0,32,97,235,0,115,163,199,0,58,98,208,158,198,226,130,18,131,104,67,
-25,160,42,0,50,78,63,131,177,224,14,0,226,158,28,226,154,25,64,104,
-159,15,171,175,225,200,0,97,199,224,125,1,1,52,54,68,23,64,13,0,
-55,64,65,69,93,231,48,2,1,96,95,196,170,230,157,3,64,112,166,243,
-229,4,2,225,97,20,0,69,255,18,0,10,110,32,105,100,101,110,116,105,
-102,105,101,191,17,91,29,225,104,5,1,79,32,102,11,221,22,1,58,53,
-66,214,96,203,0,52,96,133,0,50,93,229,65,92,0,58,96,139,96,25,
-1,54,49,100,96,64,1,0,80,64,35,65,30,130,156,197,164,0,53,97,
-143,1,95,53,139,234,130,251,0,58,97,19,128,64,0,50,229,39,0,98,
-102,2,95,53,52,98,247,2,54,32,89,100,184,6,83,32,73,32,64,90,
-32,96,148,160,6,162,99,192,54,99,141,98,159,0,89,69,107,99,84,64,
-13,64,61,224,59,1,166,69,0,52,131,77,96,10,199,32,2,89,32,66,
-65,154,0,80,96,129,231,199,30,9,102,97,105,108,101,100,32,116,111,32,
-124,129,3,32,97,110,121,79,126,20,116,104,101,32,112,111,115,115,105,98,
-108,101,32,99,104,111,105,99,101,115,58,66,231,129,105,102,199,1,56,32,
-121,232,97,202,2,56,32,85,99,191,129,128,224,112,19,224,69,2,224,67,
-1,96,13,0,50,167,174,164,79,67,246,228,45,1,225,36,0,224,19,2,
-0,83,161,15,228,151,1,159,199,224,35,3,225,62,8,224,28,3,0,90,
-160,204,192,40,128,78,96,11,0,39,102,238,192,93,1,95,49,109,177,0,
-80,160,65,192,73,226,70,1,134,254,192,69,0,80,70,91,0,54,134,182,
-2,85,32,58,66,92,166,102,0,39,64,2,97,31,98,39,4,85,32,75,
-32,90,96,1,224,82,0,0,53,99,232,96,119,96,40,69,105,128,41,0,
-52,100,162,224,33,0,66,99,225,101,16,12,73,110,32,97,32,115,101,113,
-117,101,110,99,101,225,114,15,133,90,101,121,99,216,0,57,194,118,69,154,
-224,157,20,161,15,101,74,90,249,160,159,170,152,128,35,65,2,134,60,64,
-80,101,185,1,95,51,69,94,224,88,19,0,58,96,133,128,51,0,54,66,
-88,64,102,227,23,0,133,198,194,101,106,212,75,228,218,130,0,53,103,166,
-0,58,64,226,129,110,0,85,195,232,64,106,68,165,1,57,51,128,86,89,
-249,236,40,4,231,18,0,131,63,234,174,0,0,90,162,213,64,238,160,95,
-96,0,0,58,96,11,97,222,0,75,96,196,0,58,97,167,96,16,0,73,
-65,253,64,206,68,23,203,193,97,39,132,60,101,66,1,95,50,70,204,96,
-55,233,100,0,235,193,6,64,247,3,83,32,64,82,227,203,3,225,225,1,
-0,80,67,174,9,46,115,97,116,105,115,102,121,58,32,131,199,236,208,7,
-96,95,130,155,99,62,100,218,66,50,65,21,224,75,1,6,82,97,110,32,
-111,117,116,67,248,10,105,110,112,117,116,32,40,69,79,70,41,137,85,133,
-48,128,73,130,209,1,95,51,76,74,101,14,224,153,12,0,110,164,75,96,
-63,138,239,2,95,51,50,64,39,133,58,1,51,50,64,62,96,11,0,58,
-96,6,163,57,229,5,1,102,95,102,186,227,210,0,227,201,11,99,192,99,
-195,96,16,0,58,96,106,64,160,2,52,56,52,161,0,192,85,96,198,101,
-50,0,58,96,173,64,37,97,36,130,87,224,35,1,96,234,161,243,193,68,
-224,14,6,232,186,7,2,95,49,56,161,14,74,107,224,10,1,96,48,132,
-31,64,6,64,114,192,18,224,238,5,229,244,9,0,67,162,133,70,117,96,
-181,229,231,4,1,95,51,66,183,166,157,2,50,52,57,224,103,2,167,180,
-0,51,225,80,3,136,245,142,95,131,153,0,95,96,50,75,17,0,58,96,
-6,128,50,68,8,224,122,0,134,100,107,232,128,130,160,80,102,211,224,74,
-8,136,155,64,6,1,10,65,99,215,0,85,128,16,194,218,0,90,128,242,
-65,171,69,67,0,58,96,82,161,246,64,20,224,28,6,130,103,2,73,32,
-58,96,192,64,157,71,79,77,241,2,58,53,52,170,144,1,32,80,66,26,
-0,80,66,91,115,211,192,12,136,76,192,45,64,5,106,190,96,221,96,224,
-230,49,6,96,197,129,120,133,15,96,140,69,168,64,25,0,83,160,58,0,
-64,96,18,224,5,4,230,125,6,160,60,230,157,2,230,139,14,129,195,224,
-35,1,224,116,2,194,231,224,114,0,73,163,244,13,2,141,30,227,11,0,
-192,10,171,58,240,249,5,199,76,224,230,1,64,36,134,83,0,49,90,123,
-64,46,100,214,64,5,96,91,165,44,3,64,64,64,79,67,98,231,47,1,
-224,174,90,195,76,224,174,67,224,109,17,192,154,224,42,0,224,118,44,96,
-61,66,136,167,16,231,137,2,2,79,32,35,67,88,224,147,3,64,43,224,
-250,19,128,127,0,82,64,119,64,16,224,211,4,98,159,0,39,96,2,99,
-163,98,234,128,39,224,132,36,225,23,1,64,1,0,89,192,24,227,13,1,
-226,202,5,224,48,4,73,13,224,66,6,201,15,224,63,9,70,247,245,74,
-0,161,246,224,194,1,101,220,1,95,50,76,89,72,61,224,106,7,3,95,
-50,54,52,82,22,224,131,8,232,239,17,23,87,97,114,110,105,110,103,58,
-32,67,97,110,39,116,32,102,105,110,100,32,102,105,108,101,236,29,2,224,
-74,3,237,214,0,224,19,2,237,223,18,17,51,52,38,32,105,110,32,100,
-105,114,101,99,116,111,114,105,101,115,73,81,1,92,57,224,89,1,239,27,
-3,160,89,192,203,125,231,224,13,1,225,161,4,238,67,5,224,80,2,225,
-210,32,224,183,20,18,49,48,38,32,32,65,115,107,101,100,32,102,111,114,
-32,98,121,58,32,200,33,0,52,65,123,0,56,248,47,0,128,72,84,149,
-116,26,133,75,224,88,16,6,109,105,115,115,105,110,103,97,97,224,82,1,
-224,40,0,224,157,0,97,106,203,79,110,118,85,26,144,14,153,89,129,55,
-67,110,73,158,73,150,142,158,224,39,1,0,51,108,79,224,157,3,235,134,
-0,160,63,129,88,105,54,1,51,52,64,130,160,186,192,31,161,145,2,95,
-53,51,70,166,169,205,131,117,160,19,128,0,113,180,68,201,1,95,50,93,
-111,170,227,0,73,64,31,3,95,53,51,55,102,78,135,199,0,85,170,189,
-2,95,53,51,146,86,0,58,96,31,166,168,108,199,1,95,54,73,108,100,
-42,112,88,96,23,0,53,234,125,4,239,51,2,225,190,13,3,57,50,38,
-47,239,64,0,173,29,0,58,96,114,1,10,65,224,93,0,224,181,1,229,
-252,7,168,182,106,185,128,230,224,251,12,0,58,96,7,96,81,0,58,65,
-64,167,47,225,131,1,73,23,128,69,209,144,1,95,53,65,110,169,20,64,
-35,3,95,53,50,56,242,202,2,15,85,84,70,45,56,47,47,82,79,85,
-78,68,84,82,73,80,128,196,135,129,228,25,1,1,95,50,111,100,139,189,
-1,95,53,123,192,0,58,97,239,208,224,97,211,140,50,224,145,4,1,95,
-53,194,41,98,58,116,21,96,253,83,207,2,64,95,56,178,208,0,35,142,
-47,162,33,224,61,0,99,134,224,122,2,226,93,6,225,52,0,183,135,128,
-241,192,181,128,167,224,199,3,97,30,0,53,96,78,129,202,160,73,195,5,
-0,58,96,102,4,10,65,32,75,51,69,210,0,58,96,38,7,10,65,32,
-94,103,101,116,98,65,114,170,180,6,50,53,56,32,79,32,95,65,222,0,
-79,64,13,0,57,160,66,0,58,97,1,181,0,128,230,0,50,64,17,226,
-51,12,225,121,13,244,105,6,20,117,110,107,110,111,119,110,32,116,101,120,
-116,32,101,110,99,111,100,105,110,103,236,58,2,97,209,66,234,64,123,130,
-241,138,15,108,194,65,181,235,18,1,97,2,0,90,69,178,74,20,96,27,
-96,54,210,61,0,48,108,115,114,43,0,53,96,43,0,73,102,185,3,56,
-32,64,85,64,23,138,56,64,54,141,75,0,50,110,227,0,58,96,24,107,
-48,2,52,49,32,78,47,97,113,0,49,74,53,243,170,1,0,57,129,158,
-2,95,49,52,75,237,129,157,1,49,52,96,134,64,11,0,58,96,6,96,
-132,2,49,32,75,78,59,100,28,0,52,225,8,2,23,67,111,110,116,114,
-111,108,46,69,120,99,101,112,116,105,111,110,46,73,110,116,101,114,110,150,
-171,224,39,1,3,83,111,109,101,224,35,0,97,40,193,153,202,198,161,31,
-66,149,203,192,73,13,1,53,50,77,239,205,137,70,235,192,230,142,51,64,
-30,9,10,65,32,99,97,116,99,104,32,58,96,63,130,251,226,238,4,67,
-121,89,196,209,218,65,205,229,157,18,4,111,112,101,110,70,101,153,6,99,
-97,110,110,111,116,32,64,16,165,165,225,224,1,64,126,64,71,227,237,11,
-64,109,163,237,68,102,194,18,0,49,111,163,226,251,3,131,13,224,33,2,
-67,189,128,90,244,167,1,227,182,2,1,48,56,208,111,228,6,1,65,47,
-134,4,224,5,0,0,83,100,214,0,32,101,123,64,3,224,96,1,98,48,
-226,207,7,18,72,97,110,100,108,101,32,97,108,114,101,97,100,121,32,99,
-108,111,115,207,10,227,187,7,133,121,0,53,80,54,1,95,53,185,197,227,
-192,1,152,36,0,58,96,212,131,176,0,65,67,176,64,22,99,127,0,66,
-78,110,108,169,96,51,96,190,64,31,217,133,1,95,53,90,60,0,35,120,
-90,64,29,11,10,65,32,65,46,119,114,105,116,101,32,58,96,26,67,246,
-96,158,67,248,64,126,131,248,0,55,64,13,130,10,134,90,2,95,53,48,
-67,106,2,48,57,32,64,76,160,101,130,28,9,116,111,70,117,110,80,116,
-114,32,58,64,30,162,79,64,50,0,50,112,51,1,64,58,97,100,173,134,
-130,101,65,200,129,139,225,142,4,3,64,95,52,57,110,121,73,200,225,195,
-2,170,86,167,182,229,55,4,1,52,57,68,125,64,37,1,52,57,149,20,
-0,48,128,159,201,66,72,172,79,239,99,225,229,123,0,110,200,0,48,162,
-2,167,112,0,58,98,101,164,214,0,80,132,247,0,95,157,30,128,5,101,
-1,0,58,96,47,227,98,0,228,116,3,2,95,53,48,100,0,64,21,225,
-229,5,129,59,232,0,1,224,55,6,229,245,1,229,247,4,162,126,0,95,
-162,194,64,122,129,194,5,73,79,46,112,101,114,92,212,4,73,79,32,94,
-38,161,191,64,31,129,209,4,102,112,102,105,110,65,142,129,207,4,102,112,
-110,101,119,64,14,165,230,7,97,100,100,95,70,73,76,69,64,18,129,194,
-96,18,5,117,116,102,56,32,58,97,70,145,253,0,52,87,172,64,166,1,
-64,58,65,102,129,26,0,58,96,21,131,163,228,19,5,232,247,3,0,49,
-72,125,224,17,3,64,216,64,19,161,91,234,63,4,0,49,66,153,100,191,
-224,23,7,198,113,224,24,6,64,129,224,23,8,227,125,1,1,119,43,232,
-163,0,0,52,136,163,187,167,102,170,0,52,114,230,1,95,52,126,95,225,
-111,3,194,34,226,120,8,0,58,98,149,101,252,1,49,48,98,255,0,58,
-96,61,105,93,0,56,225,206,0,104,236,0,56,112,160,1,52,57,65,178,
-192,6,2,49,55,57,192,118,0,58,96,6,99,52,2,73,110,116,65,76,
-163,131,0,102,101,18,0,58,96,175,99,65,131,212,234,170,0,67,77,100,
-11,197,204,66,24,0,50,65,149,200,83,122,140,155,54,160,18,1,58,52,
-70,144,212,18,0,52,245,175,0,64,24,167,226,0,51,69,178,1,51,53,
-76,220,155,112,0,51,91,70,160,11,2,52,55,53,187,168,0,52,95,151,
-96,20,3,64,95,52,56,65,68,96,12,0,58,96,6,162,44,65,43,1,
-95,51,71,16,0,58,64,34,128,22,85,97,74,19,0,66,99,13,0,51,
-81,71,9,95,52,56,50,32,95,52,53,49,32,65,201,0,49,232,150,0,
-67,49,0,51,89,227,0,80,64,165,165,218,64,185,96,29,178,141,67,87,
-75,108,227,66,2,96,84,2,64,95,51,86,210,224,23,9,160,76,131,66,
-227,95,0,128,27,246,52,0,160,24,192,52,1,95,52,94,102,128,21,82,
-54,129,131,102,21,4,32,61,61,32,64,118,173,148,104,0,52,73,182,226,
-121,1,2,98,105,110,197,230,224,61,0,173,134,240,162,0,233,48,13,65,
-11,236,168,2,96,114,233,93,16,77,115,233,207,0,1,95,51,68,150,96,
-51,68,180,96,12,225,54,0,224,237,1,240,36,4,65,162,169,15,116,153,
-96,33,65,171,75,109,0,90,181,222,1,52,56,183,53,96,228,224,43,1,
-73,135,0,75,64,7,0,53,72,196,0,51,69,52,128,37,235,180,0,64,
-39,130,119,70,173,64,76,162,36,0,51,64,182,2,95,52,56,100,82,67,
-42,128,22,66,26,64,85,1,95,51,244,206,0,65,139,96,18,0,52,95,
-108,231,136,1,112,107,163,200,142,44,1,95,51,113,59,128,233,96,50,135,
-146,64,97,211,171,0,56,135,42,147,0,210,53,3,64,67,32,60,87,171,
-64,44,224,25,12,96,70,203,210,130,123,160,25,163,137,0,85,74,51,226,
-25,4,64,24,226,186,0,232,124,0,160,43,96,131,226,74,6,64,41,160,
-48,128,36,160,219,120,102,128,0,224,129,12,162,160,224,85,14,132,206,224,
-85,8,98,71,224,144,22,132,177,224,58,19,236,230,2,224,145,3,100,115,
-224,171,12,166,221,224,112,14,99,76,224,171,45,140,221,224,171,20,224,59,
-16,66,59,224,59,10,142,253,160,0,165,185,98,103,0,58,96,6,226,77,
-0,110,228,70,205,99,221,66,153,229,172,0,96,107,66,195,101,176,238,6,
-2,192,12,2,49,56,48,224,17,0,1,64,75,75,51,186,159,96,65,114,
-145,107,145,224,23,0,224,24,0,224,93,0,116,221,224,99,6,224,86,4,
-232,232,0,224,142,12,1,52,55,224,47,8,224,24,2,0,52,76,68,192,
-21,97,1,98,141,0,58,96,6,171,66,133,212,193,7,71,209,66,235,0,
-75,224,179,2,128,123,67,5,219,161,77,185,131,221,64,72,96,107,96,85,
-198,44,0,85,227,29,13,164,223,192,31,69,21,1,52,55,73,155,224,24,
-0,229,213,7,187,126,64,91,132,229,0,80,169,90,103,224,68,135,82,244,
-0,52,104,163,3,95,51,56,55,69,56,0,50,73,59,160,19,233,122,0,
-172,9,96,14,140,233,96,66,224,63,2,96,108,160,10,3,50,48,48,32,
-219,181,97,10,170,183,224,10,1,0,58,96,184,231,25,4,230,123,14,131,
-64,250,103,1,254,122,0,108,172,117,177,227,235,2,160,27,97,34,160,49,
-229,42,4,230,64,11,0,53,243,22,6,230,255,11,96,253,231,77,2,225,
-108,10,69,99,160,0,114,152,0,58,72,53,99,39,69,236,1,95,52,64,
-110,0,58,96,80,64,19,229,233,5,133,220,0,58,96,35,96,49,4,54,
-54,32,95,51,64,13,128,10,0,52,156,167,128,10,64,193,128,10,76,86,
-192,10,224,32,1,94,241,1,95,52,226,207,0,0,58,96,91,96,85,0,
-55,96,30,107,205,0,55,105,188,64,36,137,206,224,142,0,1,56,53,161,
-186,230,124,4,160,58,206,81,128,20,236,142,3,224,43,9,96,33,224,43,
-8,161,158,224,25,1,224,18,1,1,52,54,97,108,2,95,52,54,164,181,
-0,58,96,165,250,139,6,191,196,1,64,58,96,38,224,188,6,129,54,96,
-193,101,18,96,11,128,78,66,123,224,40,5,224,55,11,123,46,160,10,169,
-41,231,130,3,1,51,56,194,215,224,196,7,66,166,226,102,1,190,184,128,
-77,82,243,227,78,0,224,68,6,224,66,2,237,152,0,0,58,97,59,224,
-217,6,96,145,68,183,224,199,5,225,173,4,224,74,12,168,221,224,74,7,
-64,31,224,74,5,68,33,206,132,160,70,64,94,224,233,8,225,171,2,2,
-95,52,54,164,227,64,105,0,54,225,171,4,0,80,66,95,64,30,96,19,
-1,80,32,100,194,0,85,96,20,163,2,224,123,3,0,52,101,75,0,50,
-114,140,1,52,54,144,10,225,73,3,108,163,225,141,7,0,53,125,24,224,
-53,0,158,39,245,186,2,234,142,1,1,95,39,234,140,3,224,205,10,135,
-123,171,4,0,58,99,66,192,183,66,6,128,183,131,70,224,168,6,1,95,
-49,65,98,0,58,96,126,224,29,5,122,145,0,52,111,42,96,41,209,115,
-70,126,5,95,49,53,55,32,35,97,61,120,240,0,55,86,25,135,93,64,
-48,224,42,9,77,233,224,42,1,0,49,121,155,0,58,96,98,225,74,5,
-0,52,108,194,102,104,0,83,141,235,97,16,136,9,0,79,241,153,2,1,
-46,46,65,18,224,17,3,1,58,58,128,17,2,79,32,35,64,204,69,19,
-96,12,77,137,224,12,0,0,49,78,15,128,13,224,57,1,1,60,45,224,
-75,7,1,45,62,224,75,1,224,48,0,96,62,185,34,224,44,3,0,61,
-96,44,229,131,0,161,167,226,207,3,0,52,205,242,224,20,5,100,226,0,
-58,100,251,193,173,66,150,97,173,64,49,145,249,226,17,12,13,33,64,35,
-36,37,38,63,43,46,47,60,61,62,63,87,207,4,94,124,58,45,126,64,
-136,0,58,97,62,139,144,226,163,2,99,125,134,138,0,82,76,94,64,131,
-136,90,227,50,3,66,148,226,101,9,226,90,2,0,53,223,120,224,91,4,
-65,175,205,217,237,36,2,189,155,200,193,66,20,102,255,192,31,224,161,10,
-128,24,67,129,104,64,227,208,4,224,151,17,237,33,0,64,23,129,137,0,
-58,96,202,227,168,9,1,95,52,127,212,224,72,4,67,67,65,96,2,67,
-32,79,224,62,2,204,214,1,80,32,106,219,129,150,131,38,225,150,15,8,
-44,59,40,41,91,93,123,125,96,161,136,170,105,228,189,6,77,156,3,64,
-75,32,89,225,1,6,0,89,96,238,69,204,0,64,231,95,1,224,58,6,
-113,6,228,248,5,65,54,65,104,228,112,2,0,35,96,213,105,97,0,50,
-80,167,205,90,231,181,6,224,91,15,193,23,205,128,225,93,4,224,20,3,
-0,52,97,248,161,152,143,97,140,74,129,224,201,123,132,81,123,134,87,40,
-133,18,97,4,225,135,10,69,218,238,246,0,162,58,152,20,100,76,225,240,
-0,123,141,65,100,72,80,193,167,64,89,97,167,64,69,225,121,11,64,61,
-225,62,4,96,194,0,85,137,141,232,214,1,162,106,1,51,55,64,16,136,
-138,66,205,128,200,224,201,8,128,146,226,204,5,224,109,0,117,215,227,247,
-4,162,231,64,0,0,58,105,25,192,189,66,151,128,189,0,54,224,189,8,
-193,229,230,88,7,65,179,224,95,4,83,150,237,16,0,225,227,4,232,52,
-6,226,55,11,165,166,224,20,6,128,86,224,20,5,0,49,84,147,224,21,
-9,103,204,224,21,9,65,235,224,21,9,121,238,224,21,8,224,109,11,156,
-117,226,228,7,128,85,225,17,4,129,115,240,74,8,193,163,224,17,3,130,
-127,224,17,2,148,98,224,17,3,85,50,224,35,6,224,34,8,141,98,224,
-17,3,140,56,224,17,3,224,88,8,98,98,224,16,3,137,94,225,163,8,
-74,138,104,217,224,95,8,229,25,5,105,149,216,145,128,18,226,190,5,2,
-67,32,95,83,250,0,52,112,200,2,95,51,56,94,44,109,40,0,49,107,
-115,0,51,77,6,172,25,227,147,11,88,212,109,32,148,59,224,171,13,68,
-66,132,217,226,102,23,105,125,224,20,8,136,77,224,20,6,226,35,11,72,
-177,224,20,9,226,55,11,107,59,224,20,7,75,149,224,20,9,129,37,224,
-20,6,226,118,11,76,214,224,20,9,224,209,11,77,64,224,20,9,224,209,
-11,65,226,224,20,9,224,209,11,111,193,224,20,7,112,216,224,20,8,224,
-209,11,83,171,224,20,9,224,209,11,83,250,224,20,9,224,209,11,84,85,
-224,20,9,224,209,11,107,214,224,20,8,224,209,11,106,76,224,20,8,224,
-209,11,228,26,12,119,175,224,20,8,228,47,11,107,153,228,47,10,227,249,
-8,95,76,224,17,5,178,157,224,17,3,227,215,8,89,50,224,17,6,133,
-253,224,17,3,197,170,224,17,1,228,155,8,177,201,224,17,3,228,84,8,
-93,242,224,17,6,228,138,9,228,192,9,224,179,8,135,88,224,17,4,224,
-179,8,92,152,224,17,6,224,179,8,229,26,10,229,97,26,229,62,9,224,
-178,8,229,61,15,224,16,1,224,175,8,224,174,8,224,173,8,225,96,9,
-224,153,8,224,16,7,128,169,103,210,2,51,32,79,176,160,0,48,160,29,
-3,95,52,52,52,236,36,2,2,83,79,72,109,195,224,79,7,224,47,17,
-224,46,8,128,178,0,79,224,98,16,2,78,85,76,224,51,7,96,161,224,
-49,17,2,83,84,88,224,49,7,96,245,224,49,17,0,69,224,49,9,97,
-56,224,49,18,1,79,84,224,49,7,96,200,224,49,18,1,78,81,224,49,
-7,97,190,224,49,17,2,65,67,75,224,49,7,98,1,224,49,17,1,66,
-69,225,43,8,98,68,224,49,18,0,83,224,48,7,98,134,224,48,17,0,
-72,224,247,8,98,200,224,48,17,1,76,70,225,242,8,225,191,22,0,86,
-224,98,8,131,79,224,49,17,0,70,224,99,9,225,241,22,1,67,82,224,
-49,8,225,241,22,1,83,73,224,49,8,225,191,22,2,68,76,69,224,50,
-8,225,192,22,2,68,67,49,224,50,8,225,193,22,2,68,67,50,224,50,
-8,225,195,22,2,68,67,51,224,50,8,225,197,22,2,68,67,52,224,50,
-7,133,134,224,50,17,1,78,65,226,190,8,133,203,225,99,18,1,89,78,
-224,50,8,227,186,24,0,66,224,50,8,225,201,22,1,67,65,224,101,9,
-227,188,23,0,77,224,49,8,225,252,22,1,83,85,224,151,9,225,252,22,
-2,69,83,67,224,50,8,225,252,22,0,70,227,190,8,135,172,224,49,17,
-0,71,224,49,9,225,250,22,0,82,224,49,8,136,52,224,49,17,0,85,
-224,49,9,225,248,23,0,80,224,49,8,225,247,22,0,68,228,234,9,0,
-49,129,45,242,178,5,224,0,17,238,95,11,221,17,0,58,111,64,242,17,
-13,1,83,39,146,18,145,253,122,191,155,159,192,75,144,36,123,6,0,85,
-210,147,224,19,0,185,30,112,67,233,177,2,201,172,143,162,242,65,14,82,
-63,64,0,88,201,0,58,65,14,64,161,0,80,160,98,147,4,122,132,0,
-90,160,4,112,95,145,121,71,203,192,217,0,51,143,134,2,52,52,48,141,
-4,156,108,96,9,4,49,49,49,52,49,101,109,0,58,109,56,111,174,3,
-54,49,32,58,109,44,191,62,0,52,145,255,191,62,78,131,213,25,237,185,
-1,246,164,14,250,218,26,0,58,109,244,64,120,0,54,87,162,0,48,85,
-205,0,52,79,150,1,95,52,68,164,1,95,52,88,68,1,95,52,68,125,
-74,245,106,249,0,56,122,228,110,4,0,52,111,1,2,95,52,51,107,1,
-224,13,0,65,66,0,73,96,174,215,122,0,57,82,232,1,57,57,122,109,
-181,88,0,58,96,39,224,29,2,0,56,224,29,6,186,58,224,59,1,1,
-95,49,77,160,0,58,96,102,96,178,78,141,150,104,65,218,192,147,122,223,
-0,52,67,54,1,95,52,67,10,1,95,52,66,222,0,95,124,205,128,34,
-124,199,96,10,0,58,96,6,219,132,0,50,99,107,128,65,0,58,96,53,
-147,167,192,16,129,149,224,42,2,192,27,64,28,129,167,123,157,254,249,0,
-125,16,158,114,252,68,6,1,95,51,108,74,253,238,1,254,150,1,93,38,
-131,26,1,67,32,160,38,97,169,64,104,64,97,245,30,0,147,39,156,23,
-98,221,64,186,108,160,224,34,0,224,9,1,79,187,64,31,129,169,133,29,
-1,95,52,67,196,0,58,65,61,64,89,0,75,83,50,0,58,96,19,3,
-10,65,32,90,160,13,129,164,0,75,130,127,64,62,98,141,0,90,224,1,
-2,228,3,0,0,58,96,126,97,154,126,58,130,59,123,214,65,166,225,102,
-8,0,49,96,25,193,102,179,163,224,6,0,163,238,64,219,254,174,3,66,
-192,132,138,67,206,254,183,3,0,58,96,81,96,158,80,63,226,55,0,96,
-25,184,125,129,102,99,179,0,66,67,15,226,93,7,195,250,160,4,1,83,
-32,67,254,224,48,32,193,253,253,174,4,182,191,224,207,1,158,64,244,152,
-4,224,237,4,115,65,2,95,52,48,97,249,66,98,1,48,53,66,8,204,
-42,193,112,160,62,160,110,128,113,164,208,160,116,193,254,64,90,192,25,160,
-123,224,117,22,224,115,5,224,113,5,224,51,17,174,7,224,0,2,0,58,
-100,70,193,248,2,52,48,55,64,84,97,192,160,16,101,146,67,194,2,50,
-49,50,99,106,69,15,165,35,68,204,0,52,73,145,205,37,66,59,74,107,
-224,157,5,0,58,96,119,101,100,1,49,51,64,67,1,57,52,178,100,242,
-111,1,191,143,128,197,67,95,0,49,224,34,20,1,73,32,64,2,79,250,
-64,190,64,168,224,139,0,64,62,224,96,0,160,46,149,249,0,89,225,100,
-0,192,56,160,230,255,177,2,224,60,3,224,137,6,160,119,150,243,1,95,
-52,77,170,179,113,113,154,225,16,4,217,133,225,251,0,128,75,1,54,48,
-192,44,161,234,224,70,0,2,52,49,53,224,71,0,64,72,83,176,175,163,
-224,42,7,224,113,2,224,41,6,0,58,96,8,163,95,1,75,52,227,249,
-0,0,58,64,37,224,23,13,199,215,0,89,227,63,1,131,52,130,74,185,
-204,0,82,224,22,4,250,41,2,64,146,162,60,224,1,1,68,205,96,0,
-224,20,11,224,17,8,224,14,5,224,11,2,192,8,131,14,96,109,132,163,
-0,85,128,195,224,197,2,164,161,64,155,1,52,48,102,93,77,85,0,58,
-98,171,192,222,128,181,0,58,96,25,100,206,130,20,225,81,4,98,199,225,
-5,2,131,75,160,239,192,92,226,20,4,162,96,66,167,134,251,64,33,225,
-81,3,64,64,70,48,228,138,0,233,13,3,192,21,160,104,224,29,0,128,
-39,250,249,3,0,58,67,137,128,88,72,36,1,49,57,233,252,2,4,102,
-111,108,100,108,141,41,67,121,0,54,96,134,216,114,160,134,0,83,228,209,
-4,96,79,0,54,133,112,228,247,0,0,85,248,124,5,101,180,97,16,251,
-49,1,192,176,194,24,98,152,136,235,161,24,0,50,214,116,1,64,95,116,
-29,132,226,103,93,100,20,128,36,0,48,224,36,7,197,9,227,124,2,2,
-67,32,95,99,46,161,2,0,58,96,61,167,94,234,50,5,134,113,136,160,
-64,6,97,230,68,242,166,232,73,20,67,130,65,214,71,183,199,211,64,15,
-64,9,199,205,1,95,49,104,119,96,77,0,58,96,6,226,84,1,137,119,
-103,15,73,125,102,169,0,73,198,26,138,105,230,102,4,128,113,233,57,2,
-96,153,230,240,1,128,209,220,104,128,252,0,64,230,44,0,253,91,2,68,
-58,193,182,97,118,232,184,3,130,37,224,86,2,197,188,65,31,230,227,0,
-128,8,168,169,162,124,160,243,96,64,1,51,57,87,228,224,64,0,229,23,
-1,192,25,131,249,64,14,226,143,0,160,145,128,102,224,174,9,224,124,7,
-233,40,1,224,127,22,224,101,3,224,130,8,224,156,5,225,91,4,192,247,
-97,102,0,54,227,28,2,24,92,51,52,38,46,47,108,105,98,47,68,97,
-116,97,47,73,110,116,101,103,101,114,46,104,115,64,24,4,44,49,50,56,
-58,131,57,0,58,97,227,66,49,2,51,57,56,166,187,0,58,96,111,163,
-36,97,126,128,224,97,176,64,9,98,255,96,23,162,138,67,52,230,177,7,
-200,22,225,230,0,64,57,228,22,4,196,201,192,7,2,80,32,95,87,6,
-1,75,50,64,223,224,204,34,3,54,52,58,54,132,6,166,243,227,161,1,
-96,116,164,95,64,15,131,177,108,180,227,162,3,64,251,221,153,228,157,0,
-163,107,0,51,72,76,231,212,0,196,170,224,80,12,98,161,224,80,8,97,
-157,96,69,0,64,65,90,196,207,131,65,100,120,90,109,229,136,1,0,83,
-105,10,228,48,11,228,105,13,160,47,98,92,197,159,224,61,11,101,179,228,
-108,4,224,79,11,228,154,18,232,20,3,0,58,96,208,164,40,64,200,65,
-213,234,130,19,169,148,97,10,0,53,98,99,0,54,164,169,95,200,73,60,
-96,8,0,53,229,136,10,0,64,128,32,64,51,229,11,0,136,100,172,67,
-96,129,129,142,254,197,0,225,83,0,232,74,1,97,34,107,178,224,99,4,
-227,214,0,0,89,160,36,191,225,226,66,3,194,183,101,65,236,89,0,160,
-85,68,162,130,102,198,30,168,63,99,175,128,145,224,143,4,194,64,236,71,
-11,192,146,96,246,230,239,4,6,108,116,87,46,99,109,112,162,233,161,19,
-160,6,2,64,64,95,153,237,161,91,166,5,1,51,57,79,119,163,211,133,
-216,229,74,6,194,108,231,0,6,162,239,231,2,8,227,73,15,97,91,64,
-109,162,244,231,226,1,100,217,68,30,236,40,0,227,161,46,224,91,0,227,
-161,10,224,95,3,227,161,32,224,80,1,97,63,96,69,98,100,134,232,163,
-161,227,140,38,129,208,227,51,2,224,10,1,0,58,96,97,1,10,65,69,
-26,0,58,96,173,146,90,0,51,92,58,0,67,114,122,128,75,0,58,81,
-31,193,171,235,191,5,138,20,224,226,0,66,102,99,12,1,95,50,98,66,
-0,64,170,92,163,26,105,82,162,147,64,5,64,140,224,243,0,97,9,0,
-66,104,109,225,7,1,96,142,0,55,97,148,0,80,193,52,225,36,2,132,
-100,225,229,1,229,232,1,0,58,96,197,128,179,98,214,192,39,97,118,96,
-86,0,54,224,103,0,0,58,96,99,138,210,0,50,74,213,96,36,0,58,
-96,34,243,110,13,195,189,242,91,0,161,251,234,111,1,162,208,242,107,4,
-234,106,3,235,217,1,129,22,162,34,64,97,1,56,52,74,92,102,195,169,
-118,224,69,16,129,135,224,160,6,147,153,160,27,115,158,64,92,96,102,64,
-4,0,95,83,122,234,211,2,73,112,129,151,244,214,0,97,32,0,55,64,
-13,99,125,208,139,1,95,50,127,60,244,86,5,0,58,115,85,234,17,0,
-237,106,2,98,236,81,51,129,102,225,172,2,65,95,129,172,132,44,224,58,
-44,227,115,3,224,58,38,188,248,194,147,224,67,0,224,56,25,188,237,2,
-51,48,50,229,9,2,15,118,97,108,68,105,103,58,32,66,97,100,32,98,
-97,115,101,133,18,71,76,96,83,67,10,108,220,2,51,56,50,91,146,64,
-184,172,238,96,17,2,64,35,53,142,171,224,48,14,102,168,224,48,5,0,
-49,74,253,64,49,98,101,224,49,8,0,54,98,163,224,49,4,0,55,134,
-185,0,49,100,23,66,48,99,229,231,125,4,96,240,239,240,1,117,162,64,
-5,128,78,254,46,0,224,61,39,135,103,224,61,12,224,48,13,97,32,130,
-153,1,51,56,106,79,224,231,15,225,74,11,96,171,224,231,10,224,107,23,
-224,99,34,0,52,168,126,224,99,38,0,58,67,217,100,147,224,206,34,163,
-112,224,106,37,0,58,97,55,213,251,119,203,2,95,51,55,100,29,0,55,
-105,14,64,86,1,95,51,71,255,2,95,51,56,64,29,85,245,128,114,117,
-245,128,10,0,58,96,6,6,10,65,32,62,61,32,58,96,39,64,11,64,
-10,134,44,2,60,32,58,96,79,6,10,65,32,105,99,109,112,64,13,178,
-97,228,142,6,71,207,248,87,2,0,35,108,45,224,20,7,64,197,224,20,
-8,151,247,224,21,7,64,116,224,42,9,123,251,119,122,224,21,2,65,47,
-216,199,249,150,3,163,200,224,17,19,129,75,224,16,19,168,234,224,16,6,
-1,58,51,69,38,211,204,230,58,7,132,117,201,212,185,182,96,17,224,23,
-0,192,35,135,54,148,162,199,66,224,35,4,237,244,3,232,189,2,233,208,
-6,0,39,68,195,224,21,2,224,66,0,102,119,243,166,9,166,192,169,70,
-138,110,128,66,83,119,211,125,245,252,1,66,142,230,57,0,138,180,141,141,
-237,140,24,97,32,192,58,198,185,150,225,226,225,3,192,151,225,104,1,0,
-95,156,233,134,168,89,1,161,102,234,172,0,192,23,225,128,0,138,69,81,
-189,64,0,71,67,96,75,128,48,96,143,3,58,51,55,54,233,3,0,1,
-55,52,206,75,155,9,2,58,51,55,251,123,12,98,179,97,163,0,82,219,
-85,231,29,3,0,58,96,72,227,17,7,81,127,231,109,17,167,101,224,236,
-2,1,51,55,194,87,0,51,96,76,3,80,32,35,54,117,121,0,58,96,
-25,107,89,84,184,0,51,90,246,128,133,187,97,2,51,50,51,224,86,0,
-1,51,50,64,34,96,11,0,58,96,6,137,29,73,231,1,51,54,82,55,
-76,174,68,218,1,95,51,120,145,97,98,0,58,64,152,64,41,71,20,243,
-236,2,96,49,135,244,104,241,128,72,123,217,0,53,233,102,0,129,223,1,
-51,54,208,240,3,95,51,54,55,233,220,2,89,41,0,51,72,201,195,42,
-0,51,123,24,69,25,96,189,64,29,227,72,2,97,207,128,29,4,49,52,
-32,95,51,153,155,0,58,96,42,129,152,0,50,69,55,3,54,48,32,35,
-92,12,166,146,65,118,92,52,64,228,0,49,160,161,0,52,160,7,64,41,
-129,113,0,52,68,243,96,11,128,82,225,235,5,64,63,2,95,51,54,64,
-69,105,224,138,83,110,228,227,103,0,0,67,78,45,113,90,96,90,65,118,
-64,79,1,95,51,133,193,128,86,130,11,3,85,32,75,51,193,73,0,58,
-64,42,129,193,0,52,64,212,66,27,0,58,96,106,162,136,65,18,0,90,
-125,178,133,219,0,58,96,198,228,92,4,128,158,128,103,204,79,64,5,229,
-7,3,101,3,171,246,75,97,224,113,1,66,45,0,58,96,27,96,19,1,
-51,53,90,20,0,51,84,150,64,22,165,207,160,156,84,211,96,104,129,249,
-1,95,51,115,199,0,51,71,115,67,66,1,58,51,70,208,203,71,66,2,
-0,58,96,27,192,202,96,44,93,233,2,58,51,53,246,177,3,246,103,8,
-1,58,51,88,235,225,248,0,0,48,64,229,125,109,151,97,1,95,51,64,
-210,2,58,51,53,214,112,192,244,66,140,2,66,32,80,97,90,64,77,172,
-111,238,254,2,207,75,129,26,0,50,125,3,5,49,55,49,32,95,49,67,
-91,204,88,128,33,235,34,2,224,236,0,226,83,7,64,205,164,195,129,134,
-129,40,235,38,2,96,40,96,42,134,137,0,52,239,67,3,19,80,114,101,
-108,117,100,101,46,114,101,97,100,58,32,110,111,32,112,97,114,202,63,154,
-130,3,95,51,53,48,146,131,224,57,19,8,97,109,98,105,103,117,111,117,
-115,224,64,3,65,33,130,43,66,64,64,13,205,227,0,90,101,206,0,58,
-64,81,64,16,110,0,64,158,228,168,10,229,207,1,155,44,240,99,1,226,
-241,3,236,129,11,108,121,229,179,10,0,58,97,30,194,108,1,95,51,86,
-34,0,58,96,51,224,19,2,99,6,64,127,227,6,2,93,103,65,95,226,
-97,0,65,174,0,58,97,130,96,184,163,114,228,74,2,64,167,143,114,160,
-131,174,145,1,95,51,65,253,193,195,0,51,193,189,64,76,165,79,96,180,
-0,55,132,39,131,130,164,36,69,98,96,214,99,225,96,64,0,49,96,75,
-132,72,96,74,133,110,0,52,224,86,3,229,110,0,183,174,0,66,134,178,
-239,14,0,224,18,3,1,66,39,149,154,130,56,0,58,64,72,224,147,1,
-0,54,160,147,101,101,192,135,96,218,128,135,96,159,128,135,160,10,96,251,
-64,10,0,58,96,6,193,42,64,11,229,87,2,132,202,225,30,4,128,85,
-129,30,96,11,0,58,96,6,97,165,229,176,3,64,172,69,121,64,155,64,
-61,97,38,67,1,0,58,96,6,224,47,4,64,106,195,153,83,21,224,49,
-2,132,113,64,6,5,10,65,32,73,32,58,96,44,192,10,196,46,1,95,
-51,77,146,0,58,99,139,160,16,80,163,231,207,5,0,58,96,36,192,232,
-90,174,0,67,103,162,224,5,0,101,29,207,160,96,67,98,45,100,211,232,
-72,5,160,30,141,79,224,30,9,165,40,249,189,1,230,155,4,100,68,224,
-46,2,121,220,132,242,2,95,51,50,100,35,97,118,66,2,251,249,0,100,
-131,132,170,189,14,195,112,137,202,64,26,81,130,224,21,1,69,49,103,94,
-228,177,1,193,23,160,165,224,24,0,193,217,130,161,129,217,136,16,64,6,
-167,69,168,3,89,191,64,34,131,110,231,251,0,0,58,96,25,165,118,226,
-180,0,99,155,79,60,104,158,129,22,161,59,130,69,91,144,64,34,194,16,
-104,175,65,154,128,43,184,159,234,240,0,64,6,138,165,224,19,2,128,114,
-213,1,224,32,2,224,9,10,113,130,225,223,5,232,58,7,0,64,101,239,
-74,205,160,218,224,4,0,222,95,96,58,175,125,224,57,9,224,179,7,129,
-169,226,102,0,162,96,64,41,192,83,224,84,5,224,82,5,224,81,11,224,
-91,4,224,82,9,224,183,3,224,58,17,226,239,5,224,59,20,225,114,9,
-224,9,2,102,1,160,65,193,251,227,81,0,224,240,14,160,100,227,69,2,
-194,254,139,137,224,115,1,160,224,97,163,98,185,97,47,128,127,1,95,51,
-95,94,0,51,109,223,194,74,96,0,224,98,2,0,83,96,168,154,12,224,
-151,32,226,162,5,224,100,2,131,170,178,85,225,7,0,161,10,224,13,22,
-99,166,130,124,224,252,0,224,254,0,160,13,225,1,1,228,1,0,96,248,
-96,217,160,17,1,95,49,73,4,225,19,9,224,248,6,64,4,224,98,22,
-245,157,0,192,97,162,134,128,96,228,41,3,194,11,226,202,6,225,71,31,
-225,224,24,160,107,225,214,21,226,202,21,192,9,195,224,226,192,4,224,49,
-32,224,176,2,228,22,9,225,93,10,230,3,4,224,45,5,224,47,8,225,
-58,0,224,141,18,96,139,226,35,5,193,63,224,142,23,252,140,16,5,84,
-101,120,116,47,80,73,255,17,114,67,111,109,98,105,110,97,116,111,114,115,
-47,82,101,97,100,80,252,156,0,3,53,49,58,51,252,156,0,64,0,174,
-35,96,108,174,35,96,11,0,58,96,6,114,173,144,123,132,175,64,35,137,
-90,238,45,5,150,146,0,58,64,64,134,48,1,75,51,169,159,64,46,192,
-70,66,63,66,120,128,71,70,121,103,83,104,138,0,95,81,129,160,21,198,
-177,2,95,51,50,103,238,90,179,192,85,140,87,64,23,230,152,0,238,150,
-1,64,61,134,95,0,55,135,64,255,213,1,226,254,0,226,251,1,138,27,
-121,142,64,64,206,182,96,120,105,77,98,155,2,95,51,49,72,160,96,11,
-0,58,96,6,198,253,162,216,128,216,64,100,104,9,96,204,79,195,250,53,
-1,150,73,68,84,64,17,64,126,71,68,207,9,241,19,8,209,212,71,231,
-236,191,5,164,143,251,219,3,0,32,86,56,160,227,140,215,96,104,130,185,
-224,104,5,224,158,1,90,42,192,22,224,159,30,138,142,224,205,38,194,242,
-129,42,224,182,6,224,140,1,224,179,19,224,112,30,201,146,227,109,4,129,
-23,97,153,96,110,220,226,225,88,1,229,227,1,224,157,2,64,5,162,173,
-225,92,148,128,211,225,96,3,224,195,14,225,105,76,224,125,5,122,197,131,
-92,234,178,1,235,235,1,97,99,101,241,166,197,224,147,2,251,241,1,225,
-45,37,128,78,224,7,1,224,123,99,224,86,10,224,85,58,96,71,128,163,
-224,204,101,110,40,240,95,3,31,115,116,105,109,101,115,58,32,112,111,115,
-105,116,105,118,101,32,109,117,108,116,105,112,108,105,101,114,32,101,120,112,
-101,3,99,116,101,100,102,71,0,58,69,29,140,58,108,221,172,200,0,83,
-158,27,174,216,104,125,225,167,0,96,52,243,247,1,177,245,0,58,69,179,
-197,211,64,164,0,58,96,46,242,37,0,128,40,64,82,224,11,0,224,61,
-2,96,46,230,123,0,0,50,236,173,1,70,107,207,61,79,82,75,202,75,
-126,173,186,175,64,134,116,69,242,76,147,175,64,160,10,206,68,64,76,134,
-135,1,95,51,163,112,128,5,134,8,213,2,236,111,0,189,106,79,26,175,
-203,160,28,137,38,224,28,7,238,76,11,140,39,224,65,9,182,53,96,24,
-112,50,129,123,159,142,175,80,96,49,0,58,96,6,224,178,0,138,74,103,
-4,66,77,226,44,0,192,75,68,88,199,5,132,71,128,46,167,50,224,34,
-7,0,58,96,125,128,93,1,95,50,64,105,128,121,135,41,64,6,110,14,
-0,58,96,67,114,135,128,1,120,142,1,64,58,96,199,210,144,224,4,3,
-158,182,128,205,0,58,97,4,1,10,65,225,212,1,0,58,97,39,96,78,
-224,57,6,224,87,0,210,56,224,87,6,224,34,3,130,22,233,171,0,240,
-24,8,64,242,255,106,0,97,116,139,37,132,244,160,14,0,85,163,132,160,
-38,225,186,1,65,46,104,194,0,67,129,148,98,117,128,64,64,84,96,26,
-0,58,96,17,143,116,82,91,0,50,116,221,1,95,50,67,26,0,58,116,
-239,193,61,242,61,0,211,136,69,212,161,243,0,90,179,137,139,234,198,213,
-96,31,96,42,64,22,228,73,3,251,30,5,113,192,131,167,168,99,193,40,
-105,224,64,85,2,95,50,57,237,112,0,224,38,10,224,123,2,64,181,193,
-243,228,78,6,7,105,110,105,116,58,32,91,93,100,50,68,29,225,90,0,
-224,114,4,193,54,224,115,1,0,58,96,9,97,36,230,216,0,2,115,101,
-113,192,213,128,19,224,16,2,228,25,11,64,68,130,105,95,98,2,95,50,
-51,192,254,245,250,2,224,170,1,3,35,108,105,110,181,65,65,219,98,248,
-0,51,64,37,224,42,9,8,123,45,35,32,76,73,78,69,32,245,177,0,
-138,87,81,69,0,57,152,109,0,50,69,148,2,95,50,57,100,248,224,57,
-1,3,32,35,45,125,128,52,1,58,50,95,32,128,224,225,21,1,67,37,
-212,187,229,181,0,96,86,104,90,131,126,3,95,50,57,51,68,70,1,95,
-50,81,166,213,141,160,25,0,53,213,158,0,58,96,51,96,96,242,100,0,
-225,123,1,207,117,98,82,242,40,0,0,58,64,63,162,115,1,95,50,75,
-125,248,77,5,0,35,70,90,66,107,224,28,12,130,247,224,18,4,159,253,
-0,58,96,145,250,54,2,218,56,182,235,1,50,57,68,66,160,155,167,1,
-162,205,64,12,192,166,96,24,65,248,224,51,0,224,186,2,128,53,147,123,
-162,67,128,81,0,58,65,45,64,124,88,35,134,158,224,43,9,224,42,0,
-214,7,4,57,48,32,79,32,96,238,100,122,97,214,216,152,0,50,158,92,
-0,50,92,164,0,58,64,41,128,25,225,94,0,207,102,96,91,225,125,10,
-192,199,193,229,165,137,243,198,1,0,58,96,90,96,135,1,50,50,162,91,
-192,161,64,123,96,110,98,117,0,49,77,141,128,140,66,105,132,128,0,50,
-160,20,193,28,2,58,50,56,194,106,0,95,93,51,74,12,0,58,96,48,
-231,53,1,224,1,3,170,22,160,137,231,92,0,224,37,6,224,39,4,64,
-40,245,171,0,66,153,0,56,65,157,134,27,2,58,50,56,167,62,160,205,
-71,0,0,49,85,201,0,58,96,38,197,177,88,154,1,50,56,166,88,6,
-49,52,49,32,75,32,85,208,193,97,246,103,57,0,49,90,66,227,244,0,
-64,107,64,17,227,97,2,3,32,97,116,32,67,202,163,156,226,54,2,128,
-63,0,52,64,50,0,54,152,147,224,66,14,2,99,111,108,192,61,130,42,
-224,57,8,65,204,152,38,224,61,8,15,92,49,48,38,32,32,32,32,117,
-115,101,100,32,98,121,32,160,73,128,62,1,50,56,235,195,0,160,20,0,
-52,192,20,3,95,49,52,55,192,11,0,58,96,6,97,50,1,55,56,122,
-148,66,2,1,79,32,99,79,136,224,1,50,55,197,31,227,221,11,168,72,
-145,233,96,45,245,163,0,97,121,90,88,0,49,91,163,64,26,130,28,154,
-44,0,50,191,12,2,80,32,73,64,105,240,116,10,31,99,112,112,104,115,
-115,114,99,47,109,97,108,99,111,108,109,45,119,97,108,108,97,99,101,45,
-117,110,105,118,101,114,115,1,101,47,96,33,6,45,49,46,50,48,46,57,
-128,12,208,134,3,55,57,58,49,196,254,191,88,86,249,128,147,96,110,192,
-147,130,76,3,75,32,58,50,190,252,2,95,50,54,65,30,94,192,1,58,
-50,222,254,1,53,48,102,114,64,246,1,95,50,94,177,69,218,91,224,158,
-250,1,49,57,67,10,192,11,72,171,159,6,96,6,194,101,129,57,225,194,
-4,10,69,120,105,116,83,117,99,99,101,115,115,197,225,131,248,127,47,65,
-103,2,48,32,95,97,168,164,224,226,7,11,64,68,5,70,97,105,108,117,
-114,166,85,224,36,1,228,89,2,97,247,70,102,66,87,0,35,105,212,226,
-24,2,160,210,98,24,96,11,0,58,96,6,69,73,69,29,131,238,1,49,
-57,254,249,0,105,185,128,16,128,73,0,58,96,178,97,42,67,79,1,95,
-50,82,97,1,49,55,224,167,3,6,83,121,115,116,101,109,46,64,174,64,
-167,224,192,5,2,67,111,100,128,189,162,116,255,182,2,0,83,124,254,100,
-104,137,11,82,21,0,58,65,165,64,33,224,70,1,130,7,0,34,96,27,
-130,91,5,95,50,54,52,32,95,91,34,1,58,50,64,246,168,227,0,39,
-224,80,1,2,64,95,50,95,31,72,100,95,19,129,101,0,58,64,54,128,
-125,2,95,50,53,228,249,1,64,33,0,58,96,47,102,97,129,169,75,233,
-0,50,94,241,103,61,95,59,1,95,49,64,126,64,41,130,60,6,94,112,
-117,116,98,32,58,96,27,96,148,5,53,56,32,79,32,95,65,56,0,79,
-64,13,0,57,227,105,0,191,56,234,136,1,96,28,167,186,209,161,74,185,
-132,147,125,0,128,10,229,163,6,94,184,228,144,3,224,242,4,143,82,2,
-95,50,53,64,17,96,40,64,254,72,130,0,50,132,242,233,90,6,11,66,
-97,100,32,72,97,110,100,108,101,32,109,193,165,96,37,0,53,122,97,96,
-166,129,173,98,22,233,225,4,221,28,160,121,98,54,0,50,99,122,102,137,
-0,50,133,162,230,71,0,128,76,185,194,3,57,51,32,58,96,32,65,229,
-2,112,50,112,64,13,129,196,2,95,54,56,112,21,246,63,13,116,248,228,
-128,0,163,233,224,6,12,224,42,2,64,15,164,29,224,42,29,160,28,224,
-49,10,224,42,15,224,49,10,224,42,22,224,49,3,68,112,75,195,97,162,
-0,58,96,6,163,31,65,71,73,159,65,146,66,142,0,58,65,203,129,142,
-0,95,94,245,81,205,0,58,98,18,160,48,178,156,209,196,73,30,103,204,
-255,65,0,203,202,130,89,98,120,129,199,223,117,0,58,67,22,128,78,0,
-85,131,61,117,169,96,62,0,58,66,88,64,27,231,201,1,167,191,0,58,
-96,37,101,14,162,18,0,95,95,129,226,187,4,224,179,2,99,80,0,55,
-232,102,4,0,50,95,217,96,72,230,101,0,226,171,5,2,104,101,97,144,
-53,0,75,64,243,64,45,97,7,117,164,166,190,128,255,235,220,2,161,1,
-237,169,0,128,8,147,151,66,79,96,39,224,5,0,203,11,189,115,243,225,
-0,114,157,225,85,0,98,247,98,220,96,40,1,95,50,106,207,160,45,64,
-42,128,6,224,38,0,224,87,6,160,47,192,159,135,94,3,67,39,32,79,
-96,33,71,86,224,109,1,152,50,1,50,51,69,198,81,128,64,33,0,53,
-103,195,65,92,96,40,64,4,163,245,202,43,236,74,0,65,250,70,165,225,
-67,1,1,45,79,168,72,96,71,166,60,162,11,160,64,224,52,10,9,45,
-115,116,114,105,112,45,101,111,108,164,32,224,188,131,229,38,5,224,192,19,
-196,221,225,169,255,225,169,105,193,171,168,113,239,23,12,6,45,45,104,97,
-115,104,101,169,52,227,134,255,227,134,255,225,169,255,227,134,54,72,113,136,
-171,224,6,3,234,86,3,244,8,2,167,43,116,13,225,180,1,231,100,1,
-193,250,244,46,0,96,148,167,88,106,3,244,50,0,64,200,225,65,0,244,
-98,0,160,210,128,52,145,206,192,35,105,246,96,99,173,63,128,36,224,117,
-1,148,205,114,137,0,95,73,34,178,52,224,85,0,168,234,225,46,0,236,
-236,0,96,137,160,22,64,0,240,138,2,128,156,96,222,96,64,105,66,224,
-195,9,224,39,1,224,177,3,128,1,105,74,225,78,1,64,177,168,123,224,
-172,14,241,190,7,192,78,129,135,225,81,11,98,35,229,66,13,0,111,195,
-99,2,66,32,82,149,26,192,91,224,254,4,128,10,80,3,192,0,229,107,
-0,225,203,9,220,230,194,15,226,3,0,160,7,225,242,23,96,35,246,82,
-23,0,49,206,188,227,95,2,224,178,4,192,12,96,180,3,95,50,51,54,
-250,135,4,225,187,34,128,196,226,114,0,154,30,225,192,2,245,235,25,3,
-97,110,115,105,230,164,0,225,3,3,192,78,224,72,31,9,116,114,97,100,
-105,116,105,111,110,97,196,46,160,255,162,40,224,61,21,1,115,116,139,21,
-160,0,109,135,96,53,76,81,79,31,1,95,49,115,214,204,107,224,34,20,
-140,185,128,128,226,123,46,0,120,226,123,4,229,48,2,224,77,44,4,105,
-110,99,108,117,238,152,1,226,207,8,100,250,232,71,14,160,59,0,61,225,
-30,4,225,243,0,225,161,2,128,144,224,139,24,0,80,232,146,6,225,231,
-6,163,38,246,215,7,133,202,224,70,2,0,67,96,70,224,30,17,128,31,
-128,237,225,53,46,0,65,225,131,11,224,250,51,3,45,104,101,108,231,184,
-0,224,73,53,83,222,2,105,111,110,224,76,60,224,75,7,64,59,64,76,
-225,48,2,196,158,241,82,0,227,87,0,228,22,12,198,102,238,34,1,100,
-135,225,169,1,135,181,231,147,3,195,71,112,144,99,71,224,18,0,79,6,
-160,18,96,123,98,179,225,23,30,224,45,67,225,189,4,227,255,7,112,156,
-227,255,6,224,78,21,1,110,111,250,230,1,224,0,0,2,95,50,52,64,
-43,144,235,225,35,6,225,46,3,104,109,224,85,9,2,68,85,73,96,80,
-1,58,50,80,35,115,75,1,52,48,119,189,90,204,155,144,96,5,96,103,
-128,114,0,58,96,188,224,43,3,178,160,128,46,224,41,1,0,58,97,138,
-224,40,5,130,16,224,35,0,0,58,97,192,224,34,3,0,75,224,119,5,
-113,9,231,173,0,0,58,101,55,241,165,0,252,55,8,0,58,96,43,113,
-41,0,58,64,80,128,10,0,73,80,185,0,51,211,247,2,95,50,51,84,
-97,66,92,64,22,213,21,176,203,66,135,91,210,165,181,192,18,1,66,39,
-96,21,225,168,1,241,205,7,101,26,75,70,192,168,64,100,149,236,162,208,
-3,32,95,55,55,214,122,145,139,247,246,0,65,107,103,85,99,32,3,51,
-49,32,95,90,68,1,64,35,192,247,128,192,129,160,121,244,92,76,0,58,
-106,94,96,17,0,65,96,31,129,107,96,31,65,242,0,58,99,50,242,53,
-0,98,5,0,58,107,212,96,19,242,69,0,0,58,107,239,248,96,2,128,
-230,0,58,108,12,180,26,1,95,50,65,45,179,47,99,144,0,58,96,6,
-1,10,65,93,217,4,117,97,108,32,58,96,33,161,96,0,50,148,131,97,
-96,83,63,192,22,96,86,64,28,250,108,1,181,94,154,108,64,32,98,11,
-90,108,101,206,192,139,64,38,3,10,65,32,82,160,162,0,58,96,28,243,
-124,2,129,135,220,32,96,158,128,232,243,24,49,94,5,96,72,225,29,0,
-243,24,5,2,116,97,105,136,56,97,125,64,45,128,213,0,52,65,35,90,
-97,64,214,97,2,71,49,5,10,65,32,73,32,58,96,16,248,253,2,0,
-49,123,211,0,49,132,5,120,253,128,56,152,253,192,11,86,71,96,11,0,
-58,96,6,216,253,2,95,49,53,96,106,164,67,0,51,224,155,2,6,101,
-114,114,111,114,58,32,96,158,184,131,96,38,0,58,96,6,248,83,20,8,
-67,111,110,116,114,111,108,46,69,64,66,64,64,224,26,1,96,18,2,67,
-97,108,128,246,162,60,64,194,127,166,163,15,215,76,64,7,230,97,1,173,
-61,119,69,99,43,65,109,0,50,138,118,67,190,171,130,98,8,2,95,50,
-49,169,50,120,156,64,99,194,218,215,196,64,32,251,64,24,171,212,0,58,
-98,92,96,162,0,85,225,195,7,16,109,100,53,67,111,109,98,105,110,101,
-58,32,101,109,112,116,121,133,93,64,145,66,75,67,35,192,171,64,93,104,
-101,156,59,1,49,48,65,128,65,206,1,64,89,96,128,64,152,102,230,66,
-142,237,3,1,194,146,236,99,3,225,0,1,0,48,96,19,199,29,1,95,
-50,121,44,65,40,122,165,97,17,95,213,2,95,50,48,215,204,128,208,130,
-146,8,94,109,100,53,65,114,114,97,121,66,88,226,127,0,226,240,0,66,
-67,96,161,2,95,50,48,100,183,100,139,248,181,1,248,73,4,2,95,50,
-48,66,255,224,46,2,169,239,192,46,2,95,49,48,163,40,227,36,0,2,
-95,50,48,159,246,1,64,58,96,201,162,227,64,20,121,206,64,211,172,18,
-228,255,10,206,126,224,106,0,225,59,3,192,25,232,153,5,4,67,32,95,
-54,54,160,67,3,95,49,51,50,129,35,4,95,50,48,48,32,128,82,64,
-0,225,123,1,239,41,7,249,55,2,64,52,101,172,224,45,2,96,96,172,
-187,229,131,7,226,161,0,99,80,249,93,1,224,43,10,194,137,224,38,0,
-160,16,0,58,65,97,130,198,255,182,2,206,253,0,58,96,143,99,218,0,
-50,65,114,0,48,68,252,194,5,129,255,0,35,64,69,0,95,72,50,0,
-58,97,161,5,10,65,32,35,49,54,65,112,167,101,2,49,50,49,67,9,
-80,141,162,60,0,49,96,70,0,49,69,11,2,95,49,50,80,225,64,16,
-64,11,0,53,224,11,2,98,137,96,11,1,50,48,64,179,192,11,120,229,
-64,12,155,229,97,37,154,27,137,237,238,183,6,225,120,3,65,187,242,95,
-0,65,254,98,55,0,56,64,7,70,142,96,118,162,251,1,95,49,70,104,
-64,23,70,213,192,23,241,187,1,1,56,49,224,29,9,224,53,16,88,100,
-1,73,32,240,85,0,192,68,224,151,0,67,142,0,83,162,95,128,69,224,
-93,10,128,161,134,44,71,47,224,31,6,130,111,199,155,96,235,4,66,32,
-95,57,52,224,142,12,128,16,96,52,126,254,0,48,199,127,3,75,32,75,
-52,225,255,0,0,58,96,29,100,163,130,248,107,7,128,163,200,60,198,170,
-97,103,155,161,128,34,1,64,95,94,40,130,224,0,51,77,150,255,247,8,
-22,46,47,108,105,98,47,68,97,116,97,47,73,110,116,101,103,101,114,95,
-84,121,112,101,223,218,1,50,56,223,218,160,69,0,57,68,10,0,57,98,
-197,0,85,128,189,224,18,1,0,79,99,106,224,5,0,255,11,0,224,60,
-6,161,72,0,64,69,30,228,9,0,69,232,64,171,128,199,96,218,131,86,
-108,23,66,164,0,56,122,141,227,134,0,98,190,128,19,227,88,1,3,64,
-95,54,51,131,239,0,58,98,163,93,223,1,32,58,96,114,3,10,65,32,
-65,64,10,218,203,0,58,64,141,165,23,71,151,0,49,65,165,64,205,72,
-84,65,39,164,179,96,16,231,151,1,1,49,55,107,78,65,114,167,151,224,
-56,0,69,83,192,11,97,107,124,60,96,6,165,126,74,118,226,8,1,0,
-57,66,39,0,58,64,43,128,31,0,85,193,169,0,57,133,77,0,67,115,
-119,227,21,1,96,47,224,15,8,64,65,233,184,9,96,28,191,56,133,219,
-141,92,0,56,104,221,64,14,2,56,53,32,162,205,172,107,224,21,2,128,
-159,173,57,0,49,97,100,201,5,0,56,100,105,0,49,100,67,0,58,96,
-169,97,27,2,55,32,58,96,19,3,10,65,32,90,64,200,0,58,96,40,
-161,126,64,64,161,76,64,83,235,120,0,96,109,170,70,254,205,7,224,14,
-5,192,189,167,252,140,178,65,180,96,207,0,58,96,6,202,143,160,42,0,
-48,64,4,114,137,192,42,64,60,0,58,96,6,192,42,64,11,1,95,49,
-68,69,0,58,96,43,4,10,65,32,47,61,64,165,163,113,71,109,100,152,
-222,237,203,7,0,75,65,235,235,241,5,236,6,5,210,236,134,188,204,6,
-236,8,1,132,241,167,51,107,63,102,185,160,17,83,75,160,17,0,58,96,
-6,167,51,233,48,3,109,79,160,59,108,145,171,15,96,60,101,242,0,55,
-65,148,0,55,226,239,1,0,55,234,32,2,141,74,2,95,49,53,233,223,
-3,11,110,111,32,109,97,116,99,104,32,97,116,32,131,244,96,32,138,40,
-106,13,130,245,74,52,128,11,0,58,96,6,234,52,29,3,120,99,101,112,
-83,83,0,46,68,103,0,114,179,90,224,39,1,2,80,97,116,64,22,0,
-77,64,128,0,70,203,63,162,204,67,115,129,2,0,83,198,53,1,95,49,
-76,212,233,47,1,0,49,77,196,224,15,3,0,52,66,0,0,52,66,10,
-0,55,161,89,137,107,87,152,242,163,7,79,13,0,54,228,173,2,74,92,
-98,160,0,55,199,62,1,55,50,130,177,64,45,142,67,64,18,226,202,2,
-71,89,225,92,1,85,86,240,206,3,96,156,140,214,3,49,53,50,32,128,
-15,137,205,102,33,97,102,68,213,69,2,96,134,224,39,3,161,135,225,43,
-1,6,39,92,57,50,38,39,39,165,152,193,156,169,131,224,99,0,97,185,
-138,129,224,17,3,139,118,233,56,3,224,168,1,0,64,160,35,134,65,64,
-156,164,146,98,6,128,158,130,163,96,101,224,147,3,64,146,70,50,160,148,
-64,0,0,58,96,147,226,187,0,73,193,227,23,3,135,112,166,169,2,95,
-49,53,99,105,161,162,2,79,32,35,68,213,129,145,170,110,97,186,165,70,
-2,95,49,54,151,47,0,54,137,170,107,149,131,1,0,90,64,28,102,23,
-166,21,224,163,5,224,160,0,0,67,89,242,128,96,136,150,138,14,120,24,
-225,22,7,96,0,5,79,32,80,32,35,55,241,34,3,64,79,0,97,96,
-79,96,27,0,56,224,27,7,0,98,224,27,1,76,104,224,28,5,0,102,
-224,28,2,0,48,224,28,7,146,71,128,28,241,149,4,64,28,109,123,128,
-28,0,57,224,27,7,0,116,224,56,2,250,122,4,64,28,0,118,224,56,
-2,224,143,8,64,3,227,116,1,193,193,65,241,165,198,65,76,165,21,157,
-230,5,49,53,55,32,35,52,65,98,65,45,4,53,55,32,64,35,64,4,
-64,53,196,106,1,54,50,64,56,0,54,227,27,1,142,153,225,189,0,107,
-3,100,79,96,17,0,58,96,6,104,236,136,17,203,210,207,137,1,49,54,
-103,246,203,86,128,19,249,62,2,64,30,64,69,131,183,64,67,226,230,2,
-107,51,108,32,192,64,97,121,226,96,9,64,69,98,0,203,110,192,40,226,
-52,3,224,10,1,96,50,106,44,235,241,1,96,250,129,28,128,74,80,209,
-224,74,4,0,58,96,102,5,10,65,32,111,114,100,65,36,132,78,2,99,
-104,114,64,12,210,170,106,8,234,10,0,64,193,64,23,147,128,128,175,65,
-63,134,40,0,53,129,170,225,159,6,125,170,225,159,0,64,135,96,43,129,
-203,0,60,70,237,64,24,96,108,198,65,64,60,161,243,64,16,97,186,1,
-53,51,64,13,129,86,131,203,65,52,0,80,128,6,205,0,0,58,96,145,
-96,47,1,49,57,64,47,177,104,103,150,0,52,152,28,76,57,99,84,199,
-108,64,17,3,10,65,32,61,64,11,64,35,129,253,64,196,83,176,67,205,
-83,216,131,248,130,46,231,57,0,0,52,115,173,96,15,0,58,96,6,201,
-103,105,163,69,210,0,58,96,35,115,108,1,95,49,84,79,66,72,0,58,
-96,26,96,43,199,216,194,70,105,83,160,10,168,108,135,184,224,32,4,254,
-32,1,196,203,242,104,1,97,20,224,65,4,224,64,5,64,195,98,62,104,
-21,129,214,181,52,171,189,224,169,2,66,95,0,58,96,246,240,227,3,96,
-30,172,41,115,238,97,33,178,242,180,239,0,58,97,61,204,78,128,36,240,
-7,0,240,181,0,126,222,97,68,116,248,98,163,97,166,84,251,64,51,181,
-26,80,78,7,83,116,114,105,110,103,32,58,96,27,170,90,75,59,96,46,
-106,64,97,181,138,96,96,26,147,165,112,27,0,95,105,22,0,58,96,102,
-128,233,160,56,106,111,1,90,32,224,31,0,129,152,4,110,101,119,67,65,
-128,112,2,76,101,110,64,115,129,33,224,224,4,180,213,75,213,244,206,2,
-1,75,52,141,86,0,58,109,159,160,20,239,82,8,109,220,224,49,1,168,
-103,180,214,139,72,224,51,7,1,64,58,109,186,160,52,64,13,229,15,0,
-128,2,126,114,100,52,64,5,98,124,180,225,239,214,13,96,35,233,217,4,
-1,95,49,65,50,84,52,79,133,224,27,11,128,120,245,206,3,224,188,0,
-180,246,4,114,101,109,32,58,109,49,161,47,224,1,1,113,53,64,0,224,
-20,11,224,17,8,224,14,5,224,11,2,192,8,191,98,64,122,225,76,1,
-225,55,13,129,87,2,79,32,58,100,40,100,32,0,48,86,138,1,95,49,
-114,189,224,8,0,2,95,49,48,72,88,115,59,2,95,49,48,68,54,160,
-11,0,49,73,176,192,11,0,53,224,11,2,100,232,84,251,0,58,96,18,
-66,172,4,112,111,107,101,87,133,85,181,20,4,94,112,101,101,107,192,18,
-193,117,107,179,1,95,49,84,65,64,66,86,102,64,90,225,90,3,162,73,
-180,100,224,50,0,115,155,224,50,0,205,191,99,225,201,132,78,177,159,59,
-0,58,96,39,7,10,65,32,116,111,73,110,116,64,128,129,45,3,116,111,
-80,116,69,235,179,158,225,205,6,179,52,175,242,130,5,79,208,64,102,68,
-176,65,30,141,151,101,128,70,240,1,64,95,110,56,138,185,179,105,240,76,
-7,96,52,130,180,100,128,1,95,49,82,46,65,207,128,66,1,67,32,96,
-68,0,95,132,230,0,58,65,142,160,70,230,136,5,178,100,111,134,114,119,
-72,252,0,58,97,196,5,10,65,32,113,117,111,64,232,178,31,226,89,1,
-226,93,2,226,132,73,177,62,97,40,165,149,243,213,2,0,95,112,179,175,
-10,224,21,0,164,168,71,230,162,126,100,172,243,197,2,0,58,85,205,128,
-197,0,95,80,70,0,95,71,57,0,58,96,39,66,87,5,102,114,101,101,
-32,58,176,95,132,6,224,94,6,85,107,149,170,211,29,245,104,3,146,35,
-0,95,80,138,224,118,3,0,58,176,166,227,254,1,64,167,134,100,96,249,
-186,138,212,70,68,45,96,0,224,253,3,193,227,225,69,1,224,119,2,1,
-64,95,80,226,128,162,134,116,1,57,52,250,91,7,103,43,177,37,3,85,
-32,75,51,227,216,5,0,58,177,35,76,97,0,83,100,252,143,185,213,176,
-2,83,32,95,135,0,64,190,224,95,11,128,94,195,112,228,56,9,0,58,
-177,57,4,115,101,113,32,58,241,37,0,2,66,32,95,72,232,162,179,215,
-11,226,184,7,177,18,247,211,6,8,117,110,100,101,102,105,110,101,100,74,
-231,0,58,177,34,229,237,15,208,219,1,54,49,163,206,106,122,106,177,74,
-164,234,161,12,78,56,234,157,2,72,93,64,1,1,95,56,86,143,224,37,
-0,234,126,2,64,37,96,19,96,10,0,95,81,52,0,58,177,71,0,85,
-199,97,64,114,75,206,128,130,64,45,161,65,0,80,96,12,97,123,230,129,
-1,132,14,96,175,65,112,109,8,64,70,153,116,132,192,64,30,131,32,224,
-35,1,224,55,11,193,10,177,203,83,160,131,236,129,5,192,13,71,104,225,
-105,6,180,75,14,58,32,117,110,115,117,112,112,111,114,116,101,100,32,119,
-69,128,2,115,105,122,158,168,3,35,51,50,55,109,159,8,35,50,49,52,
-55,52,56,51,54,73,193,0,58,178,44,244,26,2,235,192,0,81,174,244,
-231,1,66,218,212,13,81,255,129,20,65,146,0,50,225,33,0,129,143,0,
-53,148,18,98,111,178,128,4,105,110,118,32,58,178,126,0,115,75,114,178,
-65,74,133,178,33,230,205,15,0,56,232,86,0,131,16,165,18,178,51,2,
-95,54,55,183,102,80,31,0,95,80,47,0,95,80,69,0,95,116,55,81,
-45,0,95,84,52,140,134,82,151,145,229,241,228,1,251,21,4,87,60,89,
-27,240,145,0,177,220,224,29,1,224,49,1,224,39,5,229,254,0,227,181,
-7,178,5,3,62,61,32,58,177,187,2,62,32,58,177,96,76,14,176,242,
-2,60,32,58,176,235,5,105,99,109,112,32,58,176,237,107,202,78,19,0,
-95,79,218,0,58,176,245,75,199,175,234,65,64,174,51,2,80,32,58,174,
-50,196,127,164,188,193,74,224,20,11,224,17,8,224,14,5,224,11,2,192,
-8,230,1,0,174,116,233,108,13,174,131,4,110,101,103,32,58,174,99,2,
-42,32,58,174,39,2,45,32,58,173,139,2,43,32,58,173,136,224,156,68,
-0,58,237,208,1,192,155,193,143,173,210,171,17,68,221,66,50,116,37,64,
-12,166,113,1,64,58,173,221,117,106,173,189,2,73,32,58,173,187,64,41,
-66,100,109,191,173,190,64,29,128,232,64,9,128,232,8,94,109,97,108,108,
-111,99,32,58,173,167,224,166,2,0,58,173,172,2,85,32,58,173,157,224,
-206,14,0,58,173,176,64,19,0,95,77,93,1,64,95,99,184,173,187,131,
-54,136,197,173,146,6,114,97,105,115,101,32,58,173,137,7,65,46,114,101,
-97,100,32,58,173,131,13,73,79,46,103,101,116,65,114,103,82,101,102,32,
-58,173,9,4,95,51,52,32,95,76,229,0,95,76,197,228,86,1,4,115,
-116,100,101,114,112,254,0,58,173,20,2,73,79,46,128,20,1,32,58,173,
-21,128,59,70,11,224,59,8,1,111,117,113,30,0,58,173,46,131,223,160,
-170,128,243,128,78,4,111,117,116,32,58,173,46,4,95,51,56,32,58,173,
-6,2,73,32,58,172,252,96,100,76,148,0,95,76,177,224,100,4,0,105,
-113,187,0,58,172,233,225,236,2,0,58,172,220,128,99,3,105,110,32,58,
-236,213,2,205,149,208,213,165,251,253,132,1,111,199,162,98,232,160,3,97,
-152,0,95,118,1,64,98,216,108,225,215,1,173,27,205,114,0,51,186,160,
-162,92,77,7,1,64,58,173,42,64,223,129,7,1,65,46,162,40,173,18,
-78,46,0,58,172,254,13,73,79,46,112,101,114,102,111,114,109,73,79,32,
-58,173,5,93,221,128,241,119,27,232,152,4,0,58,172,232,64,35,202,55,
-1,32,95,121,212,96,35,98,240,91,1,225,210,0,3,62,62,32,58,172,
-207,0,95,64,78,65,205,111,211,0,51,233,169,0,0,56,128,65,91,61,
-224,9,0,160,85,1,64,58,172,254,187,227,112,75,176,66,145,154,96,35,
-128,233,128,35,96,32,118,86,192,32,0,95,99,117,172,185,0,95,87,74,
-233,228,0,224,47,4,96,150,108,132,146,250,225,14,0,172,122,232,94,1,
-195,241,172,128,121,102,0,58,236,112,3,230,77,2,172,113,235,166,1,0,
-49,172,5,192,12,96,212,98,18,0,58,172,128,96,66,144,14,238,248,3,
-172,79,166,157,0,51,98,24,111,164,130,0,74,8,129,96,74,213,96,36,
-182,150,0,95,80,17,67,216,128,247,2,75,32,58,230,83,0,69,249,96,
-11,2,66,32,58,226,211,0,7,114,101,116,117,114,110,32,58,164,115,65,
-196,2,61,32,58,128,199,2,80,32,58,236,11,7,229,65,37,0,58,229,
-148,3,228,146,9,229,93,2,64,239,0,58,64,200,1,95,55,71,223,224,
-0,255,224,0,255,224,0,248,1,32,125,
-};
-unsigned char *combexpr = data;
-int combexprlen = 32851;
+122,76,90,49,162,128,0,0,31,118,55,46,48,10,55,57,50,10,65,32,
+95,48,32,95,50,52,32,64,95,50,54,32,95,51,55,32,64,95,51,57,
+32,1,64,64,224,22,4,1,52,50,224,22,13,64,8,128,22,1,49,49,
+192,23,6,50,55,32,64,67,39,32,224,17,0,9,64,66,32,95,50,55,
+32,95,49,50,160,15,8,64,83,32,83,32,95,50,51,51,64,4,29,53,
+32,64,95,49,54,53,32,95,49,54,55,32,64,102,114,111,109,85,84,70,
+56,32,34,45,45,99,112,112,34,64,45,1,64,73,64,95,2,50,53,50,
+64,12,0,66,224,87,1,2,95,50,53,64,77,4,83,39,32,83,39,224,
+196,0,5,64,64,67,39,66,32,64,113,4,53,54,32,95,50,64,51,224,
+105,25,6,118,101,114,115,105,111,110,128,109,96,187,192,77,96,186,7,49,
+32,64,67,32,95,49,52,96,64,0,52,96,64,192,69,7,79,32,35,51,
+50,32,64,75,64,57,2,95,50,55,96,162,64,8,0,56,64,55,65,23,
+224,159,60,2,104,101,108,161,10,224,156,12,65,19,224,150,5,224,60,1,
+6,85,115,97,103,101,58,32,128,61,224,197,15,224,46,1,20,32,91,102,
+105,108,101,32,46,46,46,93,32,91,32,45,68,115,121,109,32,124,128,7,
+3,61,118,97,108,64,11,12,73,112,97,116,104,32,93,42,32,32,91,45,
+79,64,45,4,93,92,49,48,38,96,96,224,87,17,17,92,57,38,92,57,
+38,91,45,45,110,111,109,97,99,114,111,93,32,96,11,3,108,105,110,101,
+96,10,64,8,5,112,114,97,103,109,97,96,14,224,10,2,3,116,101,120,
+116,224,97,36,4,115,116,114,105,112,96,58,96,9,3,45,101,111,108,96,
+13,5,104,97,115,104,101,115,128,109,4,97,121,111,117,116,96,10,3,117,
+110,108,105,224,95,2,224,79,8,0,32,98,135,3,32,115,116,100,64,7,
+8,45,111,112,116,105,111,110,115,32,96,59,7,105,110,99,108,117,100,101,
+61,65,4,4,110,97,109,101,93,161,163,226,2,8,7,66,32,67,32,67,
+39,32,83,99,23,128,8,160,9,160,12,96,13,224,29,0,0,39,97,219,
+0,66,64,11,224,8,5,0,39,65,235,0,66,226,75,2,0,66,98,90,
+226,74,3,1,56,48,224,91,0,224,38,3,163,130,98,46,160,15,226,50,
+17,6,110,107,110,111,119,110,32,128,235,162,58,64,195,67,211,98,62,1,
+50,56,64,70,224,67,19,10,44,32,102,111,114,32,118,97,108,105,100,160,
+71,4,115,32,116,114,121,226,135,6,226,119,2,130,228,225,135,0,225,67,
+2,3,56,50,32,35,96,181,128,0,64,135,97,10,225,7,2,64,153,225,
+4,1,96,167,3,53,50,32,95,97,11,4,95,57,53,32,64,96,64,228,
+185,1,193,9,224,127,1,18,65,116,32,109,111,115,116,32,111,110,101,32,
+111,117,116,112,117,116,32,99,8,20,40,45,79,41,32,99,97,110,32,98,
+101,32,115,112,101,99,105,102,105,101,100,130,137,224,157,1,131,245,64,0,
+131,235,0,67,161,182,68,228,1,56,51,193,222,1,39,66,161,189,1,50,
+53,64,127,97,152,2,95,55,54,129,182,5,49,56,32,95,49,56,128,72,
+130,11,128,26,1,95,49,97,106,128,42,64,74,2,95,55,54,64,57,3,
+95,55,54,53,128,6,0,54,128,71,0,57,64,235,160,0,9,58,55,57,
+49,32,64,10,65,32,89,66,59,1,32,66,96,142,130,129,98,65,64,5,
+226,100,0,4,66,32,95,51,53,96,68,64,185,128,188,224,9,11,160,65,
+66,138,5,66,32,95,55,49,56,65,72,1,57,56,96,189,96,6,1,64,
+66,96,111,1,80,32,69,12,192,119,161,16,64,251,128,65,2,32,61,61,
+65,142,128,212,64,125,0,85,160,25,2,95,49,49,131,44,96,236,224,82,
+42,129,60,224,82,68,97,187,224,82,25,1,95,55,193,164,128,72,160,2,
+224,60,0,98,11,129,124,128,20,224,39,4,64,116,224,39,4,128,16,224,
+17,0,66,71,224,16,6,225,135,0,0,83,101,203,0,48,67,78,3,51,
+32,64,35,67,83,160,0,224,44,2,192,63,224,64,7,0,66,166,214,224,
+62,0,164,173,64,0,195,99,128,104,226,192,4,164,132,66,19,0,80,96,
+26,225,20,5,224,101,2,128,103,224,101,7,224,164,2,224,43,0,64,91,
+5,83,32,95,55,56,57,72,79,0,53,192,33,224,133,7,224,82,1,97,
+141,1,39,32,64,128,224,127,7,224,52,1,97,72,224,51,3,160,26,96,
+53,104,160,2,57,32,64,130,13,1,95,49,99,136,129,182,96,48,163,42,
+225,96,6,0,55,161,172,129,84,225,72,15,160,38,98,92,96,101,192,17,
+128,130,224,175,5,96,40,192,129,160,135,160,6,0,58,99,214,3,10,65,
+32,83,96,145,96,153,65,37,96,170,128,131,64,162,224,173,16,97,71,96,
+38,224,167,13,0,54,163,17,98,116,137,163,96,91,97,52,1,95,55,100,
+187,136,174,3,80,32,64,85,99,50,96,78,132,214,2,95,50,50,68,55,
+233,13,5,1,52,57,169,13,5,64,64,64,85,32,65,64,9,3,95,55,
+56,52,99,58,224,120,0,2,64,35,54,229,209,1,224,193,30,2,66,32,
+90,128,198,224,196,7,0,56,96,35,224,189,1,1,95,55,128,17,64,0,
+195,213,226,129,11,0,83,64,212,227,8,14,99,248,225,18,4,160,12,1,
+55,56,96,242,1,55,50,192,43,230,253,12,3,47,92,57,50,230,199,1,
+128,137,65,1,2,50,52,52,224,54,19,232,81,1,128,59,165,252,224,135,
+7,1,55,56,75,163,1,50,52,71,23,229,245,0,75,35,4,67,32,95,
+54,50,75,100,74,74,65,7,65,222,0,58,99,84,3,10,65,32,79,130,
+100,224,118,11,169,148,134,215,1,55,55,64,84,224,45,20,73,173,192,44,
+64,161,224,44,18,233,216,1,192,48,64,197,224,48,18,224,44,5,65,136,
+224,44,18,74,28,192,42,65,152,224,42,18,106,12,192,43,65,31,224,43,
+23,74,56,192,47,71,114,224,47,18,138,90,192,44,67,234,225,17,19,106,
+124,192,44,65,162,224,44,18,106,158,192,43,68,52,225,151,20,2,119,97,
+114,140,196,1,95,55,104,251,195,136,96,0,0,58,98,15,1,10,65,99,
+205,134,219,1,85,32,64,21,0,55,224,21,2,65,156,128,21,0,54,96,
+21,64,19,1,52,32,66,93,0,58,99,86,96,40,2,95,50,57,69,167,
+73,111,0,51,65,117,0,58,67,224,224,67,1,66,17,128,67,0,51,160,
+67,1,95,49,68,255,0,75,78,2,65,73,0,58,100,193,100,214,224,1,
+8,3,39,32,95,55,64,216,64,101,64,92,141,28,1,55,54,64,112,130,
+153,224,26,14,200,81,224,27,11,136,26,224,19,5,99,226,224,18,5,142,
+155,74,75,0,50,64,16,224,27,8,224,17,5,132,100,224,112,13,105,79,
+224,19,6,102,1,224,18,5,136,61,224,18,4,102,24,224,84,12,97,209,
+65,59,137,219,65,105,0,48,193,153,134,37,3,80,32,35,57,160,17,64,
+71,128,17,0,56,192,17,129,252,3,80,32,35,55,192,17,129,248,2,80,
+32,35,193,225,64,183,128,17,0,53,192,17,129,243,3,80,32,35,54,192,
+17,129,234,3,80,32,35,51,192,17,193,230,75,8,128,17,129,222,64,162,
+192,17,224,180,0,192,179,65,203,80,124,1,54,56,137,132,199,122,169,40,
+2,67,32,60,69,136,161,145,224,25,9,138,65,224,26,13,97,218,139,135,
+231,202,0,160,26,173,14,0,85,70,206,69,248,233,235,1,97,224,98,167,
+1,64,85,194,168,129,224,0,85,64,61,104,251,224,49,5,107,142,128,49,
+128,37,134,66,133,125,128,0,224,132,13,167,98,224,87,15,136,0,224,87,
+19,224,59,17,65,21,224,59,10,2,55,54,56,67,134,144,99,224,160,3,
+225,67,15,98,134,224,189,13,163,131,225,66,10,109,110,225,66,15,224,44,
+6,146,51,224,43,9,224,116,13,168,167,224,70,9,108,127,224,114,30,64,
+36,224,114,12,225,3,14,194,70,224,25,9,136,63,224,168,11,99,248,224,
+124,11,137,41,224,168,29,103,189,225,27,32,226,210,16,226,209,20,224,43,
+6,226,203,2,225,27,6,192,115,227,98,5,225,0,16,226,219,1,224,97,
+6,226,213,2,224,141,24,226,197,2,224,141,5,224,44,11,226,117,15,69,
+90,1,49,55,197,63,1,64,58,96,6,70,116,0,39,100,116,107,75,173,
+240,106,226,234,45,1,204,145,64,27,107,9,1,49,52,162,128,99,77,203,
+9,224,16,3,106,232,160,17,69,15,99,113,96,116,199,115,224,1,9,108,
+146,160,0,224,29,20,224,26,17,224,23,14,224,20,11,224,17,8,224,14,
+5,224,11,2,192,8,109,221,128,0,0,58,103,147,101,192,71,197,2,57,
+48,32,232,120,1,31,92,51,52,38,99,112,112,104,115,115,114,99,47,109,
+97,108,99,111,108,109,45,119,97,108,108,97,99,101,45,117,110,105,85,92,
+1,101,47,96,33,6,45,49,46,50,48,46,57,128,12,2,46,104,115,64,
+58,4,44,56,48,58,49,138,239,102,23,80,208,2,10,65,32,65,99,0,
+90,96,1,161,107,0,58,112,241,168,78,71,3,0,90,203,18,0,58,113,
+18,96,51,128,49,224,51,3,134,155,241,127,3,65,255,246,154,0,193,185,
+130,2,143,87,224,29,1,173,174,0,55,86,103,193,244,66,119,98,238,243,
+96,2,1,95,55,78,178,1,95,55,81,216,87,41,143,21,1,55,54,171,
+157,0,80,233,179,15,3,115,116,100,105,201,176,109,17,108,147,2,95,53,
+51,98,110,0,58,114,1,71,35,2,53,51,55,151,153,0,58,96,38,96,
+208,64,175,76,23,96,105,0,53,81,141,1,55,53,101,181,131,142,1,95,
+53,86,151,141,200,247,48,0,2,53,51,51,225,184,2,15,85,84,70,45,
+56,47,47,82,79,85,78,68,84,82,73,80,172,176,97,33,244,62,4,87,
+234,96,209,0,50,99,73,3,64,64,95,53,115,104,0,58,96,225,1,10,
+65,97,170,65,29,0,58,96,130,225,111,6,225,78,2,1,95,53,96,7,
+97,64,224,22,2,160,204,225,77,0,128,93,248,47,2,64,88,131,71,96,
+132,73,25,0,55,82,179,0,58,65,113,64,22,8,94,102,108,117,115,104,
+98,32,58,96,22,65,50,64,170,97,139,0,58,97,155,131,247,160,216,225,
+223,2,3,95,55,50,49,104,123,2,95,55,53,99,182,0,49,96,92,104,
+13,0,58,97,247,128,57,226,61,13,129,230,68,1,227,78,1,224,182,3,
+228,81,3,98,50,67,88,1,95,55,71,225,1,95,49,102,142,1,55,53,
+197,74,135,204,64,4,169,251,1,55,48,96,68,239,28,0,234,152,1,0,
+55,89,113,1,95,55,98,37,64,46,75,152,148,66,1,53,56,214,112,213,
+240,1,56,52,64,218,130,147,203,96,0,54,82,182,128,63,128,75,2,64,
+95,54,75,209,64,115,238,80,0,0,58,97,16,97,114,0,80,67,36,78,
+96,2,75,32,79,138,117,99,10,0,58,96,87,226,140,1,76,15,111,122,
+160,11,64,144,1,55,52,96,223,65,117,0,54,66,170,97,47,79,98,101,
+181,0,55,90,63,64,6,162,86,2,55,53,48,97,176,162,227,180,191,227,
+111,0,0,79,67,133,177,26,131,140,129,211,145,138,241,181,17,179,199,164,
+216,115,13,227,237,0,239,251,8,207,82,198,22,145,172,224,119,0,2,64,
+64,82,69,226,161,37,162,83,160,127,167,34,224,122,10,224,39,25,128,117,
+96,114,128,40,100,121,66,7,210,44,224,144,27,224,180,28,130,123,0,58,
+97,108,165,79,64,37,226,104,1,98,107,98,143,243,12,20,0,57,128,90,
+129,72,225,70,1,138,94,228,102,1,10,98,101,103,105,110,123,99,111,100,
+101,125,132,97,160,158,161,253,243,127,4,242,11,2,201,117,225,162,10,224,
+120,9,241,88,22,2,101,110,100,224,128,3,224,130,7,226,128,0,228,138,
+0,97,62,1,95,55,244,170,3,131,203,225,195,19,161,106,226,88,15,171,
+117,96,30,128,96,211,213,3,95,51,48,50,98,224,181,252,64,208,1,56,
+57,64,197,163,60,96,147,1,55,52,66,13,6,51,53,56,32,95,52,57,
+165,151,0,57,129,211,1,95,55,139,241,224,200,0,224,100,2,96,57,123,
+243,84,135,102,20,224,241,3,248,22,0,128,114,0,51,100,0,225,30,1,
+107,95,160,44,225,52,14,0,58,96,8,70,5,0,50,230,6,0,64,55,
+1,10,65,231,142,0,87,61,96,22,208,106,0,90,64,151,224,4,1,96,
+6,168,111,0,58,96,231,224,37,11,0,90,66,209,160,34,133,210,136,34,
+164,140,64,149,96,54,0,89,162,57,161,77,226,192,11,78,142,5,95,50,
+48,54,32,95,69,48,3,95,49,57,53,110,152,96,0,2,66,32,82,160,
+64,213,189,72,38,250,130,0,128,76,130,12,151,88,136,53,224,2,0,183,
+109,224,21,13,164,176,224,2,0,224,43,0,224,15,2,134,71,162,96,64,
+3,224,19,0,193,41,224,16,2,247,221,0,130,37,224,154,11,234,209,0,
+192,83,228,255,2,96,96,0,80,101,208,69,224,128,24,2,95,50,50,66,
+171,163,93,96,5,1,95,55,71,75,227,81,1,6,112,114,111,103,114,97,
+109,99,79,224,21,1,5,99,111,109,109,101,110,146,175,228,141,1,119,139,
+228,198,4,164,224,163,188,102,16,192,49,224,228,3,160,225,247,49,3,107,
+178,4,67,32,95,57,52,129,186,172,138,224,61,3,193,17,161,14,161,11,
+224,255,4,133,139,224,249,4,96,253,224,176,41,224,177,53,192,60,225,196,
+46,162,89,128,157,96,30,67,66,227,83,0,225,198,26,225,176,3,225,220,
+13,182,90,225,203,103,163,213,155,164,230,32,2,193,213,227,154,1,224,70,
+19,0,58,96,142,104,74,161,53,96,60,160,5,230,174,2,230,53,12,76,
+157,64,3,193,7,248,166,3,253,65,6,255,7,16,4,76,105,110,101,32,
+192,64,193,65,128,47,4,64,95,49,51,49,94,169,193,75,224,71,19,0,
+58,192,68,129,65,64,62,224,46,19,0,32,87,118,5,32,98,101,102,111,
+114,192,126,102,140,255,115,5,64,36,0,46,255,114,4,192,208,97,179,224,
+10,8,224,113,19,1,73,110,159,48,224,74,0,226,46,3,135,71,224,66,
+23,2,32,97,116,128,183,225,47,163,96,0,226,5,199,0,58,100,38,99,
+55,64,1,2,80,32,73,139,242,195,142,168,75,225,213,0,232,91,3,132,
+194,224,219,10,232,128,4,224,14,0,64,67,0,58,108,37,177,37,76,58,
+90,237,0,48,120,97,195,248,79,165,108,84,72,249,1,95,55,110,32,129,
+8,67,139,75,39,103,222,184,64,99,210,0,55,141,69,79,54,236,216,0,
+109,125,236,145,3,237,18,31,96,173,3,80,32,95,55,73,169,225,108,2,
+217,97,0,58,110,5,176,183,1,75,52,240,136,7,64,32,64,85,128,32,
+224,30,1,224,32,5,137,52,96,32,96,35,128,27,0,58,96,194,128,24,
+0,51,224,57,2,224,59,2,64,35,0,54,225,65,0,105,1,194,148,100,
+171,0,80,130,39,206,152,141,74,159,103,224,67,0,133,203,198,94,232,199,
+7,160,21,96,18,192,88,141,151,224,35,7,224,41,3,224,43,1,96,136,
+66,21,229,113,20,7,95,95,70,73,76,69,95,95,227,95,3,224,91,65,
+2,76,73,78,224,91,21,166,204,224,91,43,2,68,65,84,224,91,80,2,
+84,73,77,224,91,6,96,57,192,89,74,227,160,83,170,62,237,189,2,3,
+67,32,95,54,130,240,96,34,66,245,82,51,2,95,55,50,232,194,1,128,
+169,224,2,7,192,30,225,121,3,224,112,2,224,199,7,224,49,2,224,157,
+15,224,85,0,224,14,3,207,222,196,94,224,30,0,230,119,0,224,179,12,
+224,124,2,96,40,224,141,5,160,18,192,62,201,61,71,186,234,254,5,230,
+156,1,232,224,1,100,11,150,71,192,5,141,93,225,40,1,0,79,128,155,
+64,48,73,113,192,195,3,95,53,57,48,159,230,205,244,239,216,0,105,67,
+227,175,1,224,173,4,224,175,1,224,22,65,225,178,13,160,25,97,15,69,
+10,178,166,64,22,225,101,11,224,95,5,119,123,160,0,226,220,3,128,91,
+192,35,96,91,224,59,4,226,249,12,227,20,0,129,71,161,51,125,196,1,
+95,57,178,67,64,7,1,95,54,170,44,192,62,224,115,1,161,208,224,115,
+0,128,88,243,156,3,96,15,1,54,51,70,54,96,16,230,92,7,230,77,
+8,224,101,0,226,52,6,226,58,3,224,233,2,226,60,1,235,30,5,226,
+64,16,227,106,4,98,68,224,56,1,110,253,129,43,1,95,54,107,184,226,
+47,7,227,8,13,103,74,247,144,55,22,76,97,110,103,117,97,103,101,47,
+80,114,101,112,114,111,99,101,115,115,111,114,47,67,64,34,8,47,77,97,
+99,114,111,80,97,115,247,176,0,5,49,53,50,58,50,50,196,143,225,118,
+6,3,95,53,48,51,160,9,0,54,230,114,2,3,95,55,50,53,66,112,
+0,54,228,218,3,64,77,7,37,72,58,37,77,58,37,83,235,104,1,2,
+95,55,51,243,130,0,226,151,19,224,114,49,6,100,32,37,98,32,37,89,
+224,114,39,192,23,81,81,64,25,64,130,232,223,1,2,95,55,51,237,216,
+5,224,46,16,0,51,113,218,145,193,0,55,233,15,0,224,123,16,227,204,
+2,98,35,96,251,85,219,64,34,230,50,2,245,154,3,96,0,231,54,4,
+96,21,226,126,3,231,225,7,160,2,224,39,12,226,249,0,224,137,9,224,
+141,32,224,221,14,224,164,3,132,57,235,31,0,224,234,34,224,137,59,206,
+115,233,89,1,233,101,4,138,215,161,53,128,10,192,113,225,226,0,64,85,
+0,52,85,92,68,189,174,142,242,102,7,130,36,2,95,55,51,230,30,3,
+128,81,119,225,96,148,0,51,98,29,225,140,0,1,95,54,92,83,129,118,
+1,95,54,88,62,145,172,64,0,0,58,106,237,105,250,100,145,196,254,1,
+95,50,117,38,96,163,248,146,1,171,171,169,252,96,61,147,54,203,233,0,
+75,72,48,0,55,228,77,2,76,30,6,98,114,101,97,107,115,44,77,160,
+228,92,70,6,72,97,115,104,68,101,102,76,130,164,93,3,50,53,58,54,
+131,149,224,138,130,108,127,0,75,156,43,1,75,50,96,7,0,58,97,193,
+252,117,0,98,37,0,58,99,206,252,189,0,192,19,140,220,228,175,1,1,
+55,50,126,126,98,172,225,154,4,130,189,68,77,77,167,0,50,74,23,0,
+48,144,209,0,48,185,152,0,58,100,169,5,10,65,32,73,32,58,96,41,
+64,88,2,55,50,55,64,13,140,62,3,94,71,69,84,74,49,3,77,73,
+76,76,96,36,140,60,114,12,225,74,1,16,100,101,102,97,117,108,116,84,
+105,109,101,76,111,99,97,108,101,64,231,0,58,101,44,149,201,230,221,0,
+228,227,3,67,74,0,49,204,52,0,58,69,95,162,58,99,21,131,202,98,
+174,128,207,64,1,221,173,228,85,4,224,30,1,128,16,93,92,0,50,224,
+40,1,227,207,1,122,48,235,32,12,2,79,32,35,77,113,131,156,224,57,
+2,224,132,6,224,112,1,224,9,8,0,39,237,38,5,173,53,227,137,0,
+139,65,246,66,9,224,5,3,103,218,168,183,246,78,15,224,233,0,229,131,
+7,237,79,6,172,35,137,17,0,85,94,222,196,177,193,41,128,69,248,85,
+0,225,17,11,0,49,228,231,3,229,21,1,159,39,225,146,1,160,10,1,
+95,50,78,245,128,0,224,54,0,193,147,233,220,9,225,3,51,225,103,3,
+244,237,0,230,103,10,234,41,12,225,23,14,224,83,4,225,29,27,0,52,
+225,29,4,224,126,4,96,231,233,137,0,64,184,251,58,0,225,28,1,224,
+110,1,226,215,4,224,200,9,160,2,224,29,1,166,209,231,142,6,224,188,
+0,97,75,224,17,3,139,203,224,31,1,128,13,64,71,235,50,2,148,255,
+2,95,54,55,225,196,0,220,103,231,83,2,237,152,7,224,1,1,238,122,
+15,227,89,4,224,57,2,224,85,13,224,79,1,226,151,33,192,199,64,49,
+235,222,0,193,134,160,106,245,215,1,1,49,53,245,216,6,224,54,3,224,
+53,16,246,13,7,224,52,3,0,75,225,187,4,158,138,129,237,160,6,135,
+93,224,38,2,64,16,64,98,160,67,227,58,2,0,89,97,73,0,83,83,
+33,96,53,226,198,1,226,186,17,226,172,3,251,117,2,128,115,64,5,0,
+58,109,153,231,211,42,100,243,0,58,104,139,101,243,1,56,52,135,210,128,
+214,0,67,76,115,96,97,0,58,108,243,192,96,184,30,96,2,237,63,3,
+240,71,3,133,225,162,4,2,64,95,55,94,216,2,95,55,49,139,104,70,
+19,64,6,165,247,230,59,0,216,207,0,32,126,137,243,51,5,98,228,160,
+4,230,108,1,64,177,244,210,19,7,35,105,110,99,108,117,100,101,103,252,
+244,210,5,224,47,12,119,195,0,49,244,219,2,224,92,20,117,47,0,49,
+224,91,3,224,152,0,0,53,67,19,224,87,18,64,254,189,140,225,153,1,
+1,64,83,64,9,76,133,97,159,1,49,56,189,92,2,50,49,56,71,181,
+208,37,224,185,13,3,57,50,38,47,160,94,161,97,65,182,245,40,5,162,
+133,161,186,149,5,0,66,66,79,66,182,98,98,1,95,50,106,104,66,58,
+64,42,0,58,64,117,130,27,5,52,54,32,75,32,85,228,110,0,227,198,
+1,129,38,224,11,0,2,95,55,49,196,96,0,58,96,199,244,102,0,224,
+46,1,224,61,17,192,8,221,220,64,75,244,228,0,96,144,65,54,192,17,
+137,88,66,71,244,239,1,162,176,65,1,128,20,94,102,245,28,1,66,130,
+226,200,0,231,224,3,132,166,136,6,229,160,2,225,47,1,196,196,195,3,
+160,171,2,95,55,48,129,84,246,43,0,99,217,2,95,50,56,73,174,134,
+20,225,112,2,99,19,67,227,1,95,55,75,152,227,140,0,0,54,141,217,
+0,95,98,21,1,95,54,174,28,1,95,55,65,154,0,58,99,62,246,45,
+1,161,11,96,206,183,120,76,10,170,38,0,54,171,255,98,141,118,211,1,
+48,51,73,50,67,92,194,250,226,210,5,0,79,151,103,229,114,1,1,95,
+55,76,104,0,58,96,207,106,49,5,48,57,32,95,53,57,76,107,96,209,
+0,58,96,31,251,40,3,231,212,17,128,200,129,60,134,210,132,35,2,95,
+54,55,66,222,97,64,216,204,64,177,128,13,229,198,2,96,35,2,54,52,
+52,234,221,0,135,103,3,95,54,54,57,64,137,64,19,226,98,2,137,149,
+225,191,1,225,200,4,230,128,4,232,177,1,225,147,0,64,201,228,180,0,
+102,114,202,169,1,95,50,120,30,1,50,56,193,88,70,185,67,180,171,134,
+4,50,55,48,32,95,72,49,228,50,21,31,85,110,109,97,116,99,104,101,
+100,32,35,105,102,58,32,112,111,115,105,116,105,111,110,115,32,111,102,32,
+111,112,101,110,12,32,99,111,110,116,101,120,116,32,97,114,101,58,228,48,
+1,64,100,0,56,100,239,68,9,107,97,1,50,56,130,169,228,64,2,232,
+130,1,238,145,3,231,72,2,224,251,1,202,170,69,104,224,61,8,224,42,
+7,244,66,25,231,232,4,200,174,231,235,3,129,81,200,182,224,25,3,244,
+1,0,224,69,9,224,72,0,224,184,7,96,75,224,146,13,163,215,168,10,
+245,88,0,186,124,192,0,226,30,10,160,53,224,31,20,226,68,0,130,207,
+224,171,2,164,30,224,36,6,224,71,16,160,43,224,146,2,224,41,15,224,
+50,1,224,191,26,224,45,2,224,93,5,192,175,224,31,4,224,2,12,224,
+52,4,224,191,23,224,56,17,99,56,224,42,2,224,5,6,225,61,7,224,
+60,6,225,211,8,224,1,5,249,4,25,0,100,111,151,249,2,3,224,0,
+0,224,189,6,224,152,3,224,14,9,224,152,72,4,117,110,100,101,102,224,
+151,27,225,103,6,225,69,7,224,151,71,1,105,102,224,152,144,224,151,15,
+227,123,3,224,151,12,192,11,227,213,0,128,0,224,143,19,224,190,7,224,
+43,19,224,187,27,224,184,11,225,79,6,226,113,6,224,210,4,224,141,68,
+2,101,108,115,227,17,12,224,143,113,225,31,13,172,69,121,26,64,2,64,
+130,249,191,4,224,5,27,245,117,2,240,114,1,224,139,18,1,110,100,224,
+140,1,201,223,231,236,67,96,96,84,132,128,100,231,194,5,231,130,14,192,
+0,225,160,112,225,20,3,224,0,3,224,144,111,5,112,114,97,103,109,97,
+224,145,11,243,129,0,226,50,8,192,10,128,122,143,90,224,22,3,192,146,
+104,153,224,11,10,241,122,9,128,126,192,16,254,79,8,128,245,232,124,6,
+250,23,5,238,232,0,96,40,87,163,187,240,108,51,224,212,0,160,0,233,
+21,3,253,43,5,225,120,6,228,233,4,224,159,1,224,1,1,225,147,11,
+224,39,11,64,1,228,221,26,143,89,225,142,9,231,223,6,229,137,12,224,
+112,9,224,156,10,224,36,9,64,1,224,153,25,6,119,97,114,110,105,110,
+103,224,153,8,226,153,4,226,168,6,224,125,65,4,101,114,114,111,114,224,
+123,11,224,2,9,225,15,0,224,99,6,224,161,0,224,69,2,224,140,11,
+228,220,29,80,165,224,143,7,224,73,7,209,186,132,246,124,112,252,157,1,
+229,148,4,192,183,128,127,192,9,227,89,1,224,8,9,154,164,238,2,5,
+140,12,3,95,49,52,56,64,112,0,57,85,63,1,50,57,96,113,128,85,
+82,233,96,21,145,36,128,69,0,57,133,142,118,145,1,95,51,78,212,192,
+202,160,27,144,52,128,0,224,219,1,225,219,6,225,240,2,228,24,1,224,
+38,8,224,19,10,224,16,7,224,13,0,110,180,144,243,128,28,128,20,70,
+27,1,51,48,78,53,6,51,53,56,32,95,52,57,145,227,96,0,227,233,
+3,226,26,34,237,63,9,64,1,237,10,14,0,83,64,71,193,98,225,211,
+1,65,45,238,203,2,192,0,225,225,12,231,82,4,231,8,3,193,167,252,
+208,1,1,50,53,82,95,117,20,1,52,57,141,108,160,30,231,43,2,231,
+45,19,0,87,131,181,20,58,32,117,110,107,110,111,119,110,32,100,105,114,
+101,99,116,105,118,101,32,35,162,190,98,23,148,41,224,73,19,79,55,2,
+105,110,32,231,106,11,224,237,9,166,49,98,12,224,207,0,226,84,12,226,
+56,9,129,246,2,95,52,57,64,92,225,210,6,227,46,255,224,16,0,227,
+46,15,128,31,160,45,227,48,11,119,11,1,95,50,92,107,160,0,225,106,
+3,128,207,92,90,226,30,62,231,87,2,160,240,130,232,65,132,128,5,226,
+224,4,231,205,27,96,31,226,101,3,163,81,227,78,1,128,197,227,42,3,
+226,233,60,224,160,31,64,0,232,71,7,161,232,233,24,16,118,235,247,252,
+1,226,41,1,226,228,0,129,248,224,131,1,96,50,0,53,73,17,96,144,
+1,95,54,84,176,1,95,50,84,86,64,0,225,86,0,224,98,0,0,85,
+161,101,192,86,228,145,3,121,184,224,193,1,128,145,64,5,149,79,247,183,
+27,225,54,3,1,49,51,101,32,229,162,0,224,225,0,117,47,181,142,224,
+92,2,117,174,163,249,224,0,0,224,234,1,160,9,161,110,129,34,224,172,
+6,225,150,16,115,236,85,106,226,242,2,224,49,21,3,95,54,51,51,117,
+104,192,106,224,49,35,128,16,64,0,226,244,1,229,244,3,225,206,1,225,
+238,3,193,146,1,95,54,65,91,225,196,1,129,172,227,208,1,85,92,224,
+119,2,160,34,100,206,130,16,224,41,15,64,21,65,255,4,67,32,95,54,
+54,252,177,0,224,59,37,96,180,102,236,224,70,6,192,55,98,160,161,33,
+128,13,128,6,64,102,160,86,2,95,54,55,183,152,225,197,11,228,212,2,
+197,10,226,172,2,224,28,8,224,15,5,224,64,3,64,26,224,33,5,87,
+188,119,198,228,63,1,101,57,96,18,129,152,228,33,0,226,237,9,247,210,
+5,3,66,32,95,53,130,224,224,31,2,1,52,57,160,31,166,53,96,0,
+224,230,8,76,241,136,42,2,95,50,53,64,123,224,68,2,128,93,134,160,
+70,76,96,136,226,89,7,253,3,0,194,215,192,17,224,91,5,98,235,249,
+47,0,224,116,24,224,58,17,193,61,162,37,128,217,202,223,96,20,228,160,
+2,162,70,192,15,162,76,224,14,1,71,117,135,142,165,32,193,216,134,110,
+192,107,97,97,135,157,1,55,48,229,208,1,1,55,48,230,150,0,0,52,
+97,99,162,165,224,203,6,192,46,231,177,5,0,55,71,9,224,30,2,160,
+159,128,19,224,14,5,160,184,162,84,160,9,96,8,167,105,121,100,225,228,
+1,0,66,254,239,1,249,173,13,64,32,68,247,2,53,57,48,255,167,0,
+110,202,1,64,35,89,248,128,0,225,130,1,64,252,1,56,50,228,6,1,
+223,7,2,95,51,48,144,207,237,106,10,97,160,97,91,1,95,50,240,245,
+2,226,234,1,231,48,12,233,156,16,225,17,6,192,100,230,139,14,165,16,
+232,135,0,226,238,1,229,210,1,225,115,2,225,248,1,64,135,203,132,235,
+184,4,139,175,224,49,4,225,146,0,224,77,5,160,31,248,195,4,224,30,
+6,224,114,1,248,196,41,224,156,5,229,204,7,224,2,1,249,139,10,226,
+93,0,224,90,10,138,141,224,90,0,239,221,9,224,32,3,224,206,8,140,
+138,2,50,50,57,224,209,1,110,175,240,78,3,246,129,1,224,43,26,96,
+39,224,30,17,192,73,224,0,1,228,0,2,237,99,7,224,166,2,224,195,
+1,224,189,5,224,105,15,244,195,6,225,21,6,224,78,42,245,162,4,224,
+173,5,224,77,1,224,74,1,0,67,224,74,17,243,188,5,128,46,99,45,
+101,160,128,19,226,50,1,96,151,96,13,128,22,238,29,1,224,57,2,125,
+236,128,34,66,61,192,122,93,244,0,64,132,56,96,80,97,103,128,101,64,
+34,253,199,0,128,34,200,213,232,229,10,245,105,109,224,224,3,113,79,225,
+110,0,160,115,0,56,224,234,13,225,12,24,161,104,196,90,231,24,0,160,
+0,225,43,1,239,102,4,233,119,36,101,7,234,42,6,160,52,228,239,0,
+232,203,0,195,214,194,72,227,4,1,233,1,0,224,240,19,230,226,1,137,
+81,224,223,7,224,122,1,161,77,235,184,4,226,15,0,198,120,192,85,232,
+12,12,231,243,13,228,152,5,99,189,239,199,4,226,190,2,231,185,2,97,
+65,231,137,33,227,95,6,224,16,4,128,14,225,95,6,166,79,231,107,85,
+231,73,0,231,74,10,231,71,11,231,70,5,161,30,241,170,0,71,58,225,
+0,27,224,239,19,231,63,5,231,56,3,96,13,3,49,57,48,32,238,167,
+2,31,51,52,38,99,112,112,104,115,115,114,99,47,109,97,108,99,111,108,
+109,45,119,97,108,108,97,99,101,45,117,110,105,118,4,101,114,115,101,47,
+96,33,30,45,49,46,50,48,46,57,47,76,97,110,103,117,97,103,101,47,
+80,114,101,112,114,111,99,101,115,115,111,114,47,67,64,34,64,5,0,73,
+69,227,2,46,104,115,64,89,4,44,54,56,58,53,131,238,0,58,96,145,
+1,10,65,140,0,64,174,87,158,132,228,196,239,65,76,67,76,226,140,3,
+194,142,0,58,97,186,3,10,65,32,80,65,22,0,50,64,228,164,11,231,
+135,3,97,151,65,98,130,188,201,170,160,15,1,35,57,65,134,192,12,96,
+43,233,204,0,0,58,96,8,96,159,239,63,4,1,95,50,160,52,64,54,
+164,163,65,69,107,223,0,58,98,189,5,10,65,32,85,32,90,224,1,8,
+225,183,3,0,58,106,124,96,93,99,0,65,225,5,54,49,50,32,64,73,
+64,36,129,5,162,51,160,192,66,59,2,54,57,56,64,116,101,21,128,140,
+1,54,57,128,213,128,230,1,32,79,65,59,0,80,65,237,192,216,240,143,
+19,0,35,159,124,0,32,129,144,208,198,0,79,129,9,160,173,96,6,97,
+155,132,140,128,171,128,204,64,3,98,156,96,180,226,74,12,97,244,2,48,
+58,48,225,243,0,0,51,96,245,3,95,55,48,49,224,41,2,3,112,114,
+101,68,96,138,0,100,64,39,0,58,96,189,1,10,65,103,51,146,105,64,
+241,2,53,52,48,65,208,196,143,138,185,0,58,64,72,129,112,4,75,50,
+32,75,52,225,106,6,0,58,97,25,128,30,0,51,192,30,160,28,0,58,
+97,59,161,130,64,1,194,72,64,0,227,87,1,168,122,227,201,6,129,161,
+224,25,15,233,96,2,224,29,13,233,129,3,224,33,16,224,36,3,224,37,
+20,224,40,4,224,41,23,224,44,5,224,45,26,224,48,6,224,49,29,224,
+52,7,128,53,239,107,8,233,133,8,237,245,0,224,0,1,193,138,224,55,
+5,224,103,14,224,40,19,224,43,6,224,83,30,224,75,16,224,41,50,192,
+232,199,213,165,174,244,188,6,224,5,9,236,9,0,225,21,3,192,1,0,
+89,224,96,1,224,28,9,224,32,6,224,172,14,230,177,1,224,42,2,224,
+74,11,172,149,192,155,233,92,1,192,5,224,105,2,192,67,230,232,5,192,
+250,64,25,245,191,1,160,13,224,2,4,224,242,16,165,238,5,67,32,60,
+32,64,35,237,111,3,224,67,9,128,218,192,34,224,70,5,160,203,128,70,
+245,145,6,224,1,1,148,224,224,22,4,76,29,192,19,224,103,3,238,96,
+6,224,13,5,97,94,230,162,9,64,0,65,32,0,85,82,74,101,217,102,
+146,82,24,224,27,0,129,66,64,74,234,127,2,240,243,0,0,80,64,57,
+156,88,239,163,1,224,193,3,64,1,224,197,0,224,25,4,0,82,224,198,
+0,227,144,7,128,24,224,41,1,225,247,1,224,195,5,0,52,224,114,11,
+255,129,0,224,64,5,96,196,239,45,5,244,113,1,224,232,17,192,234,150,
+77,230,215,16,1,32,32,237,150,2,225,19,11,224,157,1,128,13,235,81,
+1,97,123,130,0,135,241,136,110,224,0,4,224,201,1,128,1,239,96,9,
+226,104,17,128,28,162,104,236,93,1,224,37,4,225,31,1,3,67,32,61,
+61,224,39,17,193,200,225,178,8,229,61,0,224,81,1,252,118,0,224,100,
+4,64,44,96,42,160,173,160,26,96,17,90,167,173,41,225,4,1,192,106,
+240,168,8,192,36,64,61,76,78,2,95,50,57,170,107,226,147,12,224,78,
+0,224,1,17,226,166,1,224,43,21,194,184,224,37,9,225,151,10,225,49,
+0,224,1,1,226,206,15,235,205,1,224,47,6,253,192,13,226,212,13,242,
+2,3,196,251,227,193,20,101,147,137,246,162,140,64,65,161,59,225,66,8,
+162,185,229,80,4,224,239,47,227,127,2,224,239,27,194,102,227,196,6,224,
+159,2,224,154,5,226,149,2,227,222,16,228,199,5,0,54,227,210,16,224,
+93,9,224,248,121,224,68,2,224,248,55,0,52,224,248,19,231,170,6,224,
+244,11,226,24,10,192,2,128,40,224,38,0,231,235,0,224,73,16,224,70,
+27,160,108,224,65,11,224,62,4,224,53,2,193,97,225,20,2,226,238,2,
+228,116,10,225,56,14,227,61,7,224,88,5,160,220,64,21,0,85,97,176,
+1,54,55,79,120,1,54,55,100,154,0,67,77,41,247,210,2,224,100,70,
+0,56,100,63,224,100,5,212,214,224,100,26,225,57,2,224,46,0,230,253,
+3,224,88,5,229,100,17,226,47,3,133,229,225,172,0,64,14,161,123,65,
+151,129,155,192,44,201,151,155,212,69,225,96,123,192,96,237,65,0,129,11,
+237,36,10,192,64,161,30,129,226,242,217,4,224,38,0,144,160,168,238,165,
+119,224,96,0,240,155,85,7,84,111,107,101,110,105,115,101,208,155,5,50,
+49,53,58,49,51,245,137,7,224,1,5,235,67,3,224,31,11,224,35,7,
+225,132,6,224,2,2,235,107,12,224,83,14,235,110,39,161,124,227,190,6,
+64,43,235,114,67,150,117,128,0,228,71,10,224,74,35,235,189,255,235,189,
+255,96,0,235,189,65,226,80,48,151,201,224,37,10,226,80,2,224,86,6,
+235,126,8,96,78,225,139,8,232,74,13,1,49,50,227,84,1,224,43,2,
+183,165,225,138,26,227,72,1,160,38,64,15,192,8,64,48,152,97,87,229,
+1,56,49,96,61,247,229,9,225,156,15,1,45,123,232,142,8,224,251,13,
+225,43,4,233,142,15,194,130,88,183,247,110,7,235,126,2,226,145,22,233,
+145,14,225,6,7,96,42,225,69,32,1,49,50,224,63,1,226,209,55,1,
+125,45,226,209,22,226,42,2,199,18,226,176,9,128,21,224,183,4,227,201,
+13,224,248,11,227,201,33,224,248,3,192,59,226,63,23,252,53,7,225,11,
+31,192,96,195,136,224,100,3,160,159,225,93,0,96,107,234,26,7,224,67,
+1,192,1,229,229,62,135,153,229,229,13,224,47,2,228,122,5,0,56,97,
+208,224,161,5,226,59,16,229,246,21,224,0,1,224,199,1,160,151,96,73,
+240,115,21,224,52,6,231,104,6,240,78,2,163,191,232,17,2,224,76,1,
+229,29,29,226,195,10,128,1,225,136,10,226,220,2,231,225,10,128,24,224,
+102,8,226,223,8,121,122,224,90,9,194,223,225,19,7,224,198,1,224,45,
+1,225,16,2,224,89,2,224,90,12,201,162,129,34,155,71,224,50,2,224,
+44,3,227,39,10,64,99,1,95,54,127,155,64,14,162,24,250,119,2,224,
+63,22,98,131,192,63,224,54,2,224,65,8,225,80,10,160,246,224,241,5,
+64,144,224,194,11,160,129,227,136,29,96,53,226,230,25,225,53,0,64,1,
+162,238,128,39,224,60,6,229,18,21,64,1,242,234,213,242,236,9,224,46,
+18,242,239,5,224,40,6,228,22,10,225,57,0,224,1,1,227,89,15,242,
+242,155,224,240,9,224,237,10,224,163,4,231,36,75,224,62,2,226,249,11,
+229,224,9,1,56,50,233,69,4,231,4,4,64,0,224,112,1,64,1,224,
+213,47,234,58,13,224,214,83,0,49,137,168,234,32,17,99,39,238,133,11,
+226,164,47,244,167,166,224,94,8,224,252,122,224,68,2,224,252,55,244,171,
+20,240,247,7,224,248,6,232,174,1,226,255,7,224,189,0,103,63,228,92,
+3,237,140,2,224,53,4,225,83,13,224,31,1,225,80,15,0,51,234,74,
+1,224,44,2,227,48,32,224,62,2,225,48,30,0,53,225,48,3,1,39,
+39,225,48,5,224,110,1,224,207,68,0,83,226,99,12,2,66,32,90,226,
+51,11,165,141,224,230,4,232,104,3,224,231,29,2,56,51,32,128,139,0,
+79,128,7,244,169,0,128,0,224,155,2,225,184,87,135,194,237,246,11,192,
+5,225,211,17,245,176,67,1,66,32,161,10,149,186,225,23,9,245,195,30,
+225,47,6,227,70,45,237,64,4,224,95,22,228,89,0,160,95,228,208,8,
+96,2,160,101,224,83,3,203,58,224,80,18,224,77,30,224,73,25,224,70,
+27,193,243,224,65,10,224,62,4,224,53,2,162,42,64,12,194,47,248,167,
+219,224,100,92,249,12,99,224,206,16,229,156,8,227,151,9,224,59,29,100,
+240,70,157,64,64,0,52,228,240,8,227,100,6,96,28,226,141,0,64,14,
+162,92,66,120,130,124,192,44,205,66,249,136,230,4,57,52,58,49,49,231,
+29,1,236,21,5,224,239,3,192,1,249,113,1,224,25,7,192,1,229,40,
+3,224,37,15,224,35,4,224,30,10,97,44,249,220,4,224,36,9,192,1,
+250,3,5,229,101,7,224,2,0,132,110,160,11,224,162,26,225,201,2,167,
+25,224,5,8,224,68,3,160,73,227,66,2,163,72,229,75,6,241,152,1,
+224,1,1,229,110,16,224,156,16,165,59,242,27,8,64,0,230,18,3,229,
+203,10,230,201,5,224,95,27,250,124,3,224,95,0,239,175,4,128,5,224,
+106,20,224,97,20,234,110,3,224,38,8,99,51,5,67,32,67,32,61,61,
+224,42,20,249,180,15,243,14,3,240,217,9,240,215,6,240,213,8,228,46,
+0,236,36,9,243,32,21,224,64,4,160,195,236,30,14,162,52,246,178,22,
+242,106,6,96,12,230,65,1,98,170,245,195,5,65,169,245,197,7,225,240,
+13,241,23,3,226,59,2,164,171,128,1,225,52,10,225,104,7,242,19,1,
+224,102,9,229,47,0,224,28,11,235,33,0,224,79,6,192,107,66,96,224,
+31,9,166,217,230,173,0,235,76,17,228,21,10,225,247,8,193,68,202,194,
+162,43,193,89,160,32,128,73,246,135,2,225,172,0,184,156,229,210,2,229,
+211,1,224,105,5,247,40,1,226,139,64,245,172,22,224,64,4,225,43,10,
+242,145,2,228,194,0,209,78,224,224,19,246,7,6,128,191,224,126,1,224,
+13,4,129,71,224,117,12,64,113,225,80,2,253,207,3,234,4,1,128,0,
+224,201,1,64,1,246,252,255,246,252,221,226,154,0,131,137,229,46,9,96,
+207,246,97,8,224,0,1,192,166,160,170,164,60,167,164,227,139,13,224,52,
+5,194,212,224,22,9,193,234,249,248,6,224,37,5,226,174,10,64,1,240,
+31,4,224,134,4,225,39,0,160,25,64,220,226,195,6,128,21,247,117,39,
+230,114,21,224,0,0,224,167,5,224,1,9,247,79,8,238,32,9,161,90,
+224,166,0,225,99,12,194,90,225,145,5,224,42,11,224,123,1,227,141,16,
+231,209,50,231,146,1,224,103,11,224,64,4,229,69,10,232,16,2,229,67,
+3,181,187,253,166,2,230,21,13,224,83,13,224,146,11,0,83,255,94,32,
+232,100,13,0,56,133,214,254,53,9,245,86,9,129,151,226,97,2,96,109,
+199,16,232,21,14,224,149,3,232,18,1,224,21,1,96,25,225,253,2,224,
+47,3,192,72,170,85,231,248,10,226,39,5,224,244,10,231,249,19,230,162,
+5,195,62,231,246,6,224,163,1,160,16,192,58,128,148,132,193,249,66,7,
+128,56,99,100,225,91,2,0,79,135,44,225,241,2,232,20,4,225,20,6,
+244,67,3,193,123,200,226,226,226,19,129,37,224,69,3,224,92,6,232,55,
+102,228,82,4,64,62,225,22,25,192,69,233,212,4,224,241,17,96,144,224,
+165,8,194,172,251,110,15,228,41,6,224,67,17,103,83,224,67,2,247,16,
+2,224,130,5,225,19,9,245,49,4,225,19,38,241,18,6,224,63,41,241,
+17,9,226,186,5,224,182,3,224,202,0,98,61,192,212,230,37,0,224,16,
+0,1,54,56,128,252,160,139,5,66,39,32,95,54,57,100,87,96,30,253,
+150,0,64,0,230,79,17,225,50,5,64,11,225,140,6,228,14,0,227,173,
+1,224,151,1,128,16,177,84,128,5,104,101,224,89,1,96,37,226,184,2,
+224,173,1,194,72,231,32,16,192,93,244,23,27,227,189,2,224,119,1,128,
+1,254,49,1,224,82,0,224,226,6,227,218,1,128,211,231,42,5,162,118,
+224,67,1,224,61,7,224,64,2,224,61,22,163,68,224,59,11,224,55,4,
+224,52,2,225,17,4,128,158,245,130,16,224,243,1,229,33,2,229,30,4,
+225,80,13,244,158,11,224,76,71,192,223,96,51,226,142,9,160,217,128,204,
+224,60,6,128,0,226,126,1,226,135,4,224,169,6,165,80,105,244,140,189,
+128,98,237,242,14,128,52,230,241,1,224,100,8,228,223,12,226,235,0,96,
+255,224,56,13,224,59,1,225,73,9,64,6,237,176,4,244,100,110,5,49,
+55,49,58,49,50,232,90,4,108,182,229,101,1,1,50,51,129,165,233,33,
+4,196,140,196,98,0,73,129,240,0,83,165,110,224,51,20,68,183,0,55,
+224,59,2,2,64,95,49,100,178,0,83,85,216,0,50,64,24,2,52,54,
+53,98,78,2,50,51,51,165,186,233,8,2,1,95,96,160,173,224,47,3,
+0,54,224,47,17,0,39,224,48,0,224,33,15,7,40,41,44,91,93,59,
+123,125,128,38,224,37,15,3,32,92,57,38,224,33,21,22,58,33,35,36,
+37,38,42,43,46,47,60,61,62,63,64,92,57,50,38,94,124,45,126,192,
+52,193,28,230,250,2,83,58,224,20,4,110,134,111,96,128,11,231,34,0,
+1,58,54,65,44,1,10,65,162,244,130,132,98,228,163,5,130,245,67,63,
+0,54,129,108,64,1,4,80,32,95,49,56,242,112,0,160,2,224,30,1,
+225,231,20,224,215,1,3,108,105,110,101,226,33,0,224,71,50,5,112,114,
+97,103,109,97,224,73,0,232,80,0,128,208,224,68,30,2,100,101,102,224,
+142,1,132,83,193,67,224,52,17,4,117,110,100,101,102,128,51,193,16,64,
+183,2,95,49,56,111,77,0,54,97,40,227,118,83,4,72,97,115,104,68,
+96,185,195,120,3,56,56,58,53,96,145,0,90,64,191,4,54,56,53,32,
+64,108,139,192,0,196,47,160,163,128,235,160,2,3,95,50,52,53,64,51,
+0,56,64,238,133,108,162,9,97,252,193,249,224,208,102,0,57,160,208,233,
+203,3,226,35,1,200,0,160,13,165,28,225,186,15,3,79,32,35,52,234,
+132,4,238,170,0,130,222,225,10,0,120,97,162,131,199,87,76,47,97,58,
+1,50,50,71,32,129,69,65,49,226,26,11,16,105,110,99,111,109,112,108,
+101,116,101,32,109,97,99,114,111,32,98,96,8,105,116,105,111,110,58,92,
+49,48,163,242,224,68,22,2,32,32,35,130,151,0,32,196,106,0,39,160,
+46,100,245,224,54,5,224,219,4,3,95,50,57,54,224,28,7,234,41,8,
+224,252,0,129,85,233,40,4,160,251,227,58,17,224,81,9,235,199,8,227,
+202,31,64,74,0,49,224,74,2,226,144,1,161,148,64,65,232,143,5,228,
+47,10,228,169,0,161,38,1,54,56,72,52,198,12,244,36,0,1,95,57,
+164,184,224,96,1,237,208,0,102,110,192,76,163,13,64,46,227,13,0,128,
+204,192,25,0,50,192,25,2,95,54,57,146,242,192,31,5,56,52,32,95,
+53,56,203,85,232,46,4,102,167,171,67,64,8,2,51,48,49,64,48,0,
+57,64,9,96,100,235,94,5,128,147,64,40,0,57,65,52,5,54,32,95,
+53,57,48,229,222,5,197,204,2,95,50,57,236,179,0,195,224,64,108,1,
+57,48,226,46,11,226,101,1,0,35,229,64,3,224,68,2,224,67,3,64,
+203,224,67,20,229,204,1,224,65,2,64,187,96,191,65,21,67,82,129,31,
+68,68,169,157,227,210,12,130,43,238,185,2,226,48,10,64,17,234,81,7,
+196,11,196,5,224,76,1,137,47,234,229,1,2,95,49,52,65,99,199,113,
+96,95,224,33,1,130,103,74,73,225,80,1,235,95,3,248,27,1,224,167,
+22,225,31,2,0,35,230,159,1,195,105,128,108,228,209,22,242,35,7,224,
+98,28,192,59,176,226,229,226,1,141,16,225,6,8,160,245,64,12,226,138,
+6,224,12,2,128,0,164,45,224,53,0,163,216,225,74,8,225,73,8,225,
+97,15,163,129,128,0,0,89,96,181,227,43,1,229,207,2,224,138,6,0,
+58,110,144,2,10,65,32,106,224,0,58,96,71,3,10,65,32,75,160,13,
+0,53,160,13,0,65,96,13,0,52,96,13,2,95,54,56,67,70,67,207,
+224,4,0,0,58,99,185,64,28,4,50,52,54,32,75,75,230,10,32,67,
+32,80,32,75,32,95,54,49,55,230,231,2,2,114,101,112,70,210,8,109,
+101,110,116,44,32,97,116,32,230,247,88,3,50,53,58,54,129,208,224,139,
+131,2,64,75,50,224,141,131,0,90,140,249,97,217,96,157,0,52,224,157,
+131,66,93,0,50,226,93,15,102,29,64,8,69,158,64,9,201,174,96,12,
+96,214,96,17,163,31,64,18,141,229,224,26,1,245,233,0,0,58,102,165,
+99,12,120,91,224,4,1,151,174,0,58,96,100,1,10,65,224,29,7,224,
+34,4,64,144,227,8,26,69,232,5,98,114,101,97,107,115,227,7,120,224,
+138,113,1,64,90,225,172,0,97,67,193,167,65,163,89,219,225,156,0,0,
+58,107,77,97,121,192,27,165,156,224,10,24,232,216,1,0,32,83,101,193,
+233,64,88,160,79,64,44,224,7,11,224,70,2,224,59,2,1,58,54,64,
+163,226,4,6,224,60,5,128,41,0,58,96,217,98,77,1,90,32,66,29,
+0,58,116,15,96,57,2,80,32,35,69,152,0,85,69,57,91,176,1,10,
+65,64,18,1,51,32,71,230,0,58,120,101,192,38,71,57,128,38,130,154,
+65,189,79,158,0,58,113,198,226,171,1,128,96,64,25,224,213,10,64,144,
+0,58,115,149,160,28,1,80,32,155,107,0,80,64,72,82,21,128,128,0,
+53,160,128,0,55,128,225,0,80,121,127,128,17,128,202,3,80,32,35,54,
+192,17,128,203,113,155,234,66,1,112,157,145,126,2,95,54,55,70,30,2,
+53,57,51,73,108,0,57,66,117,233,253,1,170,131,129,41,144,97,2,58,
+54,55,129,9,128,74,80,63,224,65,14,0,66,137,189,64,118,74,121,70,
+213,231,211,0,0,64,64,47,138,154,96,86,2,58,54,55,193,77,0,66,
+169,59,238,215,4,158,5,96,8,153,60,2,95,54,54,203,29,233,0,3,
+200,92,248,87,8,128,207,96,8,4,95,54,54,32,95,170,226,224,60,7,
+246,54,2,107,20,130,215,128,12,96,230,6,64,95,49,53,52,32,95,170,
+237,244,109,0,96,86,0,55,224,83,0,243,162,0,96,89,192,70,224,44,
+2,165,200,192,49,64,255,130,56,226,19,3,194,206,0,58,96,39,194,203,
+98,102,64,252,160,45,107,95,1,51,54,104,204,107,151,193,56,225,125,7,
+233,81,1,225,125,1,96,37,75,217,225,255,9,64,101,194,138,129,235,64,
+44,77,141,2,95,54,51,107,179,201,173,116,184,96,138,238,43,27,31,67,
+97,110,110,111,116,32,101,120,112,97,110,100,32,35,105,102,32,100,105,114,
+101,99,116,105,118,101,32,105,110,32,102,1,105,108,238,0,4,206,2,2,
+95,49,51,108,58,100,121,224,93,17,110,110,1,32,32,251,232,3,224,166,
+1,2,66,32,95,65,2,106,230,97,238,97,153,64,183,0,53,65,68,112,
+198,0,50,64,102,225,82,0,233,130,0,128,222,3,55,48,32,95,78,7,
+224,227,23,31,87,97,114,110,105,110,103,58,32,116,114,97,105,108,105,110,
+103,32,99,104,97,114,97,99,116,101,114,115,32,97,102,116,1,101,114,64,
+248,239,21,29,143,80,97,46,3,115,105,111,110,225,35,59,225,28,2,130,
+138,97,215,1,95,54,84,49,225,214,54,4,112,97,114,115,101,225,213,91,
+227,184,3,225,213,24,64,20,171,240,225,222,11,1,95,54,84,251,225,229,
+116,225,45,68,225,223,4,2,95,49,50,193,29,64,0,1,58,54,64,44,
+108,32,193,5,64,8,1,52,52,64,99,0,51,237,109,14,1,47,47,128,
+81,143,191,161,53,0,58,97,53,64,73,5,49,49,32,95,53,53,68,70,
+2,54,54,52,97,122,224,17,1,2,51,50,56,64,10,64,103,0,48,192,
+19,2,53,53,57,80,49,0,53,232,221,2,1,124,124,160,97,1,50,55,
+64,26,64,62,68,125,160,43,162,153,225,161,1,0,32,96,213,96,77,96,
+52,64,100,118,198,128,151,135,6,224,151,4,0,51,224,151,45,0,38,178,
+187,224,151,15,240,62,1,224,151,16,142,118,96,151,173,154,1,51,50,96,
+114,98,129,224,10,12,224,145,9,80,4,0,51,242,239,0,224,198,1,224,
+150,7,96,232,96,233,224,135,0,129,229,224,54,5,2,54,54,49,225,15,
+6,0,54,110,131,130,107,224,38,5,128,21,224,82,4,104,236,96,0,224,
+44,7,247,140,1,0,52,120,85,2,50,48,54,67,76,64,31,2,49,57,
+53,104,169,194,147,128,53,0,49,130,154,224,17,3,0,52,171,234,1,95,
+53,78,194,224,221,1,194,6,0,58,96,228,225,72,28,225,94,31,225,240,
+1,1,62,61,161,240,224,144,1,5,52,50,49,32,95,52,134,243,225,155,
+14,65,60,193,155,224,200,1,1,53,50,224,55,1,224,117,21,0,60,224,
+117,9,1,55,55,224,60,21,64,117,245,1,1,224,55,1,72,221,224,116,
+29,0,61,224,116,9,225,185,1,224,61,24,0,33,224,61,9,105,223,192,
+61,0,58,98,81,225,165,6,226,45,2,1,53,57,138,61,224,29,1,226,
+144,7,66,43,226,144,38,227,126,5,98,63,128,50,0,58,96,6,224,141,
+6,225,84,12,69,4,225,84,8,1,57,52,162,197,225,139,16,69,159,226,
+1,10,224,55,2,0,58,96,209,225,16,17,64,120,225,16,20,0,53,65,
+212,225,16,7,65,70,225,16,38,96,50,0,58,96,6,227,68,17,224,228,
+13,226,230,11,0,54,103,46,225,27,20,220,189,224,54,4,70,114,1,54,
+53,195,235,224,56,12,0,51,224,56,11,0,49,71,214,192,56,0,58,97,
+21,101,236,67,165,0,54,138,159,0,52,224,33,0,3,95,54,52,55,224,
+11,0,0,49,106,223,128,11,2,50,48,48,224,35,1,96,241,2,50,48,
+56,192,17,109,58,64,9,106,253,1,83,32,85,214,238,67,0,0,80,137,
+16,227,9,1,12,73,110,116,101,103,101,114,58,32,100,105,118,105,105,163,
+3,98,121,32,48,231,247,0,206,127,108,186,64,64,83,243,122,90,0,49,
+64,4,135,115,101,168,224,17,8,128,64,238,37,5,136,16,136,255,117,149,
+64,39,248,14,0,192,16,184,238,140,252,105,40,226,37,0,105,240,84,96,
+197,169,108,215,251,55,1,128,96,96,51,1,95,54,102,187,2,95,54,53,
+108,89,128,23,64,96,173,17,1,53,52,76,143,0,65,64,27,1,95,54,
+162,100,233,152,2,0,39,192,5,160,71,184,29,154,90,136,210,0,85,223,
+177,96,56,2,95,54,53,65,191,149,62,2,95,51,48,199,245,96,0,0,
+58,97,166,1,10,65,160,212,64,69,2,95,52,49,64,47,0,50,66,125,
+0,58,96,59,253,220,3,64,9,0,89,161,114,224,19,0,238,71,0,64,
+63,2,67,32,79,247,88,1,247,72,5,141,165,129,45,236,68,6,193,99,
+160,98,118,14,98,148,1,50,48,165,56,129,30,143,60,64,28,67,86,224,
+28,0,96,252,68,80,110,68,82,219,0,48,160,11,0,95,210,228,1,95,
+51,150,41,185,29,130,13,0,58,97,110,141,143,224,208,1,207,133,174,188,
+207,2,224,7,2,65,231,2,52,51,52,70,200,0,51,96,130,129,224,0,
+80,97,150,96,118,128,6,193,158,96,26,78,87,64,21,64,59,0,48,71,
+123,0,52,90,180,128,36,192,27,128,28,214,210,96,58,0,39,160,46,96,
+26,108,53,226,155,0,139,134,128,12,188,112,239,165,5,243,238,1,64,69,
+67,250,2,95,52,50,192,93,161,119,161,122,225,226,0,96,17,64,87,161,
+190,162,150,176,127,128,95,160,163,128,220,160,12,65,117,128,37,66,184,96,
+217,155,14,224,197,16,64,39,64,48,192,243,225,16,3,137,248,227,188,0,
+204,111,0,53,160,202,80,224,98,15,240,57,0,98,225,113,219,99,118,1,
+67,39,66,135,131,65,162,141,224,78,4,224,13,4,0,58,99,140,113,229,
+228,135,6,7,108,97,115,116,58,32,91,93,100,121,129,41,2,85,32,64,
+82,215,227,156,0,0,58,96,8,101,46,224,81,0,0,79,114,229,64,119,
+0,58,97,10,227,66,0,133,23,0,75,98,121,134,185,99,235,0,58,97,
+252,176,125,70,101,196,121,227,50,1,114,48,98,40,1,52,48,100,217,0,
+52,187,180,128,14,0,58,100,14,160,103,129,248,5,95,50,48,55,32,64,
+128,93,133,119,224,27,7,96,135,1,52,54,197,236,0,50,64,255,138,88,
+136,237,1,95,49,67,51,0,58,102,1,96,170,1,75,51,115,211,121,50,
+128,251,77,212,128,89,206,34,75,61,97,254,195,45,154,143,250,255,0,162,
+100,66,96,250,249,2,109,40,0,35,171,214,192,51,162,141,250,189,2,128,
+38,67,252,64,39,0,85,67,53,231,42,2,194,161,224,50,10,224,89,0,
+154,211,224,89,16,0,49,130,129,96,89,74,162,224,89,1,128,19,74,126,
+192,19,167,87,101,235,129,87,0,82,65,255,203,146,84,251,129,39,0,58,
+104,136,116,51,64,216,1,95,54,68,52,70,49,98,245,96,49,178,33,1,
+95,49,105,90,1,95,53,84,118,0,58,64,110,224,54,21,171,64,0,53,
+84,64,224,53,1,162,113,224,108,17,172,188,0,53,84,33,224,54,1,211,
+17,128,1,251,70,3,162,122,128,1,71,49,160,16,255,177,3,128,253,224,
+47,0,231,59,0,134,49,198,12,224,2,1,212,87,224,91,4,193,249,224,
+22,0,164,60,128,98,229,146,0,0,64,157,0,192,57,133,98,224,117,0,
+230,112,4,224,162,0,70,31,130,90,105,95,96,61,64,27,1,95,51,67,
+177,67,249,230,77,1,160,171,1,79,32,116,45,97,196,225,65,5,199,217,
+0,58,97,93,135,64,234,101,6,233,248,11,0,54,102,51,233,119,2,0,
+54,208,24,163,80,234,136,4,0,53,64,29,0,53,84,151,2,95,53,53,
+73,72,189,26,64,220,238,165,7,162,210,3,95,53,54,52,160,51,145,174,
+64,65,104,105,133,60,69,115,204,200,101,81,192,108,64,23,99,191,224,90,
+59,0,58,96,8,129,21,224,209,5,99,43,166,190,223,6,103,77,245,73,
+2,229,125,1,0,100,121,61,0,100,241,182,0,96,53,225,104,5,194,2,
+224,100,3,75,145,240,91,8,0,56,80,155,129,75,225,86,5,65,216,67,
+199,100,0,241,171,13,1,44,41,209,253,235,131,5,0,52,232,233,1,96,
+137,162,164,225,85,2,161,58,69,26,2,95,53,48,92,250,0,51,79,127,
+233,215,2,101,51,246,3,3,0,90,101,133,96,174,72,156,236,110,5,96,
+0,227,103,2,225,16,10,224,18,10,225,32,7,228,182,1,66,215,165,6,
+233,182,0,224,45,6,97,73,76,216,129,88,224,70,12,64,194,96,34,224,
+171,7,224,93,9,224,189,7,230,14,13,98,9,225,139,12,226,19,5,230,
+42,0,132,2,0,67,138,195,129,87,229,225,0,96,101,72,158,101,220,98,
+110,75,171,197,107,224,179,0,65,210,0,56,237,29,9,225,168,0,224,5,
+3,139,45,0,75,128,45,94,211,224,69,13,2,64,75,51,224,26,6,0,
+57,224,26,1,84,31,224,26,13,68,101,0,48,232,134,2,252,153,70,7,
+67,112,112,73,102,100,101,102,252,151,0,4,51,56,58,49,50,161,82,231,
+220,0,165,169,129,79,235,14,1,160,13,64,10,225,83,0,107,182,65,85,
+109,103,225,9,13,225,80,7,170,185,160,81,166,19,64,13,161,200,225,100,
+7,64,24,252,119,1,224,111,38,64,214,64,1,67,140,197,141,98,181,92,
+26,2,95,54,49,136,237,192,48,227,212,0,224,113,3,238,115,0,96,169,
+224,69,1,131,47,96,72,194,33,2,32,95,54,106,226,211,119,224,89,10,
+225,226,104,1,52,53,225,226,1,0,58,101,235,252,26,2,231,199,2,0,
+80,137,18,134,157,227,166,0,231,84,6,71,78,137,41,234,168,4,192,21,
+203,241,64,69,81,143,167,87,0,58,68,252,128,118,149,64,120,88,116,211,
+0,52,86,247,65,209,0,51,67,47,101,137,225,26,1,2,39,96,95,128,
+184,0,58,103,1,74,172,2,53,52,54,136,160,0,53,80,139,96,168,0,
+95,140,85,97,229,64,23,0,56,228,53,3,25,69,120,112,101,99,116,101,
+100,32,101,110,100,32,111,102,32,105,110,112,117,116,32,40,69,79,70,229,
+218,0,0,58,103,156,252,47,16,86,42,107,3,226,14,3,175,114,228,168,
+12,3,35,108,105,110,248,114,0,166,23,248,113,1,0,49,210,100,224,64,
+7,81,162,242,18,2,96,43,0,51,100,172,248,111,0,64,141,138,24,80,
+242,64,251,194,119,131,165,139,4,234,217,5,1,64,35,136,60,128,212,0,
+80,66,161,101,175,161,226,193,164,128,26,1,51,48,128,135,243,127,0,1,
+64,89,226,42,3,162,12,229,181,1,78,47,224,92,1,224,10,0,235,137,
+13,93,27,129,18,203,140,227,241,0,235,143,10,169,104,64,26,75,127,64,
+153,128,172,224,26,0,224,108,1,66,186,98,130,119,37,79,230,226,194,3,
+140,125,232,118,1,236,131,15,192,87,224,204,6,224,159,13,169,145,175,9,
+103,55,224,124,0,66,57,225,75,11,194,14,239,159,0,128,150,81,211,224,
+134,9,128,86,96,117,195,70,224,107,17,225,210,4,128,0,2,58,54,51,
+140,13,2,65,32,58,96,139,5,10,65,32,75,32,58,96,42,98,235,209,
+205,128,235,130,72,224,144,12,67,29,165,170,225,6,8,139,79,0,95,178,
+93,192,7,192,231,135,130,230,74,1,224,61,1,191,58,144,40,1,95,54,
+159,212,2,58,54,50,238,202,0,104,30,201,30,112,185,197,131,134,24,96,
+56,0,58,96,56,74,110,161,86,232,252,33,172,93,233,178,3,64,111,92,
+14,235,8,10,107,5,234,72,0,160,145,234,18,19,96,123,250,194,7,163,
+246,224,145,12,224,48,12,237,87,3,231,24,0,134,134,96,49,67,235,232,
+227,5,97,22,194,243,167,87,225,139,3,231,90,6,144,207,101,173,96,131,
+230,239,6,82,156,106,193,135,39,224,217,0,245,66,3,224,7,7,198,2,
+129,211,231,23,14,128,0,231,8,101,2,51,55,55,231,8,0,0,58,97,
+192,241,24,4,132,32,225,95,5,225,104,3,193,160,225,137,2,128,47,230,
+203,0,254,94,1,0,56,164,143,66,233,203,38,82,165,1,95,54,99,202,
+114,172,96,33,90,151,0,56,100,217,242,196,0,224,69,1,224,60,13,213,
+209,128,143,97,85,160,47,230,142,14,5,109,97,99,114,111,32,166,142,194,
+26,166,145,129,250,224,63,21,1,32,101,199,66,237,142,0,224,48,0,96,
+73,230,213,1,224,169,6,230,228,10,224,86,2,23,97,114,103,117,109,101,
+110,116,115,44,32,98,117,116,32,119,97,115,32,103,105,118,101,110,160,102,
+224,89,5,160,244,194,55,162,68,165,156,64,2,2,95,50,56,100,166,64,
+154,147,73,160,167,234,109,2,202,93,181,243,160,248,0,53,135,100,239,143,
+3,160,96,98,182,95,240,197,236,125,145,101,30,2,53,57,48,106,135,231,
+102,2,165,183,244,250,4,66,27,64,95,82,66,239,242,6,96,39,224,97,
+9,68,91,184,31,1,95,54,93,206,193,76,165,246,133,141,101,70,0,53,
+134,95,228,120,0,0,58,99,99,73,36,2,52,49,52,67,228,0,58,96,
+64,178,16,71,224,0,75,67,236,0,55,227,114,2,4,101,120,112,97,110,
+89,101,4,44,32,97,116,32,227,128,70,4,72,97,115,104,68,109,180,234,
+139,0,2,53,58,54,129,221,224,137,129,109,195,224,139,128,0,51,225,23,
+132,66,87,0,58,98,143,139,187,2,54,50,49,168,26,64,22,180,162,229,
+65,0,224,9,1,99,87,0,54,117,171,121,213,0,95,71,143,2,95,53,
+57,100,223,2,95,49,56,64,7,85,34,2,95,49,56,102,122,0,58,96,
+88,232,149,3,74,223,96,38,160,85,216,168,67,181,224,53,2,136,214,226,
+222,16,228,98,2,226,222,118,224,137,112,226,222,10,224,139,114,226,222,8,
+224,139,114,216,204,0,58,101,96,226,70,19,2,114,101,112,64,129,64,167,
+226,72,120,224,139,114,226,74,10,224,141,116,129,190,83,76,224,148,128,0,
+58,107,40,133,44,1,52,57,64,152,106,245,0,54,89,119,0,58,64,165,
+64,27,2,73,32,58,96,16,112,206,0,48,111,119,0,49,82,206,1,54,
+49,149,245,0,55,97,102,139,46,85,120,224,11,0,0,55,192,11,0,58,
+96,6,64,63,1,49,51,69,165,169,143,0,54,225,4,2,6,110,111,32,
+102,105,101,108,201,180,96,29,144,87,0,53,64,69,128,105,0,51,88,91,
+96,11,0,58,96,6,96,145,0,49,67,0,0,50,77,71,2,49,54,56,
+224,81,2,25,67,111,110,116,114,111,108,46,69,120,99,101,112,116,105,111,
+110,46,73,110,116,101,114,110,97,108,64,98,224,39,1,10,82,101,99,83,
+101,108,69,114,114,111,114,96,123,195,100,134,69,195,100,0,73,141,194,64,
+28,163,135,252,93,0,0,58,106,149,177,143,122,201,147,238,86,131,69,249,
+64,8,0,53,93,250,1,95,50,120,133,230,82,0,234,221,1,73,158,107,
+96,146,92,238,114,3,198,134,96,37,109,133,1,57,51,64,10,97,173,176,
+1,0,58,109,76,137,73,64,23,1,48,49,192,28,2,95,54,48,100,195,
+144,141,64,126,2,95,49,53,106,242,0,48,98,135,160,35,97,99,160,11,
+97,181,160,11,224,100,0,0,58,96,6,217,40,115,128,110,141,0,50,66,
+63,2,95,54,48,128,136,243,99,3,243,139,3,3,95,54,48,56,95,77,
+96,253,1,95,53,107,27,224,6,5,0,58,64,107,64,95,1,85,32,71,
+199,0,52,94,107,96,21,249,158,2,187,5,224,114,4,224,101,6,0,54,
+224,101,14,0,58,64,214,224,94,3,161,184,91,39,224,94,32,0,52,74,
+249,224,94,15,130,223,225,208,0,224,69,3,128,60,0,49,225,1,8,0,
+58,65,131,160,53,65,248,128,46,64,199,64,202,2,50,32,95,130,51,64,
+212,96,9,157,17,129,241,224,66,1,200,236,92,45,0,49,89,135,0,58,
+64,59,224,86,13,0,67,124,91,96,77,224,88,25,130,81,97,48,150,146,
+247,111,0,64,29,226,13,0,1,95,53,92,174,136,235,83,118,140,208,179,
+47,174,148,64,5,236,207,0,78,104,0,53,90,248,188,197,128,30,64,22,
+224,155,0,193,206,225,2,14,173,77,160,170,125,36,224,40,13,178,135,2,
+64,64,64,125,7,99,66,65,151,67,61,2,64,64,58,96,6,99,227,2,
+95,53,57,113,32,2,57,55,32,64,22,130,116,5,35,49,48,49,32,58,
+96,19,129,8,96,27,130,49,3,85,32,75,51,225,20,5,0,58,96,141,
+0,10,84,234,0,58,97,18,96,37,0,65,96,51,193,163,234,44,0,109,
+76,129,25,175,146,138,41,0,54,64,191,226,51,0,99,239,129,213,161,23,
+128,103,129,222,192,144,234,137,10,145,131,146,98,170,137,110,63,113,33,211,
+158,0,58,100,116,224,165,1,64,97,114,154,160,141,144,77,190,31,0,64,
+78,163,195,55,1,95,53,190,150,2,95,53,56,176,96,119,65,96,35,226,
+42,6,160,43,160,147,0,58,82,148,129,114,224,101,7,0,53,90,227,160,
+101,99,252,224,101,0,249,209,1,146,141,224,103,19,197,82,225,83,0,126,
+12,240,2,0,224,164,21,248,1,1,228,16,3,0,51,83,228,224,254,12,
+99,116,0,66,89,97,224,85,20,128,12,78,255,230,116,1,31,87,104,101,
+110,32,108,111,111,107,105,110,103,32,102,111,114,32,97,32,110,111,110,45,
+101,109,112,116,121,32,115,101,113,28,117,101,110,99,101,32,119,105,116,104,
+32,115,101,112,97,114,97,116,111,114,115,58,92,49,48,38,92,57,38,102,
+166,0,58,97,123,135,186,116,67,102,27,179,220,0,48,207,99,117,142,244,
+48,2,224,41,8,0,49,247,193,1,243,200,2,0,58,116,88,128,92,254,
+175,3,71,122,149,31,130,89,230,171,6,132,233,254,17,1,241,169,22,241,
+168,11,216,122,241,134,16,2,103,111,116,192,47,224,181,6,0,58,64,211,
+64,180,121,116,0,89,100,108,65,153,0,83,224,164,3,240,214,7,0,64,
+131,49,243,216,42,14,112,111,108,121,112,97,114,115,101,45,49,46,49,50,
+47,64,43,5,84,101,120,116,47,80,64,19,201,106,4,49,48,57,58,55,
+128,174,177,197,113,142,0,51,69,63,224,14,1,246,188,3,115,152,224,25,
+12,97,124,64,213,64,25,248,13,8,83,196,96,57,165,140,248,161,9,110,
+223,151,50,122,141,0,64,99,248,241,168,0,96,64,192,12,128,44,100,98,
+97,102,0,50,72,111,1,53,55,181,120,224,134,51,68,0,224,133,31,96,
+43,224,132,75,0,49,156,19,225,11,30,96,44,224,134,8,137,202,224,134,
+52,0,55,166,236,224,133,27,96,43,224,132,16,130,235,240,209,1,101,197,
+128,148,229,101,1,252,182,5,227,94,12,8,44,59,40,41,91,93,123,125,
+96,195,98,230,157,0,116,145,229,23,0,71,221,224,99,6,253,35,3,0,
+53,224,233,6,1,64,35,181,15,229,203,1,128,6,1,95,49,69,246,128,
+97,157,10,165,132,228,55,19,13,66,97,100,32,99,104,97,114,97,99,116,
+101,114,58,164,13,181,125,220,124,168,85,250,40,1,161,164,128,128,251,90,
+0,213,104,252,3,15,140,133,160,33,136,211,161,100,160,46,160,71,224,214,
+0,64,62,64,210,149,124,230,227,3,231,129,0,126,112,68,229,165,30,97,
+234,96,103,231,159,1,225,232,0,162,18,193,241,192,91,213,143,224,48,8,
+224,46,14,129,14,226,103,6,224,62,10,96,54,254,237,30,1,95,39,229,
+135,1,160,215,224,98,27,96,79,105,128,165,20,128,47,3,64,67,32,79,
+230,181,2,226,168,23,22,33,64,35,36,37,38,42,43,46,47,60,61,62,
+63,92,57,50,38,94,124,58,45,126,160,145,129,226,193,223,170,119,97,220,
+224,204,15,1,101,69,224,58,12,253,142,0,226,66,2,227,231,9,131,133,
+224,110,4,226,14,8,192,130,225,135,11,226,22,12,231,53,16,0,43,231,
+46,4,226,45,5,226,37,7,224,192,30,131,156,224,192,95,0,45,224,192,
+35,224,140,76,0,79,139,220,221,1,224,136,31,196,162,224,221,19,3,109,
+105,115,115,73,212,7,43,47,45,47,100,105,103,105,200,173,224,51,19,14,
+97,102,116,101,114,32,101,32,105,110,32,102,108,111,97,224,50,27,6,108,
+105,116,101,114,97,108,196,253,64,42,100,255,154,28,159,1,161,1,224,252,
+20,224,81,1,2,46,46,46,227,207,1,64,0,227,153,0,160,0,0,89,
+129,107,98,73,0,85,101,161,65,13,171,217,225,240,20,10,110,100,32,111,
+102,32,105,110,112,117,116,64,227,197,176,224,47,15,2,115,116,114,65,65,
+160,226,160,46,96,145,198,140,97,251,129,218,97,150,233,38,7,194,33,247,
+231,10,64,213,109,98,97,245,167,22,97,251,107,178,97,223,87,233,234,17,
+80,3,49,56,58,52,212,19,228,255,3,80,53,110,157,102,16,192,198,251,
+50,5,64,36,95,234,1,53,48,64,39,230,240,2,65,140,114,116,128,60,
+238,248,0,0,67,103,100,0,51,82,16,106,115,96,0,193,183,193,121,64,
+91,225,173,13,160,166,0,58,107,249,115,191,236,12,1,0,54,64,10,0,
+54,111,78,1,53,55,167,55,0,53,235,222,12,0,97,225,202,0,71,181,
+128,83,101,137,234,247,7,236,59,2,224,70,1,3,98,105,110,100,194,49,
+236,138,2,144,211,224,17,3,76,9,0,54,70,181,224,143,14,224,132,3,
+4,32,104,97,115,32,116,115,3,110,97,108,32,198,200,65,141,224,150,41,
+237,58,5,97,45,143,240,238,69,3,0,53,83,241,238,222,12,238,251,19,
+0,58,64,213,143,163,142,87,0,58,96,71,237,152,8,64,240,162,231,237,
+239,2,165,208,224,207,3,112,81,224,20,7,128,228,224,196,2,224,240,12,
+225,206,14,0,44,109,145,0,39,232,11,0,224,152,14,134,117,224,138,4,
+100,90,224,27,14,139,57,224,27,12,0,49,82,222,224,28,16,149,18,224,
+28,15,133,23,224,28,14,169,130,224,28,13,224,144,18,97,83,224,27,14,
+131,198,224,27,14,99,165,224,83,14,192,55,101,109,64,27,102,136,224,157,
+15,231,19,0,224,28,10,237,246,0,64,24,0,52,68,46,239,164,5,229,
+185,19,18,117,110,114,101,99,111,103,110,105,115,101,100,32,101,115,99,97,
+112,101,240,157,1,1,105,110,226,8,4,1,58,32,73,133,195,221,233,203,
+0,208,48,224,151,7,76,35,224,27,16,97,138,224,27,14,98,54,224,27,
+14,97,165,224,27,14,97,109,224,27,13,0,55,210,58,224,27,11,97,91,
+224,27,14,97,249,224,27,14,224,195,18,0,55,224,167,18,67,240,224,27,
+16,106,104,224,27,14,177,129,228,193,7,81,200,85,15,230,206,78,5,51,
+48,56,58,49,52,163,252,81,73,227,251,5,224,141,8,121,200,229,230,23,
+196,137,0,35,130,216,236,1,13,0,39,66,110,1,86,84,228,120,0,224,
+124,26,108,77,224,124,32,0,51,224,124,23,1,85,83,228,245,3,2,53,
+53,53,224,4,18,224,154,22,111,221,230,254,34,224,67,12,66,57,225,91,
+34,160,186,224,154,61,224,86,1,168,184,226,9,61,224,67,22,112,47,224,
+154,32,199,160,224,242,25,226,40,37,124,227,224,174,27,225,228,59,224,242,
+38,224,243,32,100,63,224,156,54,101,183,224,156,34,177,92,227,188,29,120,
+70,227,188,33,128,248,227,188,17,4,83,79,72,39,32,160,9,192,8,1,
+84,88,192,9,0,73,192,8,1,89,78,192,9,5,85,66,39,32,111,114,
+160,12,0,80,240,251,1,228,119,73,138,23,224,186,17,0,82,228,119,9,
+225,220,90,102,208,224,197,33,248,250,0,225,31,25,104,10,224,157,55,224,
+67,28,226,122,1,228,253,1,225,101,15,2,78,85,76,225,240,1,2,78,
+65,75,225,241,35,104,80,228,64,34,225,241,23,1,76,70,230,230,35,231,
+99,37,174,249,224,123,16,0,72,231,98,82,84,100,224,124,20,0,71,226,
+234,40,225,122,39,165,32,224,218,73,105,227,224,218,18,1,70,70,226,94,
+1,0,70,224,230,1,232,74,20,225,249,60,224,67,22,230,96,37,216,128,
+225,150,24,230,251,58,226,216,38,209,65,231,83,62,224,155,22,68,80,224,
+155,33,168,49,224,243,63,229,95,22,231,150,38,193,211,225,56,25,77,139,
+224,88,34,192,245,227,108,63,224,246,22,224,157,38,212,234,227,178,12,2,
+111,110,101,83,21,99,173,0,69,232,39,0,2,69,79,84,192,9,1,78,
+81,192,9,1,84,66,192,9,0,77,227,225,1,2,69,83,67,227,226,14,
+224,197,23,234,52,59,226,0,37,0,49,225,10,2,224,88,59,224,224,59,
+224,156,1,234,52,35,226,2,28,229,99,37,0,52,224,174,38,129,74,224,
+85,23,85,208,224,85,35,134,92,224,86,25,228,149,37,183,5,224,86,25,
+238,105,37,146,129,128,20,231,13,15,1,68,69,233,109,2,2,68,76,69,
+224,12,2,6,67,91,49,46,46,52,93,227,62,9,228,67,23,239,15,38,
+164,246,234,175,94,237,199,38,198,204,225,65,17,1,67,82,225,51,1,2,
+67,65,78,225,46,40,228,104,106,250,92,0,233,125,72,233,124,23,0,66,
+226,110,3,0,66,233,125,2,228,83,62,225,39,23,236,173,37,196,242,224,
+207,17,1,65,67,236,159,2,2,95,50,55,186,38,0,49,95,195,0,52,
+97,148,6,53,55,54,32,95,50,48,195,225,224,34,13,0,55,224,34,2,
+90,143,224,36,9,86,101,1,95,48,160,152,98,90,66,201,245,239,1,3,
+95,53,55,57,224,68,2,225,9,8,86,133,93,176,0,49,91,104,4,67,
+32,95,52,50,90,154,106,116,0,35,122,202,2,67,32,95,64,134,160,18,
+0,57,104,50,246,176,33,249,227,4,4,99,116,114,108,45,182,181,8,109,
+97,108,102,111,114,109,101,100,150,166,0,94,129,44,246,167,3,64,86,193,
+113,96,113,64,239,64,237,4,49,53,52,32,95,145,187,0,49,89,150,96,
+5,128,172,193,112,225,170,1,187,122,224,17,3,128,40,224,17,2,152,48,
+228,123,4,212,106,224,35,1,224,34,8,132,158,224,17,3,206,53,224,17,
+1,224,88,8,195,7,227,114,7,224,234,2,158,253,68,33,225,103,6,253,
+208,18,218,10,225,110,4,194,127,0,58,123,156,1,10,65,118,138,0,83,
+66,249,1,53,55,226,227,4,6,100,101,99,105,109,97,108,96,47,65,96,
+2,50,48,54,64,123,159,123,66,118,0,48,92,201,1,50,48,97,56,3,
+95,49,57,53,94,176,160,200,0,54,102,209,0,53,67,64,0,58,66,106,
+64,103,126,137,129,172,64,78,157,78,190,251,106,115,0,58,98,164,224,145,
+18,2,111,99,116,224,143,37,161,87,0,53,148,41,192,142,0,55,224,100,
+20,2,104,101,120,224,242,36,131,245,1,95,53,149,215,192,99,0,54,156,
+90,227,70,3,5,95,49,52,57,32,35,126,185,100,102,0,57,71,162,153,
+38,224,38,9,123,118,224,38,0,187,76,64,174,224,39,6,102,228,224,39,
+0,153,33,3,95,50,50,53,248,70,2,8,100,105,103,105,116,84,111,73,
+110,190,39,227,44,13,192,16,163,54,64,86,193,206,224,49,28,96,176,224,
+49,22,64,39,96,255,65,33,0,53,129,133,0,39,127,237,98,18,98,21,
+254,175,0,64,0,128,27,64,5,228,160,1,100,205,66,237,126,69,68,175,
+224,44,2,128,42,227,52,1,153,134,0,39,93,223,2,32,66,39,96,5,
+2,32,95,52,99,164,253,246,3,91,199,225,230,15,64,17,121,200,0,95,
+64,196,224,37,17,160,129,1,95,50,105,245,64,46,96,52,2,51,57,51,
+64,7,0,80,197,109,224,64,20,160,108,131,20,229,65,20,3,92,49,48,
+38,227,223,0,108,245,6,114,32,109,111,114,101,32,197,49,255,86,7,0,
+32,98,6,0,115,163,253,0,58,98,244,158,252,226,157,18,163,149,255,39,
+0,1,95,50,82,10,131,222,224,14,0,226,185,28,226,181,25,64,104,159,
+69,171,229,225,227,0,97,226,224,125,1,0,52,79,40,5,67,32,95,50,
+51,51,64,65,65,203,231,102,2,1,96,95,196,224,230,211,3,64,98,167,
+41,229,58,2,225,97,20,0,69,255,72,0,10,110,32,105,100,101,110,116,
+105,102,105,101,191,71,91,83,225,104,5,1,79,32,102,65,221,76,1,58,
+53,92,144,96,203,1,52,54,132,235,2,95,49,54,65,10,0,58,96,139,
+96,25,1,54,54,100,132,64,1,0,80,64,146,71,190,130,183,197,218,1,
+53,53,132,184,0,53,135,248,99,22,0,58,97,19,128,64,0,55,229,84,
+0,98,111,1,95,53,140,246,2,54,32,89,100,220,5,83,32,73,32,64,
+90,98,110,192,6,162,99,192,54,99,168,96,62,0,89,69,152,99,111,64,
+13,64,61,224,59,1,166,123,131,186,99,127,96,103,64,0,2,89,32,66,
+65,154,0,80,230,149,7,225,89,19,9,102,97,105,108,101,100,32,116,111,
+32,124,183,3,32,97,110,121,79,180,20,116,104,101,32,112,111,115,115,105,
+98,108,101,32,99,104,111,105,99,101,115,58,66,231,129,105,99,246,1,51,
+32,122,30,65,202,3,56,52,32,85,99,218,129,128,224,112,19,224,69,2,
+224,67,1,96,13,1,50,57,164,60,132,106,68,17,128,10,164,74,129,36,
+224,19,2,0,83,161,15,228,178,1,159,253,224,35,3,225,62,8,224,28,
+3,0,90,160,204,192,40,128,78,96,11,0,39,103,27,192,93,1,95,49,
+109,231,0,80,160,65,192,73,226,70,0,66,12,103,85,128,69,0,80,70,
+118,64,246,5,10,65,32,85,32,58,66,92,166,129,0,39,64,2,97,31,
+0,49,196,191,0,90,96,1,224,82,0,0,53,68,217,128,119,96,40,69,
+132,128,41,2,52,32,65,64,25,192,33,66,99,225,101,16,12,73,110,32,
+97,32,115,101,113,117,101,110,99,101,225,114,15,133,117,101,148,66,237,73,
+158,197,224,0,50,224,157,21,161,15,101,83,85,181,160,159,96,38,192,35,
+65,2,134,87,98,14,133,128,0,51,98,29,224,88,17,0,58,96,133,128,
+51,75,124,121,133,227,23,0,133,207,194,101,75,10,80,43,250,184,0,0,
+53,193,141,165,35,1,32,85,195,232,64,106,68,165,1,57,57,128,86,0,
+51,132,181,236,94,1,231,45,0,131,63,234,228,0,0,90,162,213,64,238,
+160,95,96,0,0,58,96,11,97,222,0,75,96,196,0,58,97,167,96,16,
+0,73,97,253,164,88,0,48,196,246,65,39,132,60,101,66,2,95,51,48,
+160,240,0,53,233,145,0,235,247,6,64,247,3,83,32,64,82,227,203,3,
+225,225,1,0,80,67,174,9,46,115,97,116,105,115,102,121,58,32,131,199,
+237,6,7,96,95,130,155,99,62,68,218,1,52,56,161,21,224,75,1,6,
+82,97,110,32,111,117,116,67,248,10,105,110,112,117,116,32,40,69,79,70,
+41,137,121,202,28,64,73,130,209,1,95,51,76,128,101,14,224,153,12,0,
+110,164,75,96,63,139,37,3,95,51,50,57,160,253,3,64,95,51,51,96,
+62,64,11,0,58,96,6,163,57,229,5,1,102,95,161,1,163,210,227,201,
+11,99,192,99,195,96,16,0,58,96,106,64,160,1,52,56,96,109,98,196,
+170,231,229,50,0,0,58,96,173,64,37,97,36,99,92,224,35,2,96,234,
+161,243,193,68,224,14,6,232,213,7,1,95,49,97,3,102,29,0,50,97,
+239,128,10,193,36,64,114,130,145,0,95,192,18,224,238,5,229,244,9,0,
+67,162,133,0,64,192,181,229,231,4,3,95,51,51,52,192,127,1,95,50,
+147,133,160,103,167,180,0,51,225,80,3,136,254,142,149,172,19,97,30,76,
+22,0,58,96,6,128,50,68,8,224,122,0,134,100,108,21,128,130,160,80,
+102,211,224,74,8,64,11,0,58,96,6,1,10,65,99,215,0,85,96,16,
+64,45,97,220,0,90,128,242,65,171,69,67,0,58,96,82,161,246,64,20,
+224,28,6,130,103,2,73,32,58,96,192,64,157,103,79,0,52,67,88,67,
+249,108,49,0,80,66,26,0,80,66,91,98,74,224,12,0,110,254,224,45,
+0,129,235,130,83,133,83,230,49,6,96,197,129,120,133,15,96,140,69,168,
+64,25,0,83,160,58,0,64,96,18,224,5,4,230,125,6,160,60,230,157,
+2,230,139,14,129,195,224,35,1,224,116,2,194,231,224,114,0,105,163,244,
+67,1,235,137,3,128,73,160,46,107,85,241,47,5,175,49,192,160,162,198,
+134,83,2,49,56,50,128,46,100,214,64,5,96,91,165,44,3,64,64,64,
+79,67,98,231,47,1,224,174,90,131,120,224,174,69,224,109,17,192,154,224,
+42,0,224,118,44,96,61,66,136,167,16,231,137,2,2,79,32,35,66,186,
+224,147,3,64,43,224,250,19,128,127,0,82,64,119,67,153,224,211,4,98,
+159,0,39,96,2,99,163,98,234,128,39,224,132,36,225,23,1,64,1,0,
+89,192,24,227,13,1,226,202,5,224,48,4,73,13,224,66,6,201,15,224,
+63,9,70,247,245,128,0,161,246,224,194,1,101,220,2,95,50,53,71,138,
+225,75,0,224,86,1,3,95,50,55,48,82,76,224,131,8,232,239,17,23,
+87,97,114,110,105,110,103,58,32,67,97,110,39,116,32,102,105,110,100,32,
+102,105,108,101,236,29,2,224,74,3,237,214,0,224,19,2,237,223,18,17,
+51,52,38,32,105,110,32,100,105,114,101,99,116,111,114,105,101,115,73,81,
+1,92,57,224,89,1,239,54,3,160,89,192,203,78,207,224,13,2,238,67,
+18,224,80,2,225,210,32,224,183,20,18,49,48,38,32,32,65,115,107,101,
+100,32,102,111,114,32,98,121,58,32,200,33,71,131,1,50,56,250,24,1,
+198,213,97,180,165,75,224,88,16,6,109,105,115,115,105,110,103,97,97,224,
+82,1,224,40,0,224,157,0,97,106,203,79,110,118,64,117,141,77,157,50,
+129,55,67,110,110,68,64,143,224,39,6,0,51,105,241,224,157,3,235,134,
+0,160,63,129,88,66,81,1,53,51,65,44,64,9,193,221,96,95,128,13,
+2,95,53,52,70,166,169,205,131,117,160,19,128,0,113,207,68,201,1,95,
+50,87,58,170,227,0,73,64,31,3,95,53,52,50,102,78,135,199,0,85,
+170,189,2,95,53,52,131,130,0,58,96,31,166,168,108,199,0,95,105,108,
+100,42,75,181,64,23,2,51,48,49,234,125,4,239,51,2,225,190,13,3,
+57,50,38,47,239,64,0,173,29,0,58,96,114,1,10,65,224,93,0,224,
+181,1,229,252,7,168,182,106,185,128,230,224,251,12,0,58,96,7,96,81,
+0,58,65,64,167,47,225,131,1,73,23,64,8,1,95,53,117,44,65,159,
+0,53,75,114,169,20,128,26,1,51,51,242,229,2,15,85,84,70,45,56,
+47,47,82,79,85,78,68,84,82,73,80,128,196,135,129,228,25,1,1,95,
+50,107,12,0,51,100,254,1,95,53,100,9,0,58,97,239,208,224,129,211,
+108,58,224,145,4,1,95,53,76,71,96,80,134,119,197,80,79,232,3,64,
+95,56,49,146,235,0,35,129,156,162,33,224,61,0,99,134,0,50,224,122,
+1,226,93,6,225,52,0,183,189,128,241,192,181,128,167,224,199,3,97,30,
+83,82,0,53,98,190,224,73,0,195,5,0,58,96,102,4,10,65,32,75,
+51,69,210,0,58,96,38,7,10,65,32,94,103,101,116,98,65,114,170,180,
+6,50,54,52,32,79,32,95,64,29,0,79,64,13,0,53,160,66,0,58,
+97,1,181,36,128,230,0,50,64,51,226,51,12,225,121,13,244,132,6,20,
+117,110,107,110,111,119,110,32,116,101,120,116,32,101,110,99,111,100,105,110,
+103,236,58,2,97,209,65,135,64,123,130,241,138,15,81,178,1,53,51,65,
+85,162,91,161,2,0,90,65,171,0,51,192,27,96,54,210,61,0,48,108,
+115,78,35,1,95,53,82,49,67,79,135,89,0,85,64,47,138,56,64,54,
+141,75,0,50,110,227,0,58,96,24,107,48,2,51,50,32,78,47,97,113,
+0,49,130,10,0,85,96,35,1,95,49,110,27,100,203,75,1,96,92,2,
+95,49,51,75,139,96,11,0,58,96,6,96,132,2,49,32,75,70,105,67,
+30,1,54,56,225,8,2,23,67,111,110,116,114,111,108,46,69,120,99,101,
+112,116,105,111,110,46,73,110,116,101,114,110,150,216,224,39,1,3,83,111,
+109,101,224,35,0,97,40,161,153,64,215,106,198,161,31,148,41,139,69,73,
+13,0,53,98,226,205,63,66,207,192,230,142,51,64,30,9,10,65,32,99,
+97,116,99,104,32,58,96,63,130,251,226,238,4,67,121,0,49,203,153,66,
+189,64,39,229,157,17,4,111,112,101,110,70,101,153,6,99,97,110,110,111,
+116,32,64,16,165,165,225,224,1,96,126,235,29,0,227,237,5,64,109,163,
+237,68,102,194,18,0,49,96,200,226,251,3,131,13,224,33,2,128,89,64,
+90,130,55,229,204,6,85,236,228,6,7,65,47,134,4,224,5,0,0,83,
+100,214,0,32,101,123,64,3,224,96,1,97,97,226,207,7,18,72,97,110,
+100,108,101,32,97,108,114,101,97,100,121,32,99,108,111,115,207,10,227,187,
+6,0,49,144,54,0,53,88,40,1,95,53,70,41,174,226,131,192,0,50,
+98,190,0,58,96,212,131,176,0,65,67,176,64,22,99,127,0,66,78,110,
+108,169,96,68,141,143,0,58,96,60,96,31,1,95,53,80,159,1,35,48,
+64,52,64,29,11,10,65,32,65,46,119,114,105,116,101,32,58,96,26,67,
+246,96,158,67,248,64,126,131,248,0,51,64,13,130,10,134,90,2,95,53,
+48,67,106,2,49,52,32,64,76,128,101,64,187,10,10,65,32,116,111,70,
+117,110,80,116,114,64,50,129,190,145,77,1,95,50,138,212,0,58,97,100,
+173,134,130,101,65,200,129,139,225,142,4,3,64,95,53,48,110,254,73,200,
+225,195,2,170,86,167,182,229,55,4,2,53,48,51,160,37,0,53,119,41,
+2,95,53,48,199,103,133,69,71,127,120,94,67,225,229,123,0,110,200,119,
+113,1,95,53,216,149,0,58,98,101,164,214,0,80,132,247,0,95,103,78,
+160,5,101,1,0,58,96,47,227,98,0,228,116,3,1,95,53,90,16,128,
+122,225,229,5,97,59,0,48,213,32,224,55,8,146,46,192,177,227,14,0,
+162,126,0,95,68,241,128,160,64,177,78,135,4,79,46,112,101,114,93,10,
+4,73,79,32,94,38,161,191,64,31,129,209,6,102,112,102,105,110,32,58,
+64,118,128,14,2,110,101,119,64,14,129,208,8,94,97,100,100,95,70,73,
+76,69,64,18,129,194,96,18,3,117,116,102,56,64,18,242,238,0,0,53,
+87,157,64,166,64,89,165,117,64,32,129,188,202,91,225,188,0,232,247,3,
+0,49,68,135,224,17,3,96,216,126,45,97,91,234,63,4,0,49,66,54,
+100,191,224,23,7,0,57,198,180,224,24,5,88,68,224,23,8,227,125,1,
+1,119,43,232,163,0,0,52,120,111,99,187,198,170,1,52,57,129,246,114,
+237,225,111,3,194,34,226,120,8,0,58,98,149,101,252,1,49,48,98,255,
+0,58,96,61,105,93,0,56,225,206,0,104,236,91,218,64,118,64,254,192,
+6,0,49,70,137,128,118,0,58,96,6,99,52,4,73,110,116,32,58,96,
+33,65,128,0,102,101,18,0,58,96,175,99,65,131,212,234,170,0,67,148,
+162,37,228,151,0,1,95,51,65,171,200,83,122,167,155,81,160,18,2,58,
+52,57,129,241,116,18,0,52,245,175,0,64,24,167,226,2,51,53,57,66,
+232,97,22,130,138,1,54,50,224,11,0,2,52,56,48,187,195,2,52,56,
+50,160,90,64,212,96,205,64,33,0,58,96,6,130,44,0,52,104,192,0,
+51,81,96,0,58,64,34,128,22,85,97,90,75,0,66,99,13,0,51,121,
+227,1,52,56,89,103,2,53,54,32,65,201,0,49,232,150,0,67,49,0,
+51,90,76,0,80,64,165,165,218,155,13,96,246,114,141,67,87,75,108,227,
+66,2,96,84,64,184,134,10,224,23,6,160,76,197,216,161,239,128,27,246,
+52,0,160,24,192,52,1,95,52,94,147,128,21,82,54,129,131,102,21,4,
+32,61,61,32,64,118,173,148,104,0,52,64,192,226,121,1,2,98,105,110,
+197,230,224,61,0,173,134,240,162,0,233,48,13,65,11,0,51,233,162,1,
+96,114,233,93,16,2,79,32,35,78,139,163,2,0,51,123,47,64,51,100,
+180,64,12,225,54,0,224,237,1,240,36,4,65,162,169,15,116,153,96,33,
+65,171,75,120,0,90,181,222,1,52,57,183,53,96,228,224,43,2,96,122,
+2,95,51,52,104,196,0,51,103,148,96,37,235,180,0,64,39,130,119,70,
+173,64,76,162,36,0,51,83,144,1,95,52,77,229,0,58,66,6,160,22,
+98,26,105,226,116,53,225,139,0,64,18,0,52,95,144,231,136,1,112,107,
+163,200,137,110,1,95,51,87,160,192,233,231,146,1,64,97,0,54,227,164,
+1,184,88,0,83,107,158,140,159,2,67,32,60,87,171,64,44,224,25,12,
+96,70,203,210,130,123,160,25,165,230,0,85,74,51,226,25,4,139,111,162,
+186,232,124,0,160,43,96,131,226,74,6,64,99,160,48,128,36,192,219,192,
+57,224,129,14,162,207,224,85,14,129,16,224,85,8,98,71,224,144,22,141,
+252,224,58,19,236,230,2,224,145,3,100,115,224,171,12,164,183,224,112,14,
+99,76,224,171,45,103,149,224,171,21,224,59,16,66,219,224,59,10,142,253,
+160,0,165,185,98,103,0,58,96,6,226,77,0,110,228,70,205,99,221,66,
+153,229,172,0,96,107,102,16,133,253,238,6,0,192,12,2,49,55,52,224,
+17,0,1,64,75,111,114,169,247,64,65,114,145,107,145,224,23,0,224,24,
+0,224,93,0,116,221,224,99,6,224,86,4,232,232,0,224,142,12,1,52,
+56,64,117,224,47,4,224,24,2,0,52,108,173,160,21,129,1,133,237,64,
+6,171,66,92,95,129,77,65,7,105,173,132,22,224,179,0,128,123,67,5,
+128,17,96,96,96,23,96,84,68,6,120,34,96,6,100,7,0,85,227,29,
+13,164,223,192,31,69,21,0,52,71,152,224,24,1,229,213,6,0,50,137,
+134,96,91,132,229,0,80,169,90,103,224,68,135,82,244,0,52,81,33,4,
+64,95,51,57,51,69,56,0,50,73,91,160,19,233,122,0,172,9,96,14,
+140,233,96,66,224,63,2,96,108,160,10,3,49,57,53,32,219,181,97,10,
+170,183,224,10,1,0,58,96,184,231,25,4,230,123,14,131,64,250,103,1,
+254,122,0,108,172,117,177,227,235,2,160,27,97,34,160,49,229,42,4,230,
+64,11,207,205,192,60,230,255,11,96,253,231,77,2,225,108,10,160,227,64,
+0,114,152,0,58,72,53,99,39,69,236,3,95,52,55,56,69,235,64,80,
+64,19,229,233,5,133,220,0,58,96,35,96,49,0,55,64,88,64,43,128,
+10,0,52,156,167,128,10,96,53,128,10,74,97,128,10,70,211,192,10,128,
+185,212,64,0,58,96,91,96,85,72,188,0,52,66,232,2,95,52,55,75,
+193,96,36,137,206,224,142,0,1,57,49,161,186,230,124,4,160,58,206,81,
+128,20,236,142,3,224,43,9,115,167,224,43,8,161,158,224,25,1,224,18,
+1,1,52,54,169,87,98,13,128,185,222,165,250,139,1,191,196,64,28,188,
+44,224,121,2,97,54,0,56,96,193,101,18,96,11,128,86,66,123,224,40,
+5,224,55,11,116,155,160,10,181,5,231,130,3,1,52,51,194,215,224,196,
+7,207,26,229,60,3,160,77,82,243,227,78,0,224,68,6,224,66,2,163,
+148,96,217,132,8,225,83,4,64,145,65,210,224,199,5,225,173,4,224,74,
+12,168,221,224,74,7,66,179,224,74,5,68,125,206,132,160,70,64,94,224,
+233,8,225,171,2,2,95,52,55,213,163,0,58,98,87,225,171,2,0,80,
+98,95,206,33,1,80,32,100,194,0,85,64,20,64,58,224,146,7,0,48,
+101,75,0,50,69,111,1,95,52,68,205,225,73,6,75,166,225,141,8,1,
+53,56,224,53,4,245,186,8,234,142,1,1,95,39,234,140,3,224,205,10,
+69,152,235,4,0,0,58,99,66,192,183,64,73,128,183,131,70,224,168,6,
+2,95,49,54,78,23,96,126,224,29,6,99,216,73,147,0,58,96,41,209,
+115,138,132,3,52,57,32,35,101,182,96,233,85,18,106,101,0,58,96,48,
+224,42,9,109,190,224,42,0,0,49,149,145,96,98,225,74,5,0,52,76,
+199,1,52,54,64,74,0,83,141,235,97,16,136,9,0,79,241,153,2,1,
+46,46,65,18,224,17,3,1,58,58,128,17,2,79,32,35,64,210,69,19,
+96,12,75,32,224,12,0,166,221,224,57,5,1,60,45,224,75,7,1,45,
+62,224,75,1,224,48,0,96,62,185,34,224,44,3,0,61,96,44,229,131,
+0,161,167,226,207,3,0,52,64,144,224,20,8,126,92,65,5,130,227,97,
+173,64,25,129,173,208,194,226,17,13,13,33,64,35,36,37,38,63,43,46,
+47,60,61,62,63,87,207,4,94,124,58,45,126,64,136,0,58,97,62,139,
+144,226,163,2,127,211,134,138,0,82,76,94,64,105,136,90,227,50,3,66,
+148,226,101,9,226,90,2,0,53,223,120,224,91,4,64,222,205,217,237,36,
+2,189,155,200,193,66,20,102,255,192,31,224,161,10,128,24,67,129,104,64,
+227,208,4,224,151,17,237,33,1,237,78,0,0,58,96,202,227,168,9,1,
+95,52,127,199,224,72,4,67,67,65,141,2,67,32,79,224,62,2,204,214,
+1,80,32,106,219,97,150,64,37,225,150,18,8,44,59,40,41,91,93,123,
+125,96,129,136,64,105,228,189,10,86,108,3,64,75,32,89,225,1,6,0,
+89,96,238,69,204,0,64,231,95,1,224,58,6,121,126,228,248,5,65,54,
+65,104,228,112,2,0,35,119,98,105,97,0,51,80,224,205,90,231,181,6,
+224,91,15,193,23,205,128,225,93,4,224,20,3,0,52,78,6,193,179,143,
+97,140,74,129,224,201,123,132,81,65,51,229,18,2,97,4,225,135,11,0,
+51,77,140,195,77,130,58,152,20,83,198,225,240,1,123,141,97,100,208,186,
+1,80,32,108,72,129,167,230,130,13,90,132,225,62,5,96,194,0,85,137,
+141,232,214,1,162,106,1,51,55,91,92,110,184,105,68,128,200,224,201,8,
+208,123,224,109,12,117,215,227,247,5,233,105,1,0,58,105,25,192,189,65,
+76,128,189,242,166,0,225,229,8,230,88,7,65,179,224,95,4,83,150,237,
+16,0,225,227,4,232,52,6,226,55,11,165,166,224,20,6,130,76,224,20,
+5,0,49,84,61,224,21,9,103,204,224,21,9,128,152,224,21,7,68,255,
+224,21,9,224,109,11,156,117,226,228,7,128,85,225,17,4,129,115,240,74,
+8,193,163,224,17,3,130,127,224,17,2,96,100,224,17,4,85,50,224,35,
+6,224,34,8,142,102,224,17,3,131,19,224,17,3,224,88,8,139,131,224,
+16,2,161,173,225,163,7,74,138,104,217,224,95,8,229,25,5,105,149,216,
+145,128,18,226,190,5,3,67,32,95,55,83,173,100,24,2,95,51,57,85,
+25,109,40,0,49,116,51,1,52,52,64,4,173,240,227,147,9,73,185,141,
+32,148,59,224,171,13,68,66,132,217,226,102,23,134,124,224,20,7,136,77,
+224,20,6,226,35,11,148,33,224,20,7,226,55,11,105,230,224,20,7,105,
+244,224,20,8,65,234,224,20,8,226,118,11,74,221,224,20,9,224,209,11,
+75,254,224,20,9,224,209,11,161,163,224,20,6,224,209,11,109,209,224,20,
+7,77,169,224,20,9,224,209,11,107,88,224,20,8,224,209,11,112,42,224,
+20,8,224,209,11,83,157,224,20,9,224,209,11,84,64,224,20,9,224,209,
+11,106,76,224,20,8,224,209,11,228,26,12,85,130,224,20,9,228,47,11,
+107,153,228,47,10,227,249,8,126,80,224,17,4,177,93,224,17,3,227,215,
+8,89,50,224,17,6,142,216,224,17,3,135,80,224,17,3,228,155,8,92,
+244,224,17,6,228,84,8,156,99,224,17,4,228,138,9,228,192,9,224,179,
+8,188,188,224,17,3,224,179,8,92,50,224,17,6,224,179,8,229,26,10,
+229,97,26,229,62,9,224,178,8,229,61,15,224,16,1,224,175,8,224,174,
+8,224,173,8,225,96,9,224,153,8,224,16,7,206,60,5,95,52,52,56,
+32,79,176,160,233,99,0,2,52,52,57,236,36,2,2,83,79,72,109,195,
+224,79,7,224,47,17,224,46,8,128,178,0,79,224,98,16,2,78,85,76,
+224,51,7,96,161,224,49,17,2,83,84,88,224,49,7,96,245,224,49,17,
+0,69,224,49,9,97,56,224,49,18,1,79,84,224,49,7,96,200,224,49,
+18,1,78,81,224,49,7,97,190,224,49,17,2,65,67,75,224,49,7,98,
+1,224,49,17,1,66,69,225,43,8,98,68,224,49,18,0,83,224,48,7,
+98,134,224,48,17,0,72,224,247,8,98,200,224,48,17,1,76,70,225,242,
+8,225,191,22,0,86,224,98,8,131,79,224,49,17,0,70,224,99,9,225,
+241,22,1,67,82,224,49,8,225,241,22,1,83,73,224,49,8,225,191,22,
+2,68,76,69,224,50,8,225,192,22,2,68,67,49,224,50,8,225,193,22,
+2,68,67,50,224,50,8,225,195,22,2,68,67,51,224,50,8,225,197,22,
+2,68,67,52,224,50,7,133,134,224,50,17,1,78,65,226,190,8,133,203,
+225,99,18,1,89,78,224,50,8,227,186,24,0,66,224,50,8,225,201,22,
+1,67,65,224,101,9,227,188,23,0,77,224,49,8,225,252,22,1,83,85,
+224,151,9,225,252,22,2,69,83,67,224,50,8,225,252,22,0,70,227,190,
+8,135,172,224,49,17,0,71,224,49,9,225,250,22,0,82,224,49,8,136,
+52,224,49,17,0,85,224,49,9,225,248,23,0,80,224,49,8,225,247,22,
+0,68,228,234,9,0,49,129,45,242,178,5,224,0,17,238,95,11,221,17,
+0,58,111,64,242,17,13,1,83,39,146,18,145,253,122,191,123,159,224,75,
+0,144,36,123,6,0,85,210,147,224,19,0,185,30,112,67,233,177,2,201,
+172,143,162,242,65,14,82,63,64,0,88,201,0,58,65,14,64,161,0,80,
+160,98,147,4,122,132,0,90,160,4,112,95,145,121,71,203,160,217,64,9,
+79,134,1,52,52,122,37,0,54,143,161,128,9,4,49,49,49,52,49,101,
+109,0,58,109,56,111,174,3,53,51,32,58,109,44,191,62,87,64,255,62,
+1,64,163,213,25,237,185,1,246,164,14,250,218,26,0,58,109,244,64,120,
+0,54,87,162,91,44,2,95,52,48,121,61,67,115,2,95,52,48,89,95,
+0,52,67,76,74,245,106,249,120,219,142,4,0,52,143,42,0,52,123,205,
+224,13,1,64,210,0,73,96,174,215,122,1,57,49,64,4,0,51,122,109,
+181,88,0,58,96,39,224,29,2,0,50,224,29,6,186,58,224,59,1,1,
+95,49,84,230,0,58,96,102,96,178,78,141,150,104,83,72,224,147,0,98,
+191,122,229,1,52,51,96,208,0,51,64,196,1,55,56,224,34,0,0,55,
+86,32,96,10,0,58,96,6,219,132,0,50,64,46,160,65,0,58,96,53,
+147,167,192,16,129,149,224,42,2,192,27,64,28,129,167,123,157,254,249,0,
+125,16,158,114,252,68,6,1,95,52,83,84,241,100,1,254,150,2,93,38,
+131,26,64,94,96,38,97,169,64,104,64,97,245,30,0,147,39,156,23,98,
+221,79,96,108,202,224,34,0,224,9,1,79,187,64,218,161,169,138,56,0,
+52,67,248,0,58,65,61,64,89,0,75,83,50,0,58,96,19,3,10,65,
+32,90,160,13,129,164,0,75,130,127,64,62,97,122,65,76,68,1,1,95,
+52,69,3,0,58,97,134,225,70,7,64,31,0,58,96,31,193,24,243,138,
+2,227,206,0,96,187,97,150,99,160,0,52,66,160,100,106,99,174,254,151,
+3,0,58,96,81,99,12,80,31,226,23,0,96,25,129,155,0,83,129,70,
+99,147,0,66,66,239,226,61,7,195,218,160,4,1,83,32,67,222,224,48,
+32,193,221,253,142,4,182,159,224,207,1,158,32,244,120,4,224,237,4,110,
+131,1,95,52,177,132,2,32,95,52,99,202,0,57,220,173,97,120,224,62,
+1,160,110,128,113,164,176,160,116,193,222,64,90,192,25,160,123,224,117,22,
+224,115,5,224,113,5,224,51,17,197,176,224,0,1,0,58,100,38,193,248,
+2,52,49,51,64,84,97,192,160,16,0,52,65,221,67,138,2,50,49,56,
+99,74,73,97,165,3,0,49,98,68,79,65,162,227,66,59,73,78,224,157,
+5,0,58,96,119,101,68,1,49,57,64,67,1,57,52,178,68,242,79,1,
+191,111,128,197,69,69,224,34,21,1,73,32,64,2,79,218,73,138,96,168,
+192,139,64,62,224,96,0,160,46,149,217,0,89,225,100,0,192,56,160,230,
+255,145,2,224,60,3,224,137,6,160,119,150,211,1,95,52,73,208,179,81,
+113,122,225,16,4,217,101,225,251,0,160,75,0,50,192,44,161,234,224,70,
+0,2,52,50,49,224,71,0,65,168,69,162,175,239,224,42,7,224,113,2,
+224,41,6,0,58,96,8,163,95,1,75,52,132,1,128,23,132,18,224,23,
+9,220,240,0,89,227,63,1,131,52,130,74,185,172,0,82,224,22,4,250,
+9,2,64,146,162,60,224,1,1,68,173,96,0,224,20,11,224,17,8,224,
+14,5,224,11,2,192,8,131,14,64,109,64,118,128,197,64,195,224,197,1,
+66,114,101,88,98,8,102,55,76,58,0,58,98,171,192,222,128,181,0,58,
+96,25,100,206,130,20,225,81,4,98,199,225,5,2,131,75,160,239,192,92,
+226,20,4,162,96,68,238,134,219,64,33,225,81,3,64,64,70,16,228,138,
+0,232,237,3,192,21,160,104,224,29,0,128,39,250,217,3,0,58,67,137,
+128,88,72,4,1,50,53,233,220,2,4,102,111,108,100,108,141,9,64,249,
+128,134,130,8,224,134,0,0,83,228,209,4,96,79,130,18,97,5,201,150,
+68,150,211,26,101,180,97,16,251,17,1,192,176,194,24,98,152,136,203,153,
+220,2,49,53,54,168,162,1,64,95,115,253,132,226,103,61,100,20,96,36,
+1,50,48,224,36,7,197,9,227,124,2,2,67,32,95,86,150,195,122,0,
+58,96,61,167,62,234,18,5,134,113,136,128,64,6,0,51,97,0,230,232,
+1,72,244,67,130,65,214,68,137,199,179,64,15,64,9,199,173,2,95,49,
+55,72,133,96,77,0,58,96,6,226,84,0,169,87,103,15,73,93,102,169,
+0,73,198,26,138,73,230,102,4,128,113,233,25,2,96,153,230,240,1,96,
+209,64,79,98,138,128,252,0,64,230,44,0,253,59,2,68,58,193,182,97,
+118,232,152,3,130,37,224,86,2,197,188,65,31,230,227,0,128,8,168,137,
+162,124,160,243,96,64,1,52,48,87,196,160,64,1,52,48,147,38,224,25,
+3,131,249,64,14,251,246,0,160,145,128,102,224,174,9,224,124,7,233,8,
+1,224,127,22,224,101,3,224,130,8,224,156,5,225,91,4,192,247,97,102,
+0,48,227,28,2,24,92,51,52,38,46,47,108,105,98,47,68,97,116,97,
+47,73,110,116,101,103,101,114,46,104,115,64,24,4,44,49,50,56,58,131,
+57,0,58,97,227,102,164,1,48,52,166,187,0,58,96,111,163,36,97,126,
+128,224,97,176,64,9,98,255,96,23,162,138,67,52,230,177,7,165,170,128,
+53,64,47,64,57,228,22,4,196,201,192,7,2,80,32,95,71,184,0,75,
+96,249,224,204,34,3,54,52,58,54,132,6,166,243,227,161,1,96,116,164,
+95,64,15,131,177,108,148,227,162,4,1,48,52,253,121,0,228,157,0,163,
+107,1,52,48,73,83,199,212,196,170,224,80,12,98,161,224,80,8,97,157,
+96,69,97,110,196,207,131,65,100,120,0,54,65,56,229,136,0,0,83,105,
+10,228,48,11,228,105,13,160,47,64,139,229,159,0,224,61,11,101,179,228,
+108,4,224,79,11,228,154,18,232,20,3,0,58,96,208,164,40,64,200,65,
+213,234,130,19,169,148,97,10,0,49,98,99,173,99,64,127,93,102,64,8,
+2,51,48,49,229,136,10,0,64,128,32,64,51,229,11,0,136,100,172,35,
+96,129,129,142,254,165,0,225,83,0,232,74,1,97,34,107,178,224,99,4,
+227,214,0,0,89,160,36,191,193,226,66,3,194,183,101,65,194,175,191,230,
+102,70,130,102,198,30,168,63,99,175,128,145,224,143,4,194,64,236,71,11,
+192,146,96,246,230,239,4,6,108,116,87,46,99,109,112,162,233,161,19,160,
+6,2,64,64,95,153,205,64,5,0,58,100,115,65,91,2,51,57,56,195,
+211,100,41,227,211,2,164,180,194,108,231,0,6,162,239,231,2,8,227,73,
+15,97,91,64,109,162,244,231,226,1,0,67,64,23,70,109,236,40,0,227,
+161,44,224,91,2,227,161,8,224,95,5,227,161,30,224,80,3,97,63,96,
+69,0,64,65,40,239,89,1,97,201,227,140,36,129,208,227,51,2,224,10,
+1,0,58,96,97,1,10,65,69,26,0,58,96,173,146,58,0,51,91,156,
+146,90,128,75,0,58,80,255,193,171,235,191,5,138,20,224,226,0,66,102,
+99,12,1,95,50,170,167,225,98,1,205,95,162,147,64,5,64,140,224,243,
+0,97,9,0,66,104,109,225,7,1,96,142,159,78,0,80,193,52,225,36,
+2,65,56,69,230,225,229,0,229,232,0,0,58,96,197,128,179,98,214,192,
+39,97,118,96,86,0,50,224,103,0,0,58,96,99,138,210,0,50,74,213,
+96,36,0,58,96,34,243,78,13,195,189,242,59,0,161,251,234,111,1,162,
+208,242,75,4,234,106,3,235,217,1,129,22,162,34,98,56,0,48,74,92,
+102,195,169,118,224,69,16,129,135,243,121,12,160,27,115,126,64,92,96,102,
+64,4,0,95,73,68,234,211,2,73,112,129,151,244,182,0,97,32,0,55,
+69,0,127,13,208,139,1,95,50,126,158,244,54,5,0,58,115,53,234,17,
+0,237,106,2,98,236,81,78,129,102,225,172,2,65,95,129,172,227,56,3,
+224,58,38,132,103,224,58,44,188,216,194,147,224,67,0,224,56,25,188,205,
+2,51,48,56,229,9,2,15,118,97,108,68,105,103,58,32,66,97,100,32,
+98,97,115,101,133,18,71,76,128,83,70,77,76,220,0,51,95,116,0,35,
+197,241,224,17,0,2,64,35,53,99,172,224,48,15,100,8,224,48,5,0,
+49,114,159,0,64,69,37,224,49,11,0,54,69,123,224,49,5,0,55,134,
+185,1,49,56,66,190,66,48,1,56,50,132,120,231,125,1,231,177,4,1,
+95,49,67,136,96,5,128,78,254,14,0,224,61,39,132,199,224,61,12,224,
+48,13,213,245,65,103,131,0,224,231,15,225,74,11,96,171,224,231,10,224,
+107,23,224,99,34,86,196,224,99,42,0,58,67,217,100,147,224,206,34,97,
+60,224,106,39,0,58,97,55,213,219,119,171,2,95,51,56,100,29,0,56,
+79,151,0,49,64,193,2,95,51,56,67,211,0,51,70,41,117,213,128,114,
+117,213,128,10,0,58,96,6,6,10,65,32,62,61,32,58,96,39,64,11,
+64,10,0,54,96,10,0,60,64,10,134,26,3,105,99,109,112,64,13,178,
+97,228,142,6,71,207,248,55,2,0,35,104,35,224,20,7,0,54,135,225,
+224,20,5,151,215,224,21,7,0,55,98,113,224,42,7,123,219,119,90,224,
+21,2,128,211,152,167,249,118,3,163,200,224,17,19,129,75,224,16,19,132,
+189,224,16,7,1,58,51,69,38,211,204,230,58,7,132,117,201,212,185,150,
+135,30,192,23,192,35,135,54,148,162,199,66,224,35,4,237,244,3,232,189,
+2,233,208,6,0,39,68,195,224,21,2,224,66,0,102,119,243,166,9,166,
+192,169,70,138,110,128,66,83,119,211,125,245,252,1,66,142,230,57,0,138,
+180,141,141,237,140,24,97,32,251,43,0,166,185,150,225,241,221,11,225,104,
+1,0,95,156,201,134,168,88,255,129,102,88,106,128,0,192,23,193,128,96,
+25,1,95,51,81,189,64,0,120,27,224,48,1,96,143,2,58,51,56,231,
+239,0,0,51,75,26,226,70,2,64,28,211,163,231,107,8,129,163,0,82,
+219,53,231,29,3,0,58,96,72,227,17,7,81,127,231,109,17,167,101,224,
+236,2,1,51,55,98,121,1,58,51,66,247,122,207,1,35,54,117,121,0,
+58,96,25,107,89,84,184,0,51,118,33,96,133,187,65,1,51,50,67,204,
+128,86,1,51,51,64,34,96,11,0,58,96,6,137,29,73,231,1,51,55,
+83,80,70,240,69,62,1,95,51,120,145,97,98,0,58,64,152,64,41,71,
+20,243,236,2,96,49,135,244,104,241,128,72,96,200,0,49,233,102,0,129,
+223,0,51,102,122,104,121,2,51,55,51,233,220,2,89,9,1,51,55,238,
+127,1,1,95,51,122,255,69,25,96,189,64,29,227,72,2,97,207,128,29,
+74,251,0,51,157,108,0,58,96,42,129,152,0,50,69,55,3,54,54,32,
+35,96,71,133,38,97,22,164,3,0,55,160,161,0,48,128,7,96,41,108,
+93,64,246,1,95,51,186,66,64,82,225,235,6,69,166,1,51,54,64,69,
+105,224,138,83,110,228,227,103,0,76,87,145,90,96,90,65,118,114,212,1,
+51,54,242,104,0,96,120,129,74,0,51,193,73,0,58,64,42,129,193,0,
+53,64,212,66,27,0,58,96,106,162,136,64,202,0,90,125,146,0,53,162,
+81,64,198,228,92,5,128,158,96,103,204,79,64,5,229,7,3,96,255,99,
+51,0,58,64,247,224,113,2,66,45,0,58,96,27,96,19,1,52,49,90,
+20,0,51,84,150,64,22,165,207,160,156,84,211,96,104,129,249,1,95,51,
+92,66,3,95,51,54,49,152,123,1,58,51,74,151,203,71,66,2,0,58,
+96,27,160,202,128,44,70,122,1,58,51,70,178,236,212,0,246,103,8,2,
+58,51,53,251,7,2,1,51,48,65,215,125,77,106,169,67,66,84,2,1,
+51,53,214,112,192,244,66,140,2,66,32,80,97,90,64,77,172,111,238,254,
+2,207,75,129,26,0,50,124,221,2,49,54,53,75,82,0,55,174,90,161,
+69,235,34,4,224,236,0,226,83,7,64,205,196,195,97,134,129,40,235,38,
+3,166,53,129,191,2,95,51,53,239,67,3,19,80,114,101,108,117,100,101,
+46,114,101,97,100,58,32,110,111,32,112,97,114,202,63,154,130,3,95,51,
+53,54,146,131,224,57,19,8,97,109,98,105,103,117,111,117,115,224,64,3,
+65,33,130,43,66,64,64,13,129,248,101,182,128,16,129,245,110,0,64,158,
+228,168,10,229,207,1,155,44,240,99,1,226,241,3,236,129,11,159,248,229,
+179,9,0,58,97,30,194,108,1,95,51,74,24,0,58,96,51,224,19,2,
+99,6,64,127,227,6,2,93,71,65,95,226,97,0,65,174,0,58,97,130,
+96,184,163,114,228,74,2,64,167,143,114,160,131,174,145,2,95,51,51,84,
+92,161,195,0,51,69,122,96,11,0,58,96,6,64,76,96,180,0,51,132,
+39,131,130,196,36,128,196,0,95,123,162,128,64,90,110,132,60,0,95,100,
+152,128,10,1,51,52,224,86,3,229,110,0,183,174,0,66,134,178,239,14,
+0,224,18,3,1,66,39,181,154,161,46,0,52,129,182,128,147,0,50,160,
+147,101,101,224,135,0,134,119,96,135,113,118,128,135,128,10,198,24,64,73,
+163,229,192,18,229,87,2,132,202,225,30,5,130,176,129,30,64,11,0,58,
+96,6,97,165,229,176,3,64,172,67,161,64,155,64,61,100,251,135,52,64,
+6,224,47,4,138,198,131,153,83,21,224,49,2,132,113,64,6,5,10,65,
+32,73,32,58,96,44,192,10,196,46,2,95,51,51,95,39,99,139,160,16,
+80,163,231,207,5,0,58,96,36,192,232,121,19,103,162,224,5,0,101,29,
+207,160,64,67,108,156,146,53,232,72,5,160,30,138,132,224,30,9,165,40,
+249,189,1,230,155,4,100,68,224,46,2,121,220,132,242,2,95,51,51,151,
+104,209,54,251,249,0,100,131,132,170,189,14,195,112,137,202,64,26,81,130,
+224,21,1,69,49,103,94,228,177,1,193,23,160,165,224,24,0,161,217,169,
+13,97,217,96,11,0,58,96,6,167,69,136,3,69,26,0,58,64,34,131,
+110,231,251,0,0,58,96,25,165,118,226,180,0,99,155,0,51,130,29,0,
+80,166,63,161,59,130,69,91,144,64,34,194,16,98,150,64,150,128,43,184,
+159,234,240,0,234,220,1,224,19,2,128,114,213,1,224,32,2,224,9,10,
+113,130,225,223,5,232,58,7,0,64,101,239,74,205,160,218,224,4,0,222,
+95,96,58,65,167,68,235,224,57,8,224,179,7,129,169,226,102,0,162,96,
+64,41,192,83,224,84,5,224,82,5,224,81,11,224,91,4,224,82,9,224,
+183,3,224,58,17,226,239,5,224,59,20,225,114,9,224,9,2,102,1,160,
+65,193,251,160,234,224,240,16,160,100,227,69,2,194,254,139,137,224,115,1,
+160,224,97,163,98,185,97,47,128,127,1,95,51,95,94,1,51,50,100,45,
+162,74,96,0,224,98,2,0,83,96,168,154,12,224,151,32,226,162,5,224,
+100,2,131,170,178,85,225,7,0,161,10,224,13,22,99,166,130,124,224,252,
+0,224,254,0,160,13,225,1,1,228,1,0,64,230,128,217,160,17,1,95,
+49,101,181,225,19,8,224,248,6,64,4,224,98,22,245,157,0,192,97,162,
+134,128,96,228,41,3,194,11,226,202,6,225,71,31,225,224,24,160,107,225,
+214,21,226,202,21,192,9,195,224,226,192,4,224,49,32,224,176,2,228,22,
+9,225,93,10,230,3,4,224,45,5,224,47,8,225,58,0,224,141,18,96,
+139,226,35,5,193,63,224,142,23,252,140,16,5,84,101,120,116,47,80,73,
+255,17,114,67,111,109,98,105,110,97,116,111,114,115,47,82,101,97,100,80,
+252,156,0,3,53,49,58,51,252,156,0,64,0,174,35,96,108,174,35,96,
+11,0,58,96,6,114,173,144,123,132,175,64,35,137,90,238,45,5,150,146,
+0,58,64,64,134,48,1,75,51,169,159,64,46,192,70,66,63,98,120,192,
+55,96,71,70,6,64,21,114,142,96,21,198,177,2,95,51,50,103,238,90,
+179,192,85,140,87,64,23,230,152,0,238,150,1,64,61,134,95,0,51,135,
+64,255,213,1,226,254,0,226,251,1,138,27,104,63,64,64,206,182,128,120,
+71,40,98,155,2,95,51,50,73,249,96,11,0,58,96,6,198,253,162,216,
+128,216,64,100,104,9,96,204,79,96,68,68,64,81,120,125,138,76,0,50,
+253,136,5,97,69,86,100,64,42,130,107,224,42,14,241,55,8,209,248,72,
+11,236,227,5,164,179,251,255,3,0,32,86,92,161,7,140,251,128,97,103,
+165,224,164,23,224,212,1,90,96,192,24,224,186,39,162,204,224,241,46,195,
+58,129,114,224,218,6,224,158,0,224,215,38,224,139,39,101,93,224,139,1,
+130,189,129,86,97,252,96,137,221,69,225,151,1,230,70,1,224,184,2,64,
+5,163,16,225,155,184,128,247,225,159,3,224,231,14,225,168,103,224,152,5,
+123,103,131,254,235,84,1,236,141,1,97,162,102,147,167,103,224,174,1,68,
+247,225,90,53,128,87,224,7,1,224,132,108,224,95,10,224,94,67,96,80,
+128,181,224,222,110,78,238,1,50,53,231,28,2,31,115,116,105,109,101,115,
+58,32,112,111,115,105,116,105,118,101,32,109,117,108,116,105,112,108,105,101,
+114,32,101,120,112,101,3,99,116,101,100,103,13,0,58,69,227,141,0,109,
+163,173,142,0,83,158,225,175,158,141,128,193,194,96,52,244,189,1,178,187,
+0,58,70,121,198,153,64,165,0,58,96,46,242,235,0,128,40,64,82,224,
+11,0,224,61,2,96,46,231,65,0,0,50,237,115,1,65,29,208,3,1,
+49,56,145,124,76,68,0,95,142,128,144,6,141,214,112,6,103,62,144,6,
+160,10,205,111,1,64,58,96,6,143,149,129,126,128,5,134,206,213,200,237,
+53,0,190,48,79,224,64,120,233,236,7,224,28,7,239,18,11,140,237,224,
+65,9,182,251,96,24,64,186,161,123,97,7,64,73,72,151,96,49,0,58,
+96,6,224,178,0,105,177,135,202,66,86,226,53,0,192,75,71,168,199,203,
+132,134,128,46,135,248,71,203,224,34,4,0,58,96,125,128,93,1,95,50,
+64,105,128,121,135,239,64,6,110,212,0,58,96,67,115,77,128,1,121,84,
+64,33,194,4,249,18,1,96,4,159,124,128,205,0,58,97,4,1,10,65,
+225,212,1,0,58,97,39,96,78,224,57,6,224,87,0,210,254,224,87,6,
+224,34,3,130,22,234,113,0,240,222,8,64,242,81,28,105,157,65,116,171,
+235,133,24,160,14,0,85,163,141,160,38,230,197,3,169,136,0,67,129,148,
+115,242,128,64,64,84,162,78,64,17,144,58,4,52,57,32,95,50,66,255,
+67,135,118,87,85,181,161,61,0,48,243,3,0,212,78,70,19,161,243,0,
+90,180,79,140,176,199,56,96,31,96,42,64,22,228,82,3,251,228,5,80,
+120,130,87,132,103,225,40,1,128,228,106,110,0,48,238,54,0,224,38,10,
+224,123,2,64,181,193,243,228,78,6,7,105,110,105,116,58,32,91,93,100,
+50,68,29,225,90,0,224,114,4,193,54,224,115,1,0,58,96,9,97,36,
+231,23,0,2,115,101,113,192,213,128,19,224,16,2,228,25,11,64,68,130,
+105,0,83,91,91,2,50,52,52,160,254,246,192,2,224,170,1,3,35,108,
+105,110,182,7,65,219,170,241,224,42,12,8,123,45,35,32,76,73,78,69,
+32,246,119,0,139,29,69,109,95,188,64,7,74,245,1,95,51,71,174,0,
+64,224,57,2,3,32,35,45,125,128,52,1,58,51,69,159,128,224,225,21,
+1,67,37,213,129,235,101,0,98,133,0,50,64,13,131,126,3,95,50,57,
+57,68,70,1,95,50,82,108,214,83,96,25,1,51,48,68,181,96,16,0,
+58,96,51,96,96,243,42,0,225,123,1,208,59,98,82,242,238,0,0,58,
+64,63,162,115,1,95,50,76,67,249,19,5,0,35,108,232,224,28,15,130,
+247,224,18,4,101,16,64,86,227,118,0,198,39,101,53,183,177,0,50,94,
+222,192,155,167,10,162,205,64,12,192,166,96,24,65,248,224,51,0,224,186,
+2,128,53,148,65,175,157,128,81,0,58,65,45,64,124,88,233,134,158,224,
+43,9,224,42,0,214,205,4,57,54,32,79,32,96,238,100,122,97,214,217,
+94,1,50,57,112,254,1,50,57,83,240,64,41,128,25,225,94,0,208,44,
+96,91,225,125,10,192,199,193,229,165,137,244,140,1,0,58,96,90,96,135,
+1,50,56,162,91,224,161,0,197,59,98,117,0,49,66,214,128,140,128,121,
+104,24,160,20,193,28,2,58,50,57,194,106,0,95,64,73,110,33,96,48,
+231,53,1,224,1,3,168,42,160,137,231,92,0,224,37,6,224,39,4,64,
+40,246,113,0,66,153,0,56,119,232,102,27,1,58,50,94,147,224,205,2,
+97,236,100,237,96,38,197,177,89,96,1,50,56,166,88,1,49,51,88,173,
+0,85,209,135,97,246,103,57,0,49,87,220,227,244,0,64,107,64,17,227,
+97,2,3,32,97,116,32,67,202,163,156,226,54,2,128,63,1,51,55,70,
+210,129,106,224,66,14,2,99,111,108,192,61,130,42,224,57,8,65,204,131,
+232,224,61,8,15,92,49,48,38,32,32,32,32,117,115,101,100,32,98,121,
+32,160,73,128,62,1,50,56,128,189,160,0,3,95,49,51,53,192,20,3,
+95,49,51,56,192,11,0,58,96,6,97,50,1,56,52,155,124,4,53,32,
+64,79,32,99,79,136,224,1,50,56,197,31,227,221,11,168,72,146,175,96,
+45,246,105,0,97,121,91,30,0,49,121,118,0,58,127,60,250,242,0,1,
+50,56,130,22,2,80,32,73,64,105,241,58,10,31,99,112,112,104,115,115,
+114,99,47,109,97,108,99,111,108,109,45,119,97,108,108,97,99,101,45,117,
+110,105,118,101,114,115,1,101,47,96,33,6,45,49,46,50,48,46,57,128,
+12,209,76,3,55,57,58,49,164,254,1,50,56,130,88,87,191,128,147,96,
+110,192,147,130,76,3,75,32,58,50,191,194,2,95,50,55,72,108,80,37,
+1,58,50,223,196,1,53,48,102,114,95,18,1,95,50,95,119,92,240,66,
+254,159,192,1,49,56,66,138,192,11,65,126,159,204,96,6,194,101,129,57,
+225,194,4,10,69,120,105,116,83,117,99,99,101,115,115,197,225,131,248,127,
+245,66,4,2,50,32,95,64,162,196,224,226,7,11,64,68,5,70,97,105,
+108,117,114,166,85,224,36,1,228,89,2,97,247,70,151,66,87,0,35,148,
+142,226,24,1,160,210,98,24,96,11,0,58,96,6,69,73,69,29,131,238,
+1,49,57,255,191,0,105,185,128,16,128,73,0,58,96,178,97,42,126,166,
+0,50,74,224,2,49,54,56,224,167,2,6,83,121,115,116,101,109,46,64,
+174,64,167,224,192,5,2,67,111,100,128,189,162,116,65,105,165,6,0,83,
+125,196,97,184,137,11,126,167,65,165,64,33,224,70,1,130,7,0,34,96,
+27,188,178,4,50,55,48,32,95,90,183,2,58,50,55,230,111,0,68,207,
+192,80,2,64,95,50,95,229,3,67,32,95,50,95,217,129,101,0,58,64,
+54,128,125,2,95,50,53,65,205,132,249,64,33,0,58,96,47,102,97,161,
+169,66,17,95,183,103,140,71,190,1,95,49,95,66,64,41,130,60,6,94,
+112,117,116,98,32,58,96,27,96,148,5,54,52,32,79,32,95,65,56,0,
+79,64,13,0,53,227,105,0,191,254,234,136,1,96,28,167,186,210,67,74,
+185,132,147,125,198,128,10,229,163,6,95,126,228,144,3,224,242,4,143,118,
+2,95,50,53,66,179,134,39,64,13,74,32,96,184,237,169,7,11,66,97,
+100,32,72,97,110,100,108,101,32,109,193,165,129,57,123,39,96,166,129,173,
+98,22,233,225,4,221,226,160,121,98,54,1,50,54,117,175,70,137,0,50,
+68,71,230,71,2,128,76,129,216,2,95,57,51,65,52,129,201,3,102,112,
+50,112,64,13,129,196,2,95,54,56,112,57,247,5,13,117,190,228,128,0,
+163,233,224,6,12,224,42,2,64,15,164,29,224,42,29,160,28,224,49,10,
+224,42,15,224,49,10,224,42,22,224,49,3,68,112,68,151,194,91,194,161,
+130,133,73,159,65,146,91,196,0,58,65,203,129,142,0,95,70,195,82,12,
+0,58,98,18,160,48,178,255,210,3,73,30,103,204,66,56,162,55,236,102,
+1,96,8,117,162,132,51,98,116,0,58,67,22,128,78,0,85,131,61,118,
+111,96,62,0,58,66,88,64,27,231,201,1,167,191,0,58,96,37,101,14,
+162,18,0,95,70,54,226,187,4,224,179,2,99,80,71,9,232,102,1,1,
+50,53,98,114,2,58,50,53,230,101,0,226,171,5,2,104,101,97,144,53,
+0,75,96,243,130,73,183,207,166,190,128,255,235,220,2,161,1,237,169,0,
+128,8,147,250,66,79,96,39,224,5,0,171,11,0,50,190,57,244,68,0,
+114,193,225,85,0,98,247,104,127,96,40,1,95,50,94,246,192,45,64,42,
+128,6,224,38,0,224,87,6,160,47,192,159,135,94,3,67,39,32,79,96,
+33,0,57,164,48,128,30,152,248,0,50,75,11,0,50,93,255,2,64,95,
+50,132,90,0,35,64,52,96,40,64,4,163,245,202,43,236,74,0,65,250,
+68,101,225,67,1,1,45,79,168,72,96,71,166,60,162,11,160,64,224,52,
+10,9,45,115,116,114,105,112,45,101,111,108,164,32,224,188,131,229,38,5,
+224,192,19,196,221,225,169,255,225,169,105,193,171,168,113,239,23,12,6,45,
+45,104,97,115,104,101,169,52,227,134,255,227,134,255,225,169,255,227,134,54,
+74,200,136,128,224,6,3,234,86,3,244,8,2,167,43,116,13,225,180,1,
+231,100,1,193,250,244,46,0,96,148,167,88,104,249,244,50,0,64,167,225,
+65,0,244,98,0,160,210,128,52,145,206,192,35,105,246,96,99,173,63,128,
+36,224,117,1,148,205,114,137,105,34,128,104,160,203,245,81,8,224,10,0,
+160,137,160,22,64,0,240,138,2,128,156,96,222,96,64,65,89,224,195,10,
+224,39,1,224,177,3,128,1,0,90,225,78,5,64,177,168,123,224,172,14,
+241,190,7,192,78,129,135,225,81,11,98,35,229,66,13,0,111,195,99,2,
+66,32,82,149,26,192,91,224,254,4,128,10,79,27,192,0,229,107,0,225,
+203,9,221,73,194,15,226,3,0,160,7,225,242,23,96,35,246,82,23,0,
+49,206,188,227,95,2,224,178,4,192,12,96,180,3,95,50,52,50,250,135,
+4,225,187,34,128,196,226,114,0,154,30,225,192,2,245,235,25,3,97,110,
+115,105,230,164,0,225,3,3,192,78,224,72,31,9,116,114,97,100,105,116,
+105,111,110,97,196,46,160,255,162,40,224,61,21,1,115,116,139,21,160,0,
+109,135,96,53,79,251,147,38,112,101,204,107,224,34,20,140,185,128,128,226,
+123,46,0,120,226,123,4,229,48,2,224,77,44,4,105,110,99,108,117,238,
+152,1,226,207,8,100,250,232,71,14,160,59,0,61,225,30,4,225,243,0,
+225,161,2,128,144,224,139,24,0,80,232,146,6,225,231,6,163,38,246,215,
+7,133,202,224,70,2,0,67,96,70,224,30,17,128,31,128,237,225,53,46,
+0,65,225,131,11,224,250,51,3,45,104,101,108,231,184,0,224,73,53,83,
+222,2,105,111,110,224,76,60,224,75,7,64,59,64,76,225,48,2,196,158,
+241,82,0,227,87,0,228,22,12,198,102,238,34,1,135,95,225,169,0,135,
+181,231,147,3,195,71,98,141,99,71,192,18,1,53,48,224,18,1,96,123,
+98,179,225,23,30,224,45,67,225,189,4,227,255,6,1,53,49,224,164,0,
+227,255,1,224,78,21,1,110,111,250,230,1,224,0,0,2,95,50,52,79,
+208,144,235,68,106,225,35,2,225,46,3,104,109,224,85,9,2,68,85,73,
+96,80,2,58,50,53,211,224,1,52,54,119,189,90,204,155,144,96,5,96,
+103,128,114,0,58,96,188,224,43,3,178,160,128,46,224,41,1,0,58,97,
+138,224,40,5,130,16,224,35,0,0,58,97,192,224,34,3,0,75,224,119,
+5,97,48,229,30,0,0,58,101,55,241,165,0,252,55,8,0,58,96,43,
+113,41,0,58,64,80,128,10,0,73,80,185,65,9,180,128,133,212,85,119,
+0,58,69,229,128,22,176,203,66,135,91,210,165,181,192,18,1,66,39,96,
+21,225,168,1,241,205,7,101,26,64,156,224,168,0,0,51,177,41,194,208,
+3,32,95,55,55,214,122,145,139,247,246,0,65,107,103,85,99,32,3,53,
+52,32,95,89,118,1,64,35,214,82,128,192,249,244,2,92,76,0,58,106,
+94,96,17,0,65,96,31,129,107,96,31,65,242,0,58,99,50,242,53,0,
+98,5,0,58,107,212,96,19,242,69,0,0,58,107,239,248,96,2,128,230,
+0,58,108,12,180,26,1,95,50,94,117,179,47,99,144,0,58,96,6,1,
+10,65,93,217,4,117,97,108,32,58,96,33,161,96,87,33,193,96,83,63,
+192,22,0,49,96,16,220,218,157,6,99,1,186,108,64,32,98,11,90,108,
+101,206,224,139,0,128,220,0,82,160,162,0,58,96,28,243,124,2,129,135,
+220,32,64,158,91,41,243,24,52,94,5,96,72,225,29,0,243,24,5,2,
+116,97,105,136,56,97,125,64,45,128,213,0,52,85,246,0,50,74,96,1,
+95,50,160,171,129,41,2,73,32,58,96,16,248,253,2,0,50,68,5,0,
+50,118,50,184,253,128,56,152,253,192,11,87,47,96,11,0,58,96,6,216,
+253,2,95,49,53,64,202,160,61,0,52,224,155,3,6,101,114,114,111,114,
+58,32,96,158,184,131,96,38,0,58,96,6,248,83,20,8,67,111,110,116,
+114,111,108,46,69,64,66,64,64,224,26,1,96,18,2,67,97,108,128,246,
+162,60,64,194,127,166,163,15,67,222,192,7,230,97,1,173,61,68,100,131,
+43,65,109,0,50,91,135,131,231,171,130,98,8,1,95,50,203,142,120,156,
+64,99,194,218,215,196,64,32,251,64,24,160,69,0,58,98,92,96,162,0,
+85,225,195,7,16,109,100,53,67,111,109,98,105,110,101,58,32,101,109,112,
+116,121,133,93,64,145,66,75,67,35,192,171,175,12,120,158,64,93,95,173,
+0,49,64,89,1,64,89,96,128,64,152,102,230,66,142,237,3,1,194,146,
+224,142,0,164,84,161,0,103,1,199,29,2,95,50,49,66,115,65,40,1,
+54,48,164,3,0,95,94,78,1,95,50,154,171,128,0,0,58,97,55,89,
+6,9,109,100,53,65,114,114,97,121,32,58,96,57,130,127,226,240,0,0,
+57,66,34,64,161,1,95,50,139,223,100,139,248,181,1,248,73,4,2,95,
+50,49,77,24,224,46,2,169,239,192,46,2,95,49,48,163,40,227,36,0,
+2,95,50,49,170,219,0,58,96,201,162,227,64,20,121,206,64,211,172,18,
+228,255,10,162,19,130,29,133,73,225,59,1,192,25,232,153,5,4,67,32,
+95,54,54,160,67,2,95,50,48,64,10,100,35,2,57,53,32,128,82,64,
+0,225,123,1,239,41,7,249,55,2,64,187,153,168,224,45,1,96,96,172,
+187,229,131,7,226,161,0,99,80,249,93,1,224,43,10,194,137,224,38,0,
+160,16,0,58,65,97,130,198,255,182,2,206,253,0,58,96,143,99,218,67,
+147,1,50,48,64,216,194,5,129,255,0,35,127,151,94,93,0,58,97,161,
+5,10,65,32,35,49,54,65,112,167,101,1,49,50,66,147,0,57,104,10,
+0,48,102,227,0,57,96,126,0,57,68,145,64,80,65,52,192,92,64,11,
+65,14,192,11,67,119,128,11,65,78,1,64,58,96,12,155,222,97,30,154,
+20,137,230,238,176,6,225,113,3,65,180,242,88,0,65,247,103,23,0,48,
+96,7,2,50,48,50,64,7,102,175,128,15,64,164,1,50,48,162,68,96,
+17,0,53,128,33,131,77,224,33,7,241,207,0,94,128,224,38,16,224,71,
+25,88,138,1,73,32,240,123,0,192,86,224,196,0,67,180,0,83,162,133,
+96,192,89,28,224,78,16,128,22,99,182,66,147,224,40,16,130,167,199,211,
+97,42,2,66,32,95,65,162,224,169,19,129,45,97,162,103,9,0,48,199,
+192,3,75,32,75,52,226,64,0,0,58,96,29,224,23,1,96,51,0,58,
+96,142,224,20,1,165,177,65,27,232,2,0,226,135,7,64,31,131,191,96,
+146,0,58,96,143,224,45,20,130,182,226,17,0,113,147,98,196,2,64,95,
+49,90,183,0,58,66,103,196,16,131,213,4,95,49,57,56,32,135,55,68,
+84,224,27,10,64,122,66,183,227,47,0,224,190,0,96,30,130,237,0,50,
+69,247,99,31,100,17,65,168,0,57,84,192,98,192,64,41,129,18,67,163,
+71,55,225,127,1,0,58,96,39,102,18,128,117,108,118,129,236,201,171,200,
+25,98,221,157,16,128,34,1,64,95,94,175,132,79,0,50,80,35,1,57,
+48,230,81,2,29,92,51,52,38,46,47,108,105,98,47,68,97,116,97,47,
+73,110,116,101,103,101,114,95,84,121,112,101,46,104,115,64,29,4,44,50,
+56,58,49,171,197,128,69,0,57,99,182,100,52,0,85,129,235,224,18,1,
+0,79,100,217,224,5,0,0,50,235,206,0,224,60,5,114,207,96,60,0,
+89,160,210,67,177,69,47,0,57,192,199,96,218,132,197,65,17,100,26,0,
+56,103,128,228,245,0,98,123,128,19,228,199,1,3,64,95,54,51,133,94,
+0,58,97,88,7,10,65,32,114,101,109,32,58,96,65,95,91,64,10,130,
+36,0,65,64,10,130,15,0,80,64,10,129,247,169,19,1,49,56,100,191,
+0,49,65,176,0,58,65,52,64,27,2,73,32,58,96,16,233,19,1,0,
+49,64,177,2,95,49,55,141,25,73,19,224,56,0,0,54,224,11,2,73,
+172,96,11,0,58,96,6,166,250,74,64,196,96,2,95,49,56,130,6,64,
+208,221,88,129,51,0,56,67,93,102,112,0,80,227,124,1,160,47,224,15,
+8,64,65,130,45,235,52,3,96,28,98,184,181,45,174,216,0,55,64,147,
+106,102,83,43,224,73,0,64,205,224,21,2,160,159,97,151,1,95,49,68,
+205,99,251,96,212,137,206,0,56,105,239,96,169,97,27,0,55,65,40,129,
+101,0,90,64,200,0,58,96,40,161,126,64,64,193,76,201,42,76,51,96,
+109,171,194,97,228,173,168,0,90,166,233,224,14,1,192,189,237,105,0,171,
+236,128,207,0,58,96,6,204,11,160,42,66,250,67,37,224,42,1,64,60,
+0,58,96,6,192,42,64,177,2,95,49,55,70,79,96,43,6,10,65,32,
+47,61,32,58,96,17,132,52,64,38,101,11,97,68,0,64,204,131,0,75,
+65,247,237,109,5,237,130,5,212,104,136,56,205,130,237,132,1,134,116,132,
+20,64,9,96,176,160,77,96,175,192,17,0,58,96,6,228,130,4,228,140,
+3,128,59,169,1,108,139,96,60,100,128,1,55,49,64,202,226,239,1,0,
+55,172,190,75,156,142,198,3,95,49,52,54,228,28,2,11,110,111,32,109,
+97,116,99,104,32,97,116,32,132,1,96,32,139,164,79,156,162,245,75,176,
+128,11,0,58,96,6,235,176,29,3,120,99,101,112,84,207,0,46,68,116,
+0,114,180,214,224,39,1,2,80,97,116,64,22,0,77,64,128,0,70,204,
+187,162,204,67,115,129,2,0,83,199,184,1,95,49,76,182,234,171,1,0,
+49,109,169,224,15,3,68,120,0,51,112,173,161,89,138,231,77,103,244,31,
+7,80,137,0,54,228,186,2,75,216,98,160,65,253,97,50,1,54,54,130,
+177,64,45,98,191,0,58,64,18,226,202,2,89,99,225,92,1,86,210,242,
+74,3,78,234,65,217,68,34,2,52,52,32,128,15,99,113,103,144,129,102,
+121,170,0,51,210,63,224,39,2,161,135,225,43,1,6,39,92,57,50,38,
+39,39,165,165,161,156,96,230,224,99,3,96,246,139,253,224,17,3,140,242,
+234,180,3,224,168,1,0,64,160,35,134,78,64,156,164,146,98,6,128,158,
+130,163,96,101,224,147,3,64,146,70,63,160,148,64,0,0,58,96,147,226,
+187,0,75,61,227,23,3,136,198,166,182,1,95,49,81,140,160,108,4,53,
+32,79,32,35,69,169,129,145,171,234,97,186,165,70,2,95,49,53,138,12,
+0,54,135,4,0,32,77,17,131,1,0,90,65,11,234,234,3,224,163,5,
+224,160,0,0,67,91,110,128,96,138,25,139,138,121,148,225,22,7,96,0,
+4,79,32,80,32,35,242,158,4,64,79,0,97,96,79,96,27,0,56,224,
+27,7,0,98,224,27,1,75,62,224,28,5,0,102,224,28,2,0,48,224,
+28,7,147,195,128,28,0,51,224,28,7,110,247,128,28,0,57,224,27,7,
+0,116,224,56,2,0,49,224,28,7,0,118,224,56,2,224,143,8,64,3,
+227,116,1,225,193,0,132,77,69,198,65,76,165,21,159,98,1,49,52,89,
+128,102,81,64,18,71,202,0,53,133,100,65,127,99,13,1,53,53,64,56,
+204,0,240,21,0,193,189,0,53,96,70,100,79,96,17,0,58,96,6,104,
+249,136,30,205,78,209,5,0,49,64,96,75,95,140,210,128,19,250,186,2,
+160,127,64,87,137,63,226,230,3,1,53,50,205,156,192,64,97,121,226,96,
+9,64,69,105,150,236,141,0,160,40,226,52,3,224,10,1,96,50,0,51,
+160,58,173,109,96,250,129,28,128,123,81,49,224,74,4,0,58,96,102,237,
+112,16,106,156,7,10,65,32,111,114,100,32,58,64,76,160,42,224,41,11,
+131,101,2,99,104,114,64,41,237,197,0,75,126,235,128,0,64,252,64,23,
+149,55,128,234,65,122,138,111,181,49,225,218,6,83,10,225,218,1,0,49,
+114,113,0,58,99,167,3,10,65,32,60,71,40,181,29,198,248,0,58,96,
+60,162,46,180,234,96,106,0,58,100,64,132,9,0,89,153,171,0,80,128,
+6,206,183,0,58,96,145,96,47,1,49,57,64,47,168,89,135,209,118,141,
+84,97,0,58,99,143,199,167,180,115,0,61,96,11,212,109,107,155,180,109,
+100,94,98,119,100,22,83,236,132,65,102,4,133,93,96,15,130,135,130,130,
+180,151,96,23,107,175,84,128,0,58,96,35,171,174,69,36,66,145,0,58,
+96,26,96,43,200,33,194,143,74,92,189,74,138,253,200,1,224,32,4,255,
+229,1,197,20,244,45,1,97,34,224,65,4,224,64,5,65,33,98,135,104,
+94,129,228,181,19,172,19,224,169,2,140,177,181,19,242,168,0,96,30,161,
+52,117,179,97,33,180,183,182,180,0,58,97,61,160,36,160,53,235,56,0,
+242,122,0,110,93,151,228,65,74,66,236,81,114,1,95,49,85,8,96,51,
+129,144,82,19,7,83,116,114,105,110,103,32,58,96,27,170,163,75,132,96,
+46,67,191,138,176,64,222,160,26,141,30,113,224,0,95,106,244,0,58,96,
+102,128,233,160,56,0,54,74,184,1,90,32,224,31,0,129,152,4,110,101,
+119,67,65,128,112,2,76,101,110,64,115,129,33,224,224,4,181,0,76,30,
+181,0,129,148,2,115,101,113,103,40,86,68,128,43,64,44,129,33,73,80,
+180,172,193,150,128,1,114,22,225,173,3,224,20,3,224,17,8,224,14,5,
+224,11,2,192,8,110,175,128,209,226,224,1,238,233,11,110,210,5,10,65,
+32,79,32,58,99,82,99,74,0,48,72,140,1,95,49,111,174,224,8,0,
+1,95,49,82,154,148,28,1,95,49,81,89,192,11,243,99,0,64,11,72,
+83,192,11,99,6,83,214,0,58,96,18,65,200,4,112,111,107,101,87,132,
+156,211,239,3,112,101,101,107,192,18,194,136,107,24,1,95,49,115,137,1,
+95,49,71,5,0,58,64,90,160,201,111,56,144,12,96,34,224,50,3,177,
+237,160,50,226,151,1,1,95,49,101,64,72,131,0,50,96,150,132,194,178,
+159,4,116,111,73,110,116,64,128,129,45,3,116,111,80,116,69,21,178,131,
+239,171,6,178,67,175,100,139,86,79,66,64,102,67,204,65,30,66,144,131,
+144,0,95,105,97,0,95,78,26,170,30,240,236,14,96,52,130,69,99,156,
+1,95,49,145,239,70,208,98,213,0,32,96,68,0,95,132,2,0,58,65,
+142,160,70,229,178,5,177,9,110,248,115,88,72,97,0,58,97,196,5,10,
+65,32,113,117,111,64,232,177,0,226,89,1,226,93,2,226,132,73,177,78,
+97,40,164,177,0,95,244,182,1,0,95,80,252,163,190,224,21,1,163,196,
+71,75,162,126,140,70,244,166,1,0,58,86,174,128,197,0,95,81,85,0,
+95,71,191,0,58,96,39,66,87,5,102,114,101,101,32,58,177,110,135,207,
+224,94,6,86,76,150,139,212,5,246,73,3,146,204,0,95,81,111,224,118,
+3,0,58,177,170,237,79,1,64,167,133,128,96,249,219,107,181,39,108,112,
+64,0,224,253,3,193,227,225,69,1,224,119,2,1,64,95,81,200,128,162,
+133,144,0,57,251,60,8,102,71,178,10,3,85,32,75,51,227,216,5,0,
+58,178,9,75,198,0,83,107,49,143,30,214,145,2,83,32,95,134,28,64,
+190,224,95,11,128,94,243,82,9,232,61,0,177,38,68,226,0,58,177,39,
+96,197,105,143,130,179,215,236,226,184,7,177,75,248,180,6,8,117,110,100,
+101,102,105,110,101,100,74,76,0,58,177,100,243,159,15,177,103,2,95,54,
+49,163,206,74,111,99,37,0,95,77,81,234,6,12,77,157,234,2,2,71,
+121,64,1,1,95,56,201,222,96,37,233,227,2,64,37,96,19,96,10,0,
+95,81,144,0,58,177,213,0,85,198,125,64,114,75,51,128,130,64,45,161,
+65,0,80,96,12,97,123,244,65,1,132,14,96,175,65,112,186,39,218,85,
+132,192,108,123,192,91,210,202,224,55,10,193,10,178,39,83,18,131,236,129,
+5,192,13,124,180,225,105,5,179,189,14,58,32,117,110,115,117,112,112,111,
+114,116,101,100,32,119,69,128,2,115,105,122,159,137,3,35,51,50,55,78,
+196,9,64,35,50,49,52,55,52,56,51,54,73,161,0,58,178,115,243,140,
+2,235,37,0,81,19,244,89,1,66,218,211,127,81,236,129,20,65,146,0,
+50,225,33,0,129,143,184,227,98,111,178,144,4,105,110,118,32,58,178,136,
+0,115,74,156,178,46,73,175,178,44,230,205,15,0,56,232,115,0,131,16,
+165,18,178,73,4,95,54,55,32,95,80,206,0,95,80,222,0,95,113,46,
+81,38,0,95,81,184,117,27,1,95,55,81,222,98,7,0,55,65,65,64,
+9,0,58,178,124,132,30,99,48,132,43,96,37,1,55,32,239,246,0,178,
+150,224,29,1,224,49,1,224,39,5,229,254,0,227,181,7,178,100,3,62,
+61,32,58,178,87,2,62,32,58,178,85,75,56,177,211,2,60,32,58,177,
+173,5,105,99,109,112,32,58,177,172,106,244,116,103,81,93,0,58,177,183,
+74,241,177,109,65,64,177,19,2,80,32,58,176,164,196,127,164,188,193,74,
+224,20,11,224,17,8,224,14,5,224,11,2,192,8,230,1,0,241,0,0,
+236,179,11,177,18,4,110,101,103,32,58,177,16,2,42,32,58,176,4,2,
+45,32,58,174,76,2,43,32,58,174,75,224,156,68,0,58,174,117,224,155,
+2,193,143,174,129,170,45,68,221,66,50,77,97,96,12,166,113,1,64,58,
+174,125,116,207,174,67,2,73,32,58,173,167,64,41,66,100,77,139,0,58,
+173,157,64,29,252,90,0,173,135,8,94,109,97,108,108,111,99,32,58,173,
+138,224,166,2,0,58,173,133,2,85,32,58,173,114,224,206,14,0,58,173,
+101,64,19,0,95,116,83,0,95,99,184,237,112,0,67,54,136,197,173,114,
+6,114,97,105,115,101,32,58,173,117,7,65,46,114,101,97,100,32,58,173,
+118,13,73,79,46,103,101,116,65,114,103,82,101,102,32,58,205,105,3,51,
+52,32,95,77,78,0,95,77,59,228,86,1,4,115,116,100,101,114,112,99,
+0,58,173,133,2,73,79,46,128,20,1,32,58,173,126,128,59,70,11,224,
+59,8,1,111,117,112,131,0,58,173,156,131,223,160,170,128,243,128,78,4,
+111,117,116,32,58,173,167,4,95,51,56,32,58,173,119,2,73,32,58,173,
+106,96,100,109,170,76,215,224,100,4,0,105,113,32,0,58,173,126,225,236,
+2,0,58,173,2,128,99,3,105,110,32,58,172,244,129,104,140,177,208,58,
+165,251,254,101,1,110,241,162,98,232,160,3,97,152,0,95,110,62,64,98,
+129,21,225,215,3,173,55,204,142,1,51,48,102,74,194,92,143,101,173,71,
+64,223,129,7,1,65,46,162,40,173,28,77,74,0,58,173,20,13,73,79,
+46,112,101,114,102,111,114,109,73,79,32,58,172,237,94,190,128,241,118,128,
+232,152,4,0,58,172,217,64,35,202,55,71,154,65,162,64,35,98,240,90,
+210,225,210,0,3,62,62,32,58,172,205,0,95,64,78,65,205,143,23,233,
+169,0,93,117,119,240,113,9,128,9,160,85,1,64,58,172,254,188,158,112,
+58,175,94,112,255,112,45,172,180,128,35,96,32,117,187,192,32,0,95,99,
+117,172,185,0,95,88,68,233,228,0,224,47,4,96,150,108,132,145,223,225,
+14,0,172,122,232,94,1,195,241,172,128,120,203,0,58,236,112,3,230,77,
+2,172,113,235,166,1,0,49,172,5,192,12,96,212,98,18,0,58,255,28,
+3,143,42,239,21,1,194,122,172,115,1,95,51,98,24,110,192,130,0,74,
+8,129,96,74,213,96,36,181,251,0,95,114,206,73,162,96,21,2,75,32,
+58,230,83,0,69,249,96,11,2,66,32,58,226,211,0,7,114,101,116,117,
+114,110,32,58,164,115,65,196,2,61,32,58,128,199,2,80,32,58,236,11,
+7,229,65,37,0,58,229,148,3,228,146,9,229,93,2,64,239,0,58,64,
+200,1,95,55,208,199,224,0,255,224,0,255,224,0,250,1,32,125,
+};
+unsigned char *combexpr = data;
+int combexprlen = 32938;
 #include "mhsffi.h"
 static struct ffi_entry table[] = {
 { 0,0 }
diff --git a/generated/mhs.c b/generated/mhs.c
--- a/generated/mhs.c
+++ b/generated/mhs.c
@@ -1,4818 +1,5001 @@
 static unsigned char data[] = {
-122,76,90,49,200,119,1,0,26,118,55,46,48,10,49,57,54,54,10,65,
-32,95,48,32,95,50,51,32,64,95,50,48,52,32,64,66,224,15,2,6,
-49,51,32,64,64,66,32,224,18,4,16,50,32,64,64,64,83,39,32,66,
-32,64,66,39,32,67,32,83,64,50,6,83,32,67,39,32,83,39,128,10,
-9,64,95,49,49,49,32,95,50,49,53,64,10,28,53,52,32,95,49,53,
-54,32,64,102,114,111,109,85,84,70,56,32,34,45,45,118,101,114,115,105,
-111,110,34,64,75,15,64,64,67,39,66,32,85,32,95,50,54,32,95,50,
-52,56,64,52,1,51,54,64,52,224,57,9,8,77,105,99,114,111,72,115,
-44,32,160,64,0,32,96,65,128,47,0,50,64,42,224,58,17,16,44,32,
-99,111,109,98,105,110,97,116,111,114,32,102,105,108,101,224,67,6,2,50,
-53,55,128,141,3,64,90,32,75,128,9,2,83,39,32,64,154,2,64,67,
-32,224,209,25,6,110,117,109,101,114,105,99,224,217,6,2,66,32,80,128,
-211,128,157,224,91,2,129,87,65,46,64,101,2,32,64,67,64,107,65,60,
-96,23,0,83,64,48,0,56,64,41,129,87,224,23,4,0,57,224,23,13,
-1,54,48,128,23,2,66,32,66,65,157,65,78,65,204,9,50,54,51,32,
-64,85,32,75,32,65,160,120,0,66,64,56,2,95,55,55,129,209,64,228,
-224,42,0,1,49,57,64,4,1,32,64,64,241,5,50,54,53,32,64,35,
-64,12,128,69,161,155,64,12,225,99,16,6,102,108,97,103,115,32,61,129,
-81,8,64,95,49,50,51,32,95,50,55,96,151,64,154,66,45,0,39,65,
-65,1,56,50,64,73,128,242,0,80,96,9,64,85,14,57,51,49,32,64,
-95,52,48,53,32,95,52,48,54,32,224,86,1,11,99,111,109,109,97,110,
-100,45,108,105,110,101,64,90,2,35,48,32,96,3,9,64,64,64,75,50,
-32,95,50,48,50,96,61,98,153,160,105,64,15,97,39,96,101,64,115,2,
-57,52,52,160,149,7,57,52,53,32,64,64,85,32,193,139,65,28,193,149,
-128,45,128,153,3,95,49,57,54,64,83,162,236,4,32,95,51,54,56,64,
-20,0,53,64,166,1,49,54,64,94,64,34,65,68,129,186,128,60,98,53,
-65,36,128,32,226,56,0,64,149,1,51,51,64,175,96,13,6,79,32,35,
-52,54,32,64,128,120,1,95,49,64,84,64,64,0,79,96,171,3,54,52,
-32,35,64,87,224,29,4,96,0,2,58,49,57,65,152,1,10,65,129,76,
-129,79,64,99,1,53,50,96,9,2,53,32,95,65,112,4,95,49,56,51,
-32,161,35,162,11,64,148,129,231,96,95,130,213,0,52,128,46,161,232,7,
-95,54,32,95,52,50,57,32,96,8,3,54,52,50,32,96,22,64,12,3,
-53,53,48,32,192,191,1,49,51,65,73,1,35,52,99,47,128,47,128,0,
-1,73,32,96,158,0,52,160,158,224,1,17,1,83,32,66,3,0,54,96,
-160,2,95,49,51,130,86,1,79,32,225,18,3,129,10,64,163,0,51,226,
-98,4,3,47,108,105,98,98,94,129,26,224,24,1,3,111,117,116,46,67,
-225,196,17,64,84,224,6,21,97,84,224,6,0,160,20,97,13,224,6,0,
-224,27,3,224,106,1,6,100,101,102,97,117,108,116,64,105,64,239,0,51,
-96,239,2,66,32,89,97,251,98,42,0,83,194,215,66,10,4,67,32,64,
-64,80,100,56,97,100,130,31,131,245,228,5,0,225,201,3,228,102,19,164,
-87,224,69,53,0,118,224,69,60,0,113,224,69,60,0,114,224,69,60,0,
-108,224,69,60,1,67,82,224,70,61,0,87,224,70,61,224,69,60,0,84,
-224,69,60,3,88,67,80,80,224,72,60,0,122,224,69,60,0,81,224,69,
-3,195,112,231,11,0,128,68,64,14,64,30,128,33,192,25,64,10,192,108,
-224,10,1,128,136,232,188,3,100,227,0,35,102,40,64,0,160,38,128,51,
-224,172,1,232,29,4,128,50,1,49,48,192,51,163,252,64,34,160,49,68,
-18,165,127,0,50,96,55,166,80,68,244,230,80,0,165,234,232,40,2,224,
-197,84,192,162,224,197,15,128,49,64,7,231,17,8,224,190,10,104,125,165,
-179,2,95,51,53,103,26,69,199,224,203,1,225,148,109,0,49,199,63,193,
-148,64,40,97,142,96,55,0,82,224,224,7,224,218,0,0,55,224,218,0,
-225,146,120,224,195,0,128,49,224,177,27,224,170,112,106,235,224,170,24,107,
-234,224,170,9,224,176,1,192,102,160,168,224,13,0,224,171,24,224,41,1,
-160,57,224,16,0,2,66,32,90,224,16,5,169,241,224,192,4,0,54,107,
-122,128,37,226,246,17,73,39,226,246,10,0,52,107,160,226,246,8,224,219,
-127,0,55,67,148,160,37,224,219,69,226,98,99,0,56,204,84,128,48,224,
-204,6,108,79,203,173,106,99,165,92,0,55,235,71,0,228,134,107,0,57,
-206,97,230,26,33,236,107,4,230,26,124,224,196,0,128,48,225,121,6,226,
-70,5,224,189,2,64,43,2,95,49,48,99,255,1,52,54,192,67,64,0,
-192,102,128,114,225,18,1,224,190,5,0,67,224,190,62,0,55,228,154,20,
-226,56,4,0,50,226,56,14,227,87,13,160,139,207,43,96,233,239,43,19,
-7,85,110,107,110,111,119,110,32,79,51,1,58,32,136,208,204,238,224,53,
-7,4,79,32,35,49,48,163,114,238,233,5,224,0,2,193,229,65,3,97,
-63,129,243,111,223,0,50,64,203,1,52,51,192,172,224,144,12,1,46,99,
-128,132,224,48,33,0,111,128,48,224,39,24,0,97,233,174,0,164,77,175,
-240,64,234,228,75,4,226,74,19,82,125,228,145,10,1,49,56,100,208,228,
-146,6,227,73,11,96,158,161,206,198,160,224,39,11,106,117,224,39,26,233,
-180,3,224,39,19,231,144,1,224,39,11,0,39,224,40,1,231,14,1,224,
-61,2,229,136,1,160,61,224,108,21,224,46,8,224,39,14,224,107,1,224,
-39,19,1,56,50,224,188,21,224,79,0,82,123,224,39,28,228,206,2,1,
-54,50,208,170,240,180,5,227,105,1,224,64,0,0,83,224,64,11,65,58,
-0,55,160,57,2,64,95,50,80,118,224,59,0,195,220,137,226,79,164,0,
-50,111,164,6,95,51,54,57,32,75,32,81,241,132,36,224,1,17,108,150,
-224,0,4,224,47,38,224,44,35,224,41,32,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,192,8,96,5,69,35,0,56,82,207,224,0,11,65,233,0,49,225,
-233,5,0,90,224,145,4,224,1,11,225,233,255,224,29,11,224,26,17,224,
-23,14,224,20,11,224,17,8,224,14,5,224,11,2,192,8,96,5,225,231,
-17,65,230,0,48,225,230,5,224,119,3,171,5,225,198,22,225,248,255,224,
-29,13,224,26,17,224,23,14,225,173,11,0,58,134,145,225,167,13,236,171,
-6,224,1,15,225,164,255,224,29,11,224,26,17,224,23,14,224,20,11,227,
-102,12,65,185,0,56,227,97,17,227,99,1,225,191,255,224,32,15,224,29,
-20,224,26,17,225,148,10,65,146,0,55,225,146,19,225,148,2,225,149,255,
-224,32,15,224,29,20,225,123,9,65,122,0,54,225,122,21,128,1,225,128,
-1,225,131,214,225,35,6,65,32,156,149,225,32,22,192,1,225,40,4,64,
-0,224,46,21,225,44,11,224,130,2,64,126,156,117,224,126,20,224,116,3,
-224,31,11,224,1,3,227,32,214,226,227,7,65,65,0,51,225,192,31,225,
-188,6,224,40,17,128,1,225,74,100,224,216,4,64,213,237,248,6,224,75,
-19,226,148,7,224,43,19,64,1,224,216,56,224,172,3,64,171,236,186,6,
-224,71,15,224,167,5,224,37,15,192,1,226,201,141,226,128,5,64,252,235,
-208,18,128,1,224,246,2,224,28,9,224,1,5,227,189,214,224,32,23,230,
-193,8,0,58,151,210,229,159,33,229,161,10,224,85,2,64,78,234,29,12,
-96,52,224,87,21,225,156,248,224,29,20,224,26,17,224,23,14,224,20,11,
-224,17,8,224,14,5,239,87,14,65,212,234,95,10,65,210,224,100,3,224,
-1,11,225,209,255,224,29,11,224,26,17,224,23,14,224,20,11,224,17,8,
-224,14,5,224,11,2,241,52,15,65,221,0,54,97,221,0,75,119,100,3,
-48,32,95,50,87,56,3,95,51,48,54,152,36,1,55,55,160,18,216,194,
-67,226,248,194,20,3,110,97,109,101,216,186,121,55,119,58,0,55,124,35,
-0,64,224,83,46,6,118,101,114,115,105,111,110,224,86,2,0,50,153,136,
-1,57,51,157,148,224,86,45,13,99,111,109,112,105,108,101,114,58,32,109,
-104,115,45,216,183,157,231,224,81,45,6,100,101,112,101,110,100,115,224,168,
-2,0,52,77,158,118,179,2,53,32,85,122,123,160,63,88,196,90,29,224,
-78,9,1,79,32,122,55,152,184,128,233,96,9,1,49,55,82,223,64,0,
-0,67,89,5,224,158,0,96,151,224,131,1,15,101,120,112,111,115,101,100,
-45,109,111,100,117,108,101,115,58,185,103,153,249,224,211,1,3,64,66,32,
-85,89,206,0,56,87,30,96,149,224,79,14,4,111,116,104,101,114,224,77,
-7,192,60,128,155,2,95,50,49,65,30,64,59,193,38,64,8,225,38,16,
-0,32,161,31,64,36,130,32,1,51,57,221,187,96,0,66,152,140,58,252,
-203,5,224,190,2,161,74,66,215,64,6,1,49,57,64,4,184,1,4,49,
-52,51,32,95,85,243,216,2,128,92,225,198,4,224,157,17,15,66,117,105,
-108,100,105,110,103,32,112,97,99,107,97,103,101,160,172,252,149,2,128,145,
-123,77,227,51,0,96,28,98,147,0,52,88,181,2,51,49,52,192,20,220,
-199,91,131,155,141,156,186,0,66,224,60,0,2,95,52,54,195,158,222,36,
-2,66,32,66,124,220,224,5,4,224,255,3,192,131,225,1,38,225,3,4,
-128,15,225,8,16,3,87,114,105,116,225,7,10,68,84,130,194,227,11,20,
-2,32,116,111,193,230,1,49,56,253,97,0,224,227,0,254,236,1,228,183,
-0,224,221,2,161,223,0,39,96,2,3,32,95,49,55,64,64,224,71,1,
-160,65,150,20,96,8,64,17,65,7,0,67,93,240,124,47,1,52,49,97,
-23,4,52,48,56,32,64,89,219,5,64,64,64,85,32,65,64,6,1,95,
-50,64,169,64,14,224,21,3,3,64,95,54,56,227,236,2,67,176,1,83,
-39,95,131,164,189,228,109,1,64,16,160,207,96,182,225,197,6,192,185,225,
-154,37,225,155,38,6,67,111,109,112,114,101,115,69,22,3,32,116,105,109,
-225,156,0,129,88,225,158,0,64,66,1,50,51,64,116,96,83,126,157,0,
-52,187,30,0,64,225,172,3,1,109,115,253,143,1,98,196,99,217,163,100,
-0,55,68,196,64,86,125,155,1,95,50,64,165,0,51,93,218,70,42,131,
-185,64,50,129,185,97,57,129,118,131,200,143,132,6,66,32,89,32,66,32,
-80,97,114,225,172,1,94,140,96,166,200,81,128,7,64,167,127,44,64,0,
-138,116,70,75,0,57,65,101,0,51,74,180,96,88,142,155,0,83,197,85,
-2,52,53,50,97,250,158,167,0,49,76,59,255,141,4,1,64,35,70,236,
-101,227,0,50,64,66,131,65,0,80,227,206,1,98,142,255,192,12,64,25,
-129,89,67,245,66,79,64,144,0,90,64,13,0,90,158,184,64,218,192,88,
-1,95,50,80,120,160,180,162,74,2,95,49,53,103,130,64,15,1,53,56,
-126,118,1,57,53,65,0,96,235,224,163,7,0,73,64,9,223,209,160,85,
-160,79,98,33,97,27,226,30,19,195,178,71,141,15,32,110,111,116,32,111,
-102,32,116,104,101,32,102,111,114,109,96,20,0,45,199,83,195,162,98,37,
-127,179,79,243,64,0,65,98,143,40,195,160,64,1,232,125,41,192,8,157,
-119,96,86,142,211,128,35,1,95,49,93,196,101,51,0,57,157,170,96,21,
-0,51,126,49,99,61,66,109,0,50,65,28,65,42,0,55,159,179,1,52,
-57,129,29,64,77,142,36,66,96,162,254,132,24,98,95,64,36,229,83,2,
-163,210,227,164,0,4,67,32,95,52,54,94,207,225,86,0,225,67,2,14,
-107,103,80,97,116,104,32,105,115,32,101,109,112,116,121,228,254,0,130,165,
-129,245,96,6,0,79,66,54,0,79,199,178,227,55,0,128,140,96,110,134,
-198,231,128,5,228,40,20,64,19,71,24,223,16,254,197,4,228,38,33,6,
-73,110,115,116,97,108,108,229,197,10,64,124,168,136,229,194,17,1,105,110,
-192,46,96,105,230,115,0,234,40,5,196,117,70,220,224,13,1,229,229,0,
-224,245,4,69,69,64,109,97,221,160,86,225,7,0,128,50,225,34,10,64,
-53,0,55,228,25,0,100,219,233,53,11,0,55,225,130,2,160,134,161,246,
-64,86,232,164,0,225,160,2,161,192,135,202,232,92,26,161,150,0,35,130,
-124,232,80,30,4,99,114,101,97,116,232,70,2,224,109,6,106,29,225,20,
-1,4,95,49,56,52,48,64,231,2,51,51,50,228,21,1,64,253,133,192,
-0,52,136,89,225,193,3,234,67,13,225,13,0,230,16,0,67,86,64,29,
-165,180,1,95,52,163,112,64,10,106,7,99,97,226,19,11,224,79,3,2,
-95,52,56,128,141,103,103,224,87,0,235,231,2,234,211,22,224,143,3,235,
-200,4,64,63,160,232,101,247,161,204,99,152,64,35,97,117,3,58,49,57,
-51,144,182,71,191,0,90,160,1,193,247,64,29,144,133,161,195,194,170,65,
-186,0,57,64,163,1,50,56,101,211,224,30,15,1,52,49,226,1,3,226,
-232,0,0,52,101,151,226,160,8,1,95,50,64,109,2,95,50,57,129,147,
-64,125,143,46,168,135,96,235,224,99,0,66,132,97,92,0,50,166,155,7,
-57,51,51,32,64,35,53,48,101,223,0,75,66,1,168,74,0,55,136,105,
-228,255,0,96,20,162,37,136,133,98,121,102,92,1,51,53,96,235,225,184,
-25,2,64,64,64,71,131,133,2,228,176,1,132,152,197,51,128,13,0,64,
-231,4,4,129,147,129,18,226,118,2,228,243,3,131,76,167,181,0,85,64,
-124,162,90,224,9,1,65,28,0,54,165,170,0,80,192,33,64,191,1,52,
-32,96,27,139,240,101,198,160,136,0,66,64,135,136,7,64,17,224,54,2,
-224,141,0,160,87,136,99,6,94,109,107,100,105,114,32,64,16,136,27,227,
-131,1,4,85,115,97,103,101,109,232,2,32,91,45,198,252,0,93,64,11,
-6,110,117,109,101,114,105,99,224,19,3,0,118,64,4,0,113,64,4,0,
-108,64,4,0,114,64,4,5,67,91,82,124,87,93,64,9,3,88,67,80,
-80,64,7,3,68,100,101,102,64,7,4,73,80,65,84,72,64,8,0,84,
-64,4,0,122,64,4,0,105,192,18,4,111,70,73,76,69,64,8,1,97,
-91,96,18,64,10,0,76,192,28,3,80,80,75,71,64,7,9,81,32,80,
-75,71,32,91,68,73,82,96,31,5,116,84,65,82,71,69,64,76,0,77,
-109,116,8,78,97,109,101,46,46,46,93,34,129,38,135,146,162,137,236,125,
-0,229,154,10,0,57,226,177,1,224,42,4,110,73,0,53,64,44,0,85,
-232,192,4,229,2,5,75,115,142,238,65,214,162,151,67,39,167,198,97,147,
-96,64,96,6,231,254,0,236,211,9,229,135,3,162,104,230,48,1,198,51,
-224,17,4,224,20,0,237,105,3,174,3,173,9,96,81,160,116,231,83,38,
-235,112,45,16,116,111,112,32,108,101,118,101,108,32,100,101,102,110,115,58,
-32,96,0,237,18,1,228,211,2,5,49,55,54,50,32,35,168,190,235,126,
-2,172,111,229,31,11,231,115,2,8,40,117,110,112,114,117,110,101,100,160,
-92,224,89,4,224,76,1,0,95,109,10,67,222,0,49,230,245,4,225,52,
-18,238,68,9,230,231,30,228,131,1,147,254,225,53,3,160,66,132,124,240,
-210,15,224,222,2,0,61,192,214,73,248,67,166,224,187,5,226,3,2,99,
-221,160,203,174,8,75,128,64,54,133,109,194,114,226,184,4,101,100,0,51,
-74,78,142,50,229,81,7,224,54,1,239,127,15,160,111,232,60,5,226,98,
-91,9,102,105,110,97,108,32,112,97,115,115,130,92,226,98,4,163,197,97,
-103,160,71,226,102,0,160,15,237,232,17,224,100,2,237,232,4,235,25,4,
-228,45,3,227,164,1,225,3,1,99,146,161,113,2,32,95,52,108,43,65,
-137,224,203,12,4,46,99,111,109,98,224,105,0,163,211,224,67,40,233,50,
-2,225,177,7,1,53,52,229,221,2,3,109,104,115,99,224,45,10,68,151,
-128,13,225,179,0,233,231,6,64,8,194,24,192,53,225,238,4,231,218,0,
-224,130,10,194,52,192,25,224,27,2,2,50,49,49,224,158,2,4,77,72,
-83,67,67,225,118,1,131,50,226,233,1,96,24,241,20,2,224,20,1,224,
-90,2,229,224,8,65,241,0,56,66,74,66,121,64,10,110,122,142,107,2,
-56,52,50,224,126,2,7,47,105,110,99,108,117,100,101,225,248,2,224,89,
-3,226,207,1,224,90,42,3,99,98,105,116,226,81,3,227,178,7,161,115,
-229,188,5,230,139,1,2,95,49,56,227,122,0,224,146,2,128,1,129,190,
-224,25,9,250,133,0,228,232,2,230,15,2,208,82,224,8,23,227,234,2,
-235,253,38,244,78,10,227,215,19,5,69,120,101,99,117,116,247,21,0,239,
-107,11,227,21,1,247,134,3,1,49,56,163,191,225,164,1,97,167,226,157,
-1,1,52,54,176,36,64,59,164,34,224,200,1,172,247,224,199,10,140,91,
-1,56,55,137,130,1,56,54,144,96,192,209,105,114,224,207,17,13,99,111,
-109,109,97,110,100,32,102,97,105,108,101,100,192,214,192,133,227,31,7,229,
-46,80,1,67,32,151,192,1,97,116,83,4,229,46,91,192,0,129,108,225,
-144,0,226,233,1,171,222,1,56,55,205,185,224,184,12,2,36,73,78,224,
-84,5,224,77,12,224,70,25,2,79,85,84,224,71,3,228,82,3,128,253,
-0,51,173,168,194,92,128,103,161,20,227,86,4,231,176,18,14,45,119,32,
-45,87,97,108,108,32,45,79,51,32,45,73,225,236,3,227,233,3,224,85,
-0,224,84,27,7,47,115,114,99,47,114,117,110,244,185,3,225,87,6,160,
-80,162,16,121,70,196,130,224,85,15,224,156,3,224,135,1,224,47,7,1,
-79,32,115,89,232,118,0,224,114,0,192,193,224,188,35,4,47,101,118,97,
-108,186,58,160,191,224,71,4,224,69,17,1,46,99,192,248,164,110,192,238,
-96,234,65,252,164,139,224,25,8,116,55,128,20,224,159,13,0,42,231,10,
-1,225,199,2,10,36,73,78,32,45,108,109,32,45,111,32,226,57,7,224,
-0,4,64,122,102,242,161,122,97,115,0,51,154,122,64,27,149,17,128,0,
-240,142,4,224,11,0,247,167,0,245,88,1,193,20,3,95,49,56,57,143,
-233,1,57,50,233,144,0,64,12,132,128,215,160,1,49,57,73,193,64,130,
-110,169,0,95,67,186,1,95,52,114,2,118,89,227,159,2,2,97,105,110,
-224,202,2,77,32,148,92,91,108,64,2,142,209,108,181,225,144,1,0,50,
-98,78,224,153,3,228,14,4,226,52,12,84,162,130,52,86,196,75,203,152,
-54,225,98,2,0,125,192,137,64,29,0,85,240,149,2,234,215,2,0,89,
-64,18,224,13,0,243,47,2,179,50,96,49,224,17,4,232,12,0,232,34,
-7,224,48,2,224,51,10,224,57,3,233,129,3,224,29,17,224,65,3,143,
-90,227,205,3,245,250,1,224,45,5,128,41,224,37,8,233,113,3,245,116,
-4,64,53,1,95,55,98,98,142,55,78,82,3,95,49,49,53,133,126,72,
-110,0,32,134,16,2,95,51,49,111,235,136,142,108,125,3,75,32,75,52,
-161,119,224,158,6,70,118,1,55,55,89,167,1,55,56,245,43,3,128,1,
-168,74,224,231,6,225,2,2,192,40,232,82,4,111,70,130,18,224,34,5,
-224,62,0,103,108,96,118,224,33,3,2,95,55,56,212,32,64,1,96,99,
-132,102,65,6,74,248,1,55,50,64,168,0,49,215,215,196,59,217,23,145,
-131,232,151,1,160,97,232,152,2,141,146,160,23,1,95,55,89,100,224,111,
-0,225,10,9,128,23,97,4,192,163,224,167,4,192,158,233,74,7,192,186,
-193,21,163,141,161,170,214,148,102,84,96,210,164,50,128,216,197,186,122,9,
-227,82,12,83,112,131,34,227,126,4,160,0,226,65,0,0,67,97,249,0,
-50,243,233,6,240,139,5,64,97,0,82,99,198,192,210,179,78,193,8,224,
-41,0,193,9,225,4,0,64,149,229,165,15,1,65,32,228,92,1,224,143,
-1,155,9,226,151,1,161,63,96,21,229,201,2,224,240,9,1,53,56,245,
-3,8,224,249,3,228,74,2,4,64,92,49,48,38,192,123,0,67,96,89,
-96,47,2,79,32,35,92,52,239,52,3,163,179,142,251,160,9,131,85,237,
-224,3,1,95,55,99,76,90,89,213,89,96,4,64,30,129,96,67,90,192,
-87,0,80,245,88,0,225,112,1,132,244,192,13,65,66,0,85,64,50,224,
-32,0,3,85,32,75,51,224,48,4,245,159,11,64,124,224,19,8,236,219,
-0,170,33,104,183,123,202,166,248,0,51,92,81,165,254,4,51,56,32,95,
-52,80,244,226,84,11,225,65,1,1,78,111,81,168,2,105,110,105,106,29,
-2,102,111,117,74,176,1,111,114,235,132,0,144,170,96,9,130,117,70,58,
-218,73,134,248,66,209,68,143,1,48,55,115,121,70,163,3,10,65,32,75,
-110,187,0,67,164,0,128,166,92,113,64,53,85,215,96,175,1,51,32,117,
-106,252,238,6,195,214,130,124,197,61,133,29,225,18,3,97,164,97,195,253,
-6,1,128,19,131,85,224,102,32,162,16,164,230,224,116,0,96,184,147,190,
-225,137,6,224,115,4,96,114,192,119,195,206,0,54,120,58,247,250,3,72,
-32,225,137,19,0,35,174,126,3,32,92,51,52,162,210,232,191,10,2,79,
-32,35,74,233,192,137,64,80,119,245,224,80,10,7,109,104,115,102,102,105,
-46,104,128,75,64,41,2,50,56,51,76,82,65,209,225,118,24,174,63,225,
-26,5,224,13,0,100,81,192,36,224,46,2,224,10,6,164,122,225,162,5,
-129,44,129,48,225,54,0,225,41,0,170,188,0,57,120,95,161,47,0,79,
-224,224,13,31,115,116,97,116,105,99,32,115,116,114,117,99,116,32,102,102,
-105,95,101,110,116,114,121,32,116,97,98,108,101,91,93,32,2,61,32,123,
-96,251,97,44,228,73,2,64,96,105,177,73,135,201,179,0,79,233,45,2,
-4,123,32,48,44,48,136,166,224,22,3,1,125,59,224,17,7,224,122,8,
-1,42,120,64,11,96,128,1,32,61,128,136,96,52,227,215,1,185,167,224,
-67,1,23,85,110,105,109,112,108,101,109,101,110,116,101,100,32,70,70,73,
-32,102,101,97,116,117,114,176,135,234,94,0,102,44,3,95,54,57,55,64,
-188,78,18,0,50,78,192,97,204,74,25,122,169,1,49,57,220,48,225,223,
-1,65,124,226,228,1,230,181,3,233,99,1,146,189,97,253,168,129,193,242,
-163,12,167,103,121,168,64,5,185,182,64,95,163,22,227,29,1,198,49,242,
-86,1,227,196,1,64,56,4,61,61,32,64,35,255,170,1,224,42,0,198,
-52,97,169,248,206,1,64,144,64,224,250,241,1,130,52,1,67,39,89,87,
-0,83,100,100,2,83,32,73,128,140,72,243,229,182,2,225,118,0,68,151,
-154,239,147,93,224,245,1,169,108,160,23,96,9,160,246,0,83,224,248,4,
-153,233,97,111,226,140,12,5,100,121,110,97,109,105,204,81,64,85,89,222,
-0,57,111,192,225,27,5,224,87,37,6,119,114,97,112,112,101,114,224,87,
-8,65,31,224,87,1,225,95,1,224,79,23,131,52,236,11,2,97,77,2,
-95,53,56,105,26,191,128,193,248,244,136,1,234,238,1,76,192,244,144,22,
-164,114,163,249,130,124,101,1,112,240,0,49,113,78,96,28,0,85,187,223,
-160,23,176,86,224,132,12,235,147,1,192,146,203,51,225,66,14,69,41,232,
-71,0,224,64,0,194,253,224,93,0,128,66,245,112,3,225,74,6,155,220,
-244,254,0,227,70,7,102,225,225,129,4,0,66,72,38,64,212,97,81,251,
-253,2,226,6,5,225,178,33,3,118,97,108,117,244,149,1,224,104,10,189,
-169,64,105,142,253,226,22,0,224,140,6,224,17,4,240,221,2,129,86,193,
-107,104,235,133,227,226,97,3,64,40,232,106,23,232,107,20,1,98,97,104,
-91,11,101,105,103,110,32,105,109,112,111,114,116,32,168,101,243,234,11,67,
-178,158,36,110,66,64,14,0,54,160,14,0,75,128,14,157,9,96,162,64,
-14,156,220,129,196,212,253,224,13,11,231,228,1,0,32,73,193,192,107,0,
-51,224,107,5,156,63,224,107,0,143,45,229,251,3,5,71,69,84,82,65,
-87,230,17,7,10,71,69,84,84,73,77,69,77,73,76,76,113,102,224,27,
-3,2,97,99,111,115,38,224,19,4,2,100,100,95,92,252,224,23,11,3,
-117,116,102,56,224,23,8,0,115,143,200,224,19,4,1,116,97,224,19,12,
-0,50,224,20,7,4,99,97,108,108,111,99,251,224,21,4,3,108,111,115,
-101,120,132,224,21,4,224,171,9,2,101,120,112,224,18,7,4,102,108,117,
-115,104,224,59,8,3,102,111,112,101,224,145,8,2,102,114,101,98,196,224,
-19,3,2,103,101,116,224,60,8,5,103,101,116,101,110,118,224,21,7,7,
-105,115,119,105,110,100,111,119,224,148,8,2,108,111,103,224,18,7,0,109,
-224,230,12,7,109,100,53,65,114,114,97,121,224,23,10,0,66,225,129,11,
-7,109,100,53,83,116,114,105,110,224,94,9,3,101,109,99,112,224,70,9,
-4,101,109,109,111,118,224,225,8,1,112,117,224,225,9,225,194,10,3,115,
-113,114,116,224,19,8,4,121,115,116,101,109,224,21,7,225,235,10,5,116,
-109,112,110,97,109,224,122,8,1,117,110,225,94,11,5,117,110,108,105,110,
-107,224,166,8,4,101,101,107,80,116,102,101,224,22,4,2,111,107,101,224,
-22,14,3,87,111,114,100,224,69,11,224,23,11,66,204,4,108,122,55,55,
-95,86,137,4,114,101,115,115,111,224,82,8,224,34,0,1,100,101,224,36,
-21,2,114,108,101,224,70,22,64,33,224,69,23,2,98,119,116,224,69,22,
-64,33,224,69,19,64,235,4,95,117,105,110,116,227,162,8,65,29,224,25,
-14,192,51,1,49,54,224,52,16,224,26,10,192,53,0,51,227,208,8,224,
-53,0,224,26,10,192,53,1,54,52,224,53,16,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,3,117,115,104,111,227,92,9,129,3,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,1,108,111,
-228,143,9,128,98,224,25,12,64,51,224,50,16,224,49,16,1,117,108,224,
-102,18,224,103,17,224,104,17,224,51,16,1,102,108,224,255,13,224,23,10,
-5,115,105,122,101,111,102,225,25,11,160,25,224,100,11,192,26,224,27,11,
-70,163,1,100,105,227,215,8,103,13,224,23,10,3,114,101,97,100,224,46,
-11,2,95,100,95,229,124,11,1,99,104,224,44,10,1,109,107,224,20,10,
-4,103,101,116,99,119,229,50,8,6,103,101,116,95,98,117,102,224,180,11,
-3,98,95,114,100,224,27,17,1,119,114,192,27,234,249,0,224,0,74,73,
-18,146,5,143,73,0,53,74,25,114,7,142,171,2,53,32,95,88,97,234,
-217,2,238,156,1,3,95,57,51,55,160,30,0,54,73,246,1,57,49,184,
-234,174,187,0,58,142,235,64,91,1,52,56,235,23,0,2,57,49,55,141,
-182,224,5,5,160,24,1,95,49,96,60,1,95,49,107,167,160,6,224,45,
-25,224,52,3,224,45,18,224,84,3,160,52,224,45,25,224,98,4,1,53,
-57,224,232,1,1,54,48,224,11,0,64,234,142,150,4,115,99,109,112,32,
-64,14,138,242,89,21,81,60,0,90,175,16,140,174,117,185,0,57,118,40,
-141,181,147,122,96,5,96,75,139,32,111,217,74,224,88,48,0,53,180,2,
-237,192,1,192,11,175,100,141,154,64,10,84,136,65,128,172,35,184,63,123,
-81,145,186,64,98,139,116,224,155,9,79,217,77,9,236,0,19,0,123,114,
-219,178,220,0,83,246,1,16,224,48,1,64,46,10,44,32,109,104,115,95,
-97,100,100,114,95,128,56,211,21,224,38,1,1,125,44,128,25,128,174,224,
-129,25,224,128,43,224,123,25,193,154,225,2,26,224,128,77,226,16,4,65,
-171,141,17,155,226,145,123,129,161,0,90,117,77,225,189,1,246,89,0,206,
-4,148,247,96,8,150,113,2,49,56,57,88,31,224,166,16,225,158,2,112,
-214,111,213,0,48,79,56,188,160,243,126,0,114,58,96,29,115,230,0,48,
-64,31,224,17,5,66,176,64,46,238,106,15,0,56,156,244,224,124,1,206,
-83,16,38,32,109,117,115,116,32,98,101,32,80,116,114,47,70,117,110,170,
-186,77,229,224,181,12,2,40,72,115,128,37,0,41,193,66,224,40,4,131,
-13,96,5,224,249,7,0,79,240,92,6,97,252,146,161,210,82,225,51,0,
-162,21,97,1,97,19,160,43,129,26,209,26,1,48,57,242,149,1,243,126,
-1,129,128,129,169,129,69,83,38,160,90,97,56,242,74,0,113,8,0,57,
-120,189,160,103,181,119,126,81,226,99,19,0,59,98,95,64,15,8,95,85,
-110,105,116,40,115,44,32,162,108,249,125,11,2,79,32,35,79,235,224,250,
-0,128,191,249,203,16,0,52,254,15,0,255,163,3,1,50,53,111,235,224,
-139,9,224,122,0,3,32,95,54,49,133,52,134,86,4,50,48,32,95,54,
-79,227,161,54,224,134,6,0,95,127,74,225,133,1,229,28,5,67,12,143,
-223,228,30,21,65,7,1,116,111,194,200,193,199,182,53,0,48,246,145,2,
-226,78,13,225,56,35,64,146,144,99,67,159,133,63,117,25,149,200,102,68,
-0,85,97,191,71,66,0,51,82,132,97,223,128,253,64,61,144,146,255,232,
-6,11,80,114,105,109,105,116,105,118,101,115,46,40,98,213,64,41,135,169,
-99,101,3,55,54,55,32,130,229,102,23,128,123,3,66,32,95,57,83,255,
-166,17,162,141,96,59,64,8,167,229,1,51,53,71,136,0,53,70,11,64,
-24,134,183,227,186,5,65,131,183,220,64,34,134,203,224,161,17,1,73,79,
-160,161,64,56,97,156,0,85,130,229,225,14,2,130,207,148,26,192,31,243,
-197,0,225,56,10,180,68,64,29,0,85,166,221,100,215,199,164,225,77,3,
-128,43,244,144,1,128,139,134,225,146,43,226,42,21,99,50,196,58,96,105,
-67,174,226,48,5,230,144,22,226,51,1,226,110,6,253,232,2,224,63,19,
-227,47,2,96,56,227,157,7,64,208,134,6,69,148,155,70,101,229,164,56,
-2,67,32,60,161,100,134,18,247,163,3,168,57,97,115,0,90,64,4,0,
-85,166,55,224,36,3,225,152,1,129,97,197,253,226,181,4,101,229,201,45,
-224,30,10,96,105,224,212,1,229,186,3,226,56,2,192,18,128,0,224,115,
-2,102,215,0,95,84,31,202,107,130,171,1,49,57,152,70,186,101,253,42,
-19,166,84,225,106,19,17,78,111,116,32,97,32,118,97,108,105,100,32,67,
-32,116,121,112,101,253,37,0,1,49,50,128,194,65,109,132,103,96,70,0,
-79,137,129,224,74,9,227,3,2,4,70,108,111,97,116,116,70,245,252,13,
-224,31,2,0,64,224,79,27,0,73,141,32,224,76,13,192,28,224,73,28,
-209,201,224,74,13,224,29,0,224,75,17,3,68,97,116,97,96,69,96,4,
-112,57,224,75,17,128,30,224,152,28,132,216,224,74,13,70,192,224,73,22,
-0,83,115,87,8,46,73,79,46,72,97,110,100,108,151,89,224,115,13,194,
-113,227,78,0,108,234,156,255,226,40,17,0,70,136,143,8,46,67,46,84,
-121,112,101,115,46,128,67,66,132,237,174,3,3,67,67,104,97,238,12,8,
-1,67,83,224,21,12,0,85,224,43,13,240,137,11,1,67,85,224,22,13,
-161,250,224,42,5,224,20,11,0,76,239,43,10,1,67,85,224,21,12,5,
-80,116,114,100,105,102,238,136,8,3,67,83,105,122,239,16,8,1,67,83,
-224,21,12,0,76,224,110,14,224,22,12,1,84,105,143,104,238,217,10,67,
-121,135,78,230,110,17,228,86,1,64,45,231,62,23,224,42,2,135,63,229,
-200,21,3,118,111,105,100,235,167,2,233,22,20,224,53,1,8,40,105,110,
-116,32,115,41,32,123,229,198,6,224,33,1,0,59,158,135,96,226,105,245,
-103,116,186,182,3,95,49,56,55,110,115,1,56,56,68,190,64,105,96,9,
-64,8,4,48,50,32,35,49,124,38,74,46,105,21,64,65,135,182,64,18,
-71,178,2,56,57,54,71,170,96,31,3,10,65,32,94,245,169,10,0,32,
-64,30,0,54,225,1,1,0,50,69,101,73,213,166,218,2,48,32,95,155,
-190,1,56,56,101,3,64,248,69,105,160,23,198,215,64,18,0,55,94,177,
-160,19,69,170,64,73,64,14,64,13,70,244,1,50,55,65,33,1,56,56,
-128,180,0,52,158,35,224,58,6,64,31,137,136,223,25,1,56,56,128,5,
-75,108,0,50,139,107,185,233,224,31,4,1,57,48,103,254,2,53,32,95,
-71,246,4,95,49,56,51,32,170,74,224,163,3,224,166,5,97,58,64,213,
-235,212,0,192,213,2,95,57,50,192,116,235,243,3,224,30,6,64,115,192,
-194,64,228,225,19,0,130,75,1,56,57,64,12,122,130,224,65,0,224,232,
-1,96,230,200,21,224,255,3,0,57,135,54,81,89,128,165,224,0,1,65,
-171,136,191,0,94,153,214,97,189,206,7,64,59,105,189,96,120,2,10,65,
-32,83,132,1,67,65,152,230,2,76,101,110,96,44,131,69,0,94,178,128,
-96,18,163,42,6,56,53,32,75,32,95,56,66,74,192,7,1,95,56,75,
-163,128,231,1,95,57,75,211,192,11,225,115,0,3,64,95,57,56,224,11,
-0,65,4,0,52,98,159,109,27,0,51,65,62,2,66,32,95,71,172,232,
-36,0,129,27,64,13,128,31,0,95,108,192,64,135,178,113,224,135,17,97,
-142,160,135,160,11,226,27,0,192,135,96,11,224,135,1,1,49,56,64,64,
-224,137,4,96,11,224,136,0,2,56,56,56,224,137,1,64,5,0,58,128,
-67,65,36,84,172,1,80,116,99,34,64,37,96,18,153,73,96,18,131,84,
-175,68,106,26,72,126,64,82,125,177,227,22,9,143,130,0,95,227,173,0,
-1,56,54,163,119,64,51,0,52,126,43,74,171,204,212,96,71,68,15,128,
-170,75,193,99,152,110,22,64,14,253,181,0,1,50,32,162,79,64,224,128,
-58,130,20,0,94,155,193,96,174,130,19,0,94,90,178,96,15,162,9,244,
-87,3,96,23,130,14,163,94,0,54,97,215,164,227,0,79,228,229,13,30,
-115,116,97,116,105,99,32,117,110,115,105,103,110,101,100,32,99,104,97,114,
-32,100,97,116,97,91,93,32,61,32,123,100,223,101,211,114,149,197,51,132,
-160,0,55,147,77,4,56,55,57,32,35,84,114,64,107,230,20,3,1,125,
-59,96,62,224,20,5,224,105,5,10,42,99,111,109,98,101,120,112,114,32,
-61,96,117,128,49,159,47,229,156,19,69,155,192,58,5,108,101,110,32,61,
-32,165,164,224,165,3,235,167,1,142,130,4,79,32,35,53,57,240,59,4,
-161,111,198,68,179,155,0,83,99,143,141,133,96,16,94,162,224,7,1,229,
-52,1,243,154,3,243,153,5,2,95,54,52,163,255,0,58,97,31,99,28,
-2,54,56,57,241,108,1,224,160,6,133,82,76,34,0,52,160,161,64,56,
-130,184,3,85,32,75,52,160,2,0,90,160,1,231,102,1,64,38,212,152,
-224,32,2,224,1,7,231,151,7,64,54,0,54,128,150,2,52,56,51,66,
-59,0,55,130,176,3,85,32,75,50,224,69,16,224,73,11,128,75,196,199,
-1,75,51,224,169,6,224,48,4,64,41,239,236,1,97,112,129,89,225,118,
-8,140,146,76,206,161,108,81,114,224,19,4,177,121,192,63,128,11,2,95,
-49,50,80,136,199,227,140,99,145,151,100,170,128,130,200,141,0,57,110,161,
-71,173,74,143,85,162,0,75,64,40,134,167,64,65,64,144,214,51,2,49,
-32,95,181,107,2,95,49,54,102,66,110,155,64,79,131,117,230,69,3,72,
-44,67,18,2,95,49,56,79,213,65,237,102,240,230,24,0,79,156,205,108,
-96,86,175,35,1,56,54,163,84,0,54,175,230,0,56,71,18,3,10,65,
-32,75,65,163,64,20,3,10,65,32,90,77,95,64,14,164,216,158,142,96,
-32,228,215,0,230,211,4,64,79,0,50,129,54,232,20,0,2,50,49,49,
-233,192,3,0,67,168,202,129,77,224,37,14,6,77,72,83,67,79,78,70,
-160,42,129,142,96,2,64,16,129,164,128,122,180,166,146,251,224,8,3,64,
-137,136,146,0,54,97,167,239,155,0,101,131,229,110,0,238,15,2,0,50,
-82,107,0,50,212,121,2,49,52,51,82,126,65,35,0,50,64,65,206,228,
-168,251,65,60,119,21,0,55,64,59,234,161,4,11,111,117,108,100,32,110,
-111,116,32,102,105,110,141,30,132,102,160,138,224,43,3,4,105,110,32,102,
-105,140,125,226,237,3,161,26,231,221,2,192,188,96,214,0,53,224,65,2,
-4,100,101,102,97,117,155,41,4,64,95,51,56,55,228,197,13,1,99,99,
-225,73,0,0,32,96,37,224,103,3,145,36,225,32,4,64,105,233,172,7,
-96,146,225,42,34,225,43,8,237,43,18,9,117,110,100,32,116,97,114,103,
-101,116,239,78,2,68,179,122,63,3,56,53,57,32,67,55,96,12,0,53,
-137,0,224,11,1,224,0,2,192,207,225,59,5,225,61,2,150,219,235,55,
-0,0,54,71,8,192,215,225,61,28,99,236,1,49,56,64,35,0,49,73,
-37,73,228,208,113,224,59,22,233,224,3,104,2,161,135,224,83,42,1,111,
-110,109,111,224,0,0,225,90,17,4,117,110,105,120,45,130,28,230,4,1,
-0,95,100,41,64,0,67,200,0,54,229,38,0,67,92,0,80,131,239,229,
-162,0,198,15,1,75,52,198,113,64,30,133,132,250,99,4,211,157,211,154,
-227,179,1,186,114,101,29,147,134,164,142,145,167,160,53,132,182,147,133,3,
-95,49,56,52,133,68,96,109,133,200,231,13,1,235,96,0,1,49,56,102,
-252,228,26,1,128,126,1,95,50,200,36,224,45,4,1,52,52,64,246,184,
-244,96,44,132,72,66,8,235,223,4,226,245,0,226,193,4,225,100,17,2,
-67,97,110,67,238,4,112,97,114,115,101,162,190,224,255,0,227,66,53,224,
-122,0,162,205,230,181,1,187,190,227,160,93,2,82,101,97,195,159,0,115,
-100,176,9,46,32,80,111,115,115,105,98,108,101,192,22,195,183,232,109,0,
-99,160,227,165,3,0,89,98,40,68,230,245,189,3,168,233,231,66,1,160,
-0,227,192,5,225,0,9,239,36,9,0,47,160,137,0,46,227,30,0,66,
-59,135,129,180,34,129,145,98,104,1,52,57,110,102,69,190,160,181,0,53,
-65,25,116,152,0,52,86,138,116,249,212,254,96,51,0,52,94,145,66,45,
-0,53,103,183,71,86,0,83,164,79,82,10,0,52,125,205,200,133,224,51,
-4,225,91,19,9,65,109,98,105,103,117,111,117,115,58,225,64,0,107,78,
-170,251,229,5,2,0,54,129,181,64,0,64,217,173,144,2,49,50,52,133,
-193,230,34,1,0,50,67,223,65,32,225,246,0,0,35,184,50,98,34,64,
-136,1,51,55,230,67,2,0,84,97,56,231,150,2,192,34,4,79,32,35,
-51,50,246,72,0,162,97,150,153,96,33,225,221,0,0,35,122,114,96,187,
-224,57,10,224,46,3,229,203,24,160,74,96,0,2,95,49,50,69,146,128,
-249,2,95,49,51,95,52,128,12,65,0,136,174,0,83,139,32,73,140,0,
-90,216,60,163,9,64,59,127,122,246,215,1,192,193,131,22,67,44,139,85,
-199,221,224,193,4,235,33,0,224,46,4,69,6,240,52,1,98,239,104,3,
-128,219,64,105,0,80,192,85,235,165,0,130,1,137,166,64,36,64,191,64,
-7,133,99,128,175,141,68,221,109,0,79,98,174,235,193,0,0,52,87,38,
-66,181,66,99,225,185,1,3,58,92,49,48,190,72,129,157,236,205,22,2,
-32,32,102,71,107,227,172,2,0,50,67,33,162,107,0,53,70,11,160,237,
-224,72,24,6,101,120,112,101,99,116,101,224,75,3,105,12,4,95,49,50,
-56,51,229,219,1,236,253,2,67,54,98,177,1,53,55,65,200,0,53,78,
-67,224,12,6,1,56,52,99,149,0,52,102,249,0,56,151,191,0,56,99,
-241,224,7,3,146,174,64,108,64,78,128,62,97,91,1,53,57,112,1,64,
-62,186,213,248,199,1,130,66,1,50,54,102,101,0,52,98,86,96,39,224,
-211,1,1,101,111,167,85,65,146,2,95,50,49,80,41,128,151,110,127,192,
-197,0,54,160,197,67,152,192,182,96,212,97,161,102,184,224,213,7,0,53,
-161,249,198,220,1,53,52,128,193,135,101,1,95,49,156,229,0,56,67,2,
-160,38,64,29,135,100,224,104,13,118,123,0,56,109,202,2,95,51,50,99,
-63,193,65,2,55,32,35,133,234,1,49,56,107,239,64,74,216,143,0,53,
-146,146,64,248,224,247,1,3,118,97,108,117,106,130,225,50,7,96,68,103,
-215,97,17,251,34,0,64,81,172,217,99,216,1,49,56,64,151,1,54,48,
-225,124,1,65,1,105,77,224,106,6,4,92,57,50,38,110,224,106,10,167,
-95,64,6,128,106,163,182,128,107,196,233,225,84,3,224,244,9,115,163,225,
-20,0,160,19,68,84,64,66,178,53,3,49,56,52,56,76,189,64,35,225,
-16,17,2,107,101,121,224,163,10,130,64,193,14,64,54,225,15,2,71,66,
-141,14,224,249,4,198,6,163,90,67,192,70,20,1,48,54,68,30,64,81,
-231,137,0,252,244,9,122,195,174,35,96,31,0,90,169,54,0,49,123,50,
-192,120,131,5,0,80,96,213,194,154,4,53,56,56,32,80,101,102,2,53,
-48,52,64,111,115,30,135,58,84,105,0,95,65,94,64,48,220,230,196,117,
-226,108,2,226,214,5,167,156,230,99,1,97,244,64,72,158,37,76,86,225,
-145,1,160,154,130,192,238,173,6,0,50,126,100,0,50,114,253,111,12,199,
-216,96,233,233,49,4,1,95,50,84,181,224,34,2,162,21,64,91,207,220,
-97,113,208,230,2,56,52,48,71,191,1,51,51,65,157,97,37,0,35,105,
-243,193,134,0,54,64,146,98,27,224,39,14,198,3,228,247,16,82,58,0,
-47,167,41,229,159,3,224,93,1,224,135,15,96,186,64,26,0,49,224,122,
-16,96,216,131,88,134,135,1,52,50,212,167,68,84,0,54,115,193,128,19,
-64,41,240,12,1,0,50,73,233,235,5,1,74,27,192,15,239,13,0,148,
-188,1,52,51,135,114,191,227,165,82,164,113,84,55,192,81,135,229,0,48,
-134,133,235,112,2,93,46,235,34,2,225,191,7,240,110,4,0,50,130,119,
-151,143,225,217,5,1,49,56,64,46,225,218,9,224,79,8,96,234,64,187,
-246,206,0,1,100,105,117,88,64,30,212,153,192,18,131,11,65,193,81,239,
-245,115,2,0,80,105,15,69,210,234,65,1,64,38,104,19,171,75,96,148,
-0,53,64,221,66,150,131,174,202,147,64,92,131,92,109,18,71,213,64,18,
-237,37,0,242,195,16,242,152,8,192,0,64,62,163,31,3,32,67,32,80,
-97,116,250,39,1,86,239,131,255,89,193,73,73,233,126,5,0,56,97,198,
-194,24,128,14,96,56,2,79,32,35,74,198,192,112,68,166,118,39,106,173,
-159,249,106,179,255,249,4,101,177,130,59,224,25,6,97,148,127,205,224,21,
-3,103,75,0,85,201,43,96,161,172,130,224,195,5,1,49,56,98,171,224,
-196,3,64,0,98,152,0,66,139,107,100,233,96,101,69,109,224,62,28,0,
-85,73,242,96,44,236,214,2,84,98,102,176,99,126,129,14,1,56,48,183,
-97,160,17,66,182,66,94,1,55,49,65,21,1,49,51,235,1,2,192,9,
-235,3,0,96,36,160,58,186,41,236,158,2,225,69,12,193,2,224,219,5,
-96,21,102,211,129,135,224,34,10,98,142,224,34,4,225,74,9,0,54,103,
-202,225,10,4,66,65,167,215,85,239,64,162,131,198,64,31,139,24,67,137,
-0,53,101,197,116,147,3,95,50,57,56,92,15,165,18,160,32,73,11,140,
-36,1,50,48,110,9,224,23,8,1,54,53,128,63,64,22,224,24,4,4,
-49,49,49,52,49,65,40,67,228,0,50,225,79,2,13,117,116,102,56,67,
-104,97,114,58,32,98,97,100,32,64,9,202,36,194,74,0,83,202,98,64,
-147,132,28,187,149,203,145,188,95,195,168,224,46,18,107,145,1,49,50,164,
-47,224,44,35,224,41,32,131,80,98,116,113,168,89,148,192,168,148,95,224,
-27,20,224,26,4,160,20,97,13,225,8,28,150,104,224,216,82,224,187,47,
-224,184,22,146,205,224,139,39,224,111,12,73,57,128,29,0,79,132,221,66,
-231,218,131,1,80,32,100,66,150,170,67,174,187,46,99,44,64,63,96,223,
-131,71,1,56,57,98,247,117,246,71,79,198,171,167,139,96,5,224,28,15,
-96,206,224,28,3,108,70,131,27,131,149,207,116,192,20,110,50,97,143,192,
-183,99,210,64,152,96,76,224,152,0,64,21,249,164,11,70,229,197,204,64,
-14,249,179,2,69,28,128,232,231,140,0,241,205,0,232,192,17,31,87,101,
-108,99,111,109,101,32,116,111,32,105,110,116,101,114,97,99,116,105,118,101,
-32,77,105,99,114,111,72,115,44,32,7,118,101,114,115,105,111,110,32,148,
-51,5,50,53,50,32,95,50,76,167,225,243,0,232,12,1,2,51,57,54,
-241,83,0,192,20,245,77,2,95,217,2,49,56,50,128,59,134,93,1,95,
-51,157,126,173,140,0,56,143,234,107,239,160,193,205,105,73,34,0,54,96,
-43,68,173,1,95,49,120,164,200,37,64,252,174,75,5,51,54,57,32,75,
-32,70,139,128,1,82,78,128,132,224,1,19,120,69,224,0,4,224,47,38,
-224,44,35,224,41,32,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,200,163,10,224,0,2,65,200,233,
-179,1,224,1,21,225,179,9,225,230,255,224,32,15,224,29,20,224,26,17,
-224,23,14,224,20,11,224,17,8,224,14,5,224,11,2,192,8,78,125,224,
-0,5,66,3,0,54,131,204,68,199,0,51,70,236,2,95,49,55,79,91,
-68,85,128,15,0,51,68,70,102,57,192,34,102,79,68,102,107,205,110,5,
-0,55,68,60,1,95,52,68,84,2,95,52,48,104,60,224,82,2,224,44,
-0,101,33,244,252,2,10,121,112,101,32,39,58,113,117,105,116,39,69,21,
-64,8,13,44,32,39,58,104,101,108,112,39,32,102,111,114,32,64,9,136,
-190,224,78,6,119,100,0,51,157,125,0,55,95,123,224,101,17,31,87,65,
-82,78,73,78,71,58,32,67,111,109,112,105,108,101,100,32,119,105,116,104,
-32,71,72,67,44,32,115,111,32,108,20,105,109,105,116,101,100,32,102,117,
-110,99,116,105,111,110,97,108,105,116,121,46,170,141,67,59,167,117,65,44,
-178,52,225,27,1,0,54,70,161,0,55,83,1,97,34,192,24,225,33,5,
-0,67,139,49,2,55,56,57,102,108,113,182,197,179,2,95,49,55,79,104,
-230,37,2,4,46,109,104,115,105,96,126,224,19,1,1,62,32,128,143,77,
-29,96,144,159,70,128,155,202,212,65,229,231,51,2,0,35,151,42,225,185,
-5,75,153,0,57,139,223,136,97,224,180,3,64,21,0,51,127,38,225,74,
-15,1,66,121,114,172,225,23,4,129,25,237,79,1,1,95,53,112,101,64,
-135,162,80,134,57,155,252,64,183,226,24,25,17,85,110,114,101,99,111,103,
-110,105,122,101,100,32,99,111,109,109,97,189,205,224,87,10,194,224,122,231,
-64,10,70,135,141,176,156,114,64,119,64,25,0,85,66,155,184,116,78,25,
-226,211,18,160,12,249,157,25,248,65,0,192,165,245,146,9,85,222,0,51,
-248,63,0,224,191,11,64,0,64,140,1,54,57,88,59,174,88,1,52,52,
-240,165,0,160,62,65,115,105,212,65,111,140,125,0,79,146,104,224,151,9,
-67,73,168,70,2,54,32,95,207,238,160,119,175,221,224,60,16,2,99,108,
-101,172,52,224,61,0,228,30,3,72,71,232,74,1,227,231,8,121,0,0,
-39,168,67,1,51,57,98,109,104,66,232,87,0,0,55,83,144,232,87,0,
-136,137,2,95,51,49,98,79,225,31,12,224,169,16,4,114,101,108,111,97,
-130,25,224,170,0,227,156,5,100,146,65,141,224,22,6,132,163,233,65,1,
-130,4,98,63,226,7,2,73,53,73,68,226,42,13,125,202,192,213,224,233,
-3,225,20,4,165,79,225,247,14,224,218,16,4,100,101,108,101,116,131,109,
-224,125,8,97,131,164,74,152,186,162,53,120,202,146,37,66,190,125,138,226,
-73,3,65,95,0,53,115,42,225,105,12,224,140,16,2,116,121,112,224,138,
-11,65,188,120,39,224,73,33,1,107,105,163,201,224,73,8,133,203,224,73,
-33,230,26,0,79,188,228,81,14,64,86,129,199,225,126,10,203,219,99,79,
-143,183,224,93,1,0,67,131,206,0,115,121,229,102,161,0,32,96,0,96,
-9,171,177,96,26,130,130,64,26,160,9,5,109,111,100,117,108,101,128,28,
-99,73,96,55,128,9,9,97,108,108,32,100,101,102,105,110,105,70,105,128,
-35,129,232,3,32,100,32,32,192,9,224,32,0,4,40,115,41,32,100,96,
-36,65,128,1,32,101,64,72,4,115,104,111,119,32,96,14,3,111,102,32,
-101,96,28,65,83,0,32,96,159,224,28,4,0,116,96,28,65,38,128,186,
-7,116,104,105,115,32,116,101,120,96,23,2,101,120,112,128,152,2,32,32,
-101,88,132,2,97,116,101,90,86,2,114,101,115,76,130,64,33,3,100,101,
-102,110,160,33,11,97,100,100,32,116,111,112,32,108,101,118,101,224,192,3,
-187,1,65,63,206,15,227,103,6,0,51,66,141,227,103,15,2,49,55,54,
-133,95,222,80,229,106,10,1,79,32,114,242,129,171,66,111,133,191,0,80,
-227,167,5,67,100,66,235,0,75,227,231,13,229,219,21,1,50,48,85,193,
-100,208,67,194,1,52,48,132,220,235,50,3,64,225,206,219,192,63,91,188,
-96,188,0,39,84,241,64,23,2,80,32,79,146,71,128,173,230,150,6,198,
-154,224,13,1,0,85,224,13,2,96,25,241,158,0,149,27,149,63,77,187,
-103,213,0,51,163,194,129,47,255,178,4,115,44,149,97,1,56,49,104,87,
-0,58,128,205,149,34,0,50,245,9,2,64,24,141,192,230,215,19,98,67,
-230,201,0,128,38,129,18,224,53,19,1,32,61,160,51,193,208,225,189,4,
-96,122,140,114,224,50,1,74,2,0,95,102,171,64,29,0,54,226,69,94,
-65,241,226,69,81,64,55,162,69,134,102,160,0,64,225,217,245,226,69,51,
-226,55,64,130,54,88,217,226,54,3,233,202,2,1,51,54,90,194,144,50,
-117,32,0,73,129,167,136,125,3,85,32,75,51,194,87,64,21,133,67,3,
-80,32,95,52,74,233,128,5,64,23,220,67,226,54,15,133,49,130,58,128,
-37,0,52,138,164,224,48,15,0,40,224,49,14,224,33,1,5,41,32,119,
-104,101,114,101,30,12,105,109,112,111,114,116,32,80,114,101,108,117,100,224,
-17,3,18,83,121,115,116,101,109,46,73,79,46,80,114,105,110,116,79,114,
-82,117,196,248,25,97,117,108,116,32,78,117,109,32,40,73,110,116,101,103,
-101,114,44,32,68,111,117,98,108,101,41,224,32,3,9,73,115,83,116,114,
-105,110,103,32,40,128,7,224,28,4,0,83,69,138,2,40,40,41,96,20,
-131,21,97,12,243,34,0,226,226,12,193,198,98,29,1,64,83,103,234,3,
-53,32,95,54,76,225,64,11,66,222,178,8,199,56,98,254,66,54,226,203,
-12,1,64,90,131,35,72,48,73,30,225,249,0,0,90,242,63,0,112,28,
-153,176,160,110,0,57,109,199,1,49,55,72,210,227,117,67,98,98,227,117,
-15,64,32,128,160,72,187,96,27,64,101,137,79,224,103,2,228,91,16,66,
-1,97,90,224,174,4,227,181,7,2,52,50,48,64,4,64,26,0,83,77,
-132,200,117,141,142,224,47,6,72,122,96,157,160,82,147,124,224,66,2,224,
-32,0,243,72,11,163,97,67,56,99,105,91,146,67,29,100,26,226,230,16,
-1,79,32,124,176,96,215,64,52,227,175,0,64,226,133,185,121,175,0,67,
-129,192,64,91,2,83,32,73,96,220,155,123,132,24,3,95,49,50,56,214,
-2,132,92,160,24,0,80,166,8,128,13,164,90,64,13,0,39,132,127,161,
-239,196,40,128,18,64,54,196,48,0,48,231,25,3,64,19,117,150,138,125,
-1,51,56,138,125,100,219,96,65,230,101,20,19,114,97,110,115,108,97,116,
-101,58,32,110,111,116,32,102,111,117,110,100,32,131,43,187,132,134,75,0,
-51,101,101,129,1,210,179,0,89,194,191,0,83,252,69,0,80,228,128,19,
-187,50,142,7,0,80,123,122,175,34,129,142,68,199,67,26,97,9,197,82,
-131,123,64,78,64,17,250,95,4,128,138,224,32,18,136,149,165,135,224,32,
-11,226,198,0,160,137,250,129,0,192,24,0,85,64,157,67,148,125,56,251,
-46,17,5,100,121,110,115,121,109,164,80,219,44,1,95,57,151,162,129,48,
-224,98,7,96,156,0,85,225,166,21,225,164,22,65,160,6,32,112,114,105,
-109,111,112,161,160,97,152,0,57,96,64,70,212,98,170,134,103,224,231,13,
-129,66,96,231,96,226,252,35,0,226,162,0,65,190,225,55,8,135,168,128,
-79,98,234,224,28,3,226,223,1,224,105,3,96,21,81,30,219,210,224,116,
-2,0,57,192,115,224,31,3,226,176,38,1,58,32,70,64,5,115,115,105,
-98,108,101,207,238,152,65,0,54,153,116,130,168,0,54,134,245,78,149,140,
-218,101,200,193,176,64,22,69,242,217,92,96,50,136,28,236,241,6,2,79,
-32,35,79,47,162,170,237,16,8,2,79,32,35,70,28,96,30,0,79,224,
-30,13,0,53,160,30,64,4,237,78,16,1,67,39,205,150,224,67,11,78,
-234,96,67,65,164,224,30,10,192,98,90,82,224,98,16,0,83,128,98,99,
-153,224,67,9,83,68,96,67,68,105,224,197,10,0,51,160,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,0,66,128,191,69,40,224,67,10,79,135,96,67,73,146,224,98,
-10,201,209,0,82,224,98,19,1,75,50,96,98,0,75,66,71,224,36,17,
-0,51,128,36,70,140,224,36,17,0,52,128,36,67,147,225,244,18,0,66,
-161,245,226,89,13,0,52,193,85,0,43,224,30,13,193,85,0,45,224,30,
-13,192,242,0,42,224,131,19,2,113,117,111,146,170,64,8,224,40,19,1,
-114,101,132,246,2,114,101,109,224,38,19,0,117,224,80,0,96,9,224,42,
-20,192,82,64,8,224,40,19,2,110,101,103,96,39,2,110,101,103,224,38,
-19,212,165,2,97,110,100,224,38,19,0,111,147,92,1,111,114,224,36,19,
-0,120,160,37,0,120,224,38,21,2,105,110,118,96,38,2,105,110,118,224,
-38,19,2,115,104,108,96,38,2,115,104,108,224,38,21,128,116,1,115,104,
-224,116,20,0,97,192,39,64,8,224,79,20,2,117,98,116,92,230,128,84,
-160,12,224,48,19,1,61,61,96,42,69,199,224,36,17,0,47,128,36,0,
-47,224,36,10,68,139,195,135,0,60,224,67,19,0,60,128,67,0,60,224,
-67,14,194,185,0,62,224,67,19,0,62,128,67,0,62,224,172,20,1,117,
-60,130,97,224,141,20,0,117,160,142,0,117,224,143,11,224,38,2,0,62,
-128,37,224,149,20,0,117,160,150,0,117,224,151,21,1,111,114,130,171,1,
-111,114,226,171,20,0,99,161,233,0,99,225,232,21,1,102,43,96,37,0,
-102,228,39,10,224,36,2,0,45,128,36,228,45,10,224,36,2,0,42,128,
-36,228,51,20,1,102,47,128,36,0,47,224,36,20,162,76,0,102,226,77,
-21,0,102,162,78,0,102,226,79,11,224,38,2,129,199,0,102,225,199,20,
-0,102,161,199,0,102,225,199,21,0,102,129,199,0,102,225,199,20,0,102,
-161,199,0,102,225,199,21,0,102,196,155,64,8,224,40,20,84,28,128,41,
-116,38,224,42,19,1,114,101,183,85,96,9,224,42,19,3,105,116,111,102,
-96,41,64,8,224,40,19,2,115,101,113,96,39,2,115,101,113,224,38,22,
-1,117,97,164,171,96,10,224,44,19,224,43,1,224,42,24,2,115,99,109,
-150,45,64,8,224,208,20,192,40,64,8,224,40,19,1,114,110,128,248,1,
-114,110,224,247,20,3,73,79,46,62,161,201,128,10,224,44,24,224,43,1,
-224,42,22,5,114,101,116,117,114,110,192,46,128,13,224,50,22,0,112,80,
-233,192,49,96,12,224,48,22,7,115,101,114,105,97,108,105,122,151,254,224,
-16,3,224,56,22,1,100,101,224,58,8,224,18,2,224,117,23,2,116,100,
-105,224,216,0,96,12,224,48,25,1,111,117,224,216,0,128,13,224,50,25,
-1,101,114,132,220,224,13,0,224,50,22,7,103,101,116,65,114,103,82,101,
-129,248,224,16,3,225,118,23,7,101,114,102,111,114,109,73,79,225,122,0,
-192,16,224,113,23,0,99,224,106,0,0,99,224,42,19,3,114,97,105,115,
-129,103,96,9,224,42,19,4,99,97,116,99,104,96,42,96,9,224,42,19,
-238,107,2,128,10,224,44,19,4,110,101,119,67,65,147,8,1,76,101,129,
-188,224,18,5,224,60,19,3,112,101,101,107,192,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,1,80,116,130,46,96,9,224,42,21,1,68,98,132,151,96,9,224,42,
-21,2,70,117,110,224,88,1,128,12,224,48,19,5,65,46,97,108,108,111,
-130,22,160,11,224,46,21,0,115,195,129,128,10,224,44,21,229,248,0,128,
-10,224,44,21,2,119,114,105,188,161,160,11,224,46,21,167,142,64,8,224,
-40,19,2,98,115,43,136,76,64,8,224,40,23,224,41,1,224,42,22,160,
-124,64,8,224,40,21,168,13,64,8,224,40,21,136,15,1,98,115,232,16,
-20,1,98,115,168,17,64,8,224,40,21,133,247,1,98,115,229,245,20,1,
-98,115,166,75,64,8,224,40,21,198,199,96,9,224,42,21,3,112,97,99,
-107,160,43,64,10,224,44,21,1,117,110,224,46,2,128,12,224,48,21,4,
-108,101,110,103,116,132,113,192,12,224,48,21,3,115,117,98,115,163,17,192,
-12,224,48,19,192,9,96,48,224,22,0,224,48,18,1,116,111,224,46,0,
-128,10,224,93,20,0,112,170,218,0,112,234,219,21,1,112,50,129,110,64,
-8,224,40,21,1,110,101,169,134,64,9,224,42,21,0,102,167,5,96,9,
-122,153,146,176,224,0,98,82,151,186,17,86,21,87,121,187,64,179,38,118,
-161,243,50,17,1,32,61,84,55,0,110,153,94,147,45,224,56,0,0,48,
-109,108,247,197,6,154,91,224,64,1,2,95,105,116,103,55,64,27,154,97,
-252,145,1,219,151,224,125,19,96,114,248,53,13,64,82,154,156,224,110,4,
-160,108,153,169,4,95,49,53,55,48,64,5,0,56,96,242,2,54,51,53,
-116,57,148,242,0,55,86,152,0,58,153,40,128,152,120,59,83,45,119,150,
-3,95,51,54,56,121,125,115,233,152,203,148,136,185,239,64,59,151,211,9,
-95,51,54,57,32,75,32,85,32,75,183,151,64,65,87,227,90,27,248,80,
-0,64,47,151,1,224,151,6,0,55,81,139,224,144,2,0,54,193,178,213,
-30,247,239,0,181,50,64,45,0,53,89,195,97,10,0,75,128,53,148,128,
-96,161,64,52,118,137,156,99,128,61,1,83,32,85,55,185,74,1,67,39,
-87,90,3,67,39,32,79,156,248,161,94,0,51,207,59,96,4,94,120,0,
-83,183,166,1,85,32,96,14,0,67,64,48,161,240,65,27,64,197,188,162,
-96,0,128,106,97,73,7,54,57,55,32,95,50,50,55,160,33,0,35,122,
-0,224,35,6,2,49,55,57,214,36,153,250,85,104,98,20,1,50,50,66,
-16,96,90,160,43,1,52,50,65,130,3,95,54,50,50,98,41,221,156,216,
-242,186,199,192,88,85,176,1,51,53,150,48,129,14,194,255,1,55,57,122,
-8,160,7,65,218,155,26,96,0,65,72,131,49,65,204,0,90,96,161,118,
-23,64,24,130,221,85,254,128,94,96,131,1,95,51,64,32,64,30,130,224,
-0,89,249,166,0,152,213,0,67,118,243,253,192,6,64,46,130,188,121,12,
-64,158,100,71,97,12,129,11,86,248,192,17,160,193,152,162,121,243,247,117,
-3,64,254,1,54,56,65,21,0,49,66,79,128,64,64,78,156,68,226,71,
-3,224,54,1,126,94,65,5,155,190,0,55,128,103,224,130,1,96,113,250,
-74,1,162,81,254,130,2,64,194,221,15,128,149,157,23,123,102,4,67,32,
-95,50,56,93,31,0,50,85,188,225,243,0,251,137,3,64,160,219,116,128,
-117,251,167,5,91,71,186,158,123,231,0,55,97,188,251,236,0,68,49,248,
-178,2,160,176,2,32,95,55,66,116,161,224,129,13,225,60,1,224,93,0,
-163,68,0,67,163,99,96,43,0,56,99,14,0,80,94,251,66,104,193,9,
-65,200,98,239,152,136,161,72,224,106,5,194,96,89,160,1,95,52,95,131,
-2,64,95,54,65,28,97,102,252,158,1,97,52,86,174,97,52,128,1,224,
-69,0,64,131,4,51,32,95,50,52,154,142,193,50,225,84,1,64,32,185,
-0,64,10,64,38,64,78,132,129,64,40,86,255,187,76,224,2,0,128,47,
-254,153,0,224,8,0,160,24,224,25,11,155,4,96,0,224,71,0,224,29,
-3,224,61,2,224,33,2,224,42,3,224,69,6,224,37,11,224,2,4,224,
-40,1,224,113,17,224,23,0,224,44,2,99,97,224,2,23,224,48,4,225,
-31,8,128,34,224,17,6,224,49,41,96,17,224,53,3,225,189,0,224,1,
-9,224,94,5,225,27,23,224,2,3,224,56,5,224,57,4,225,9,24,225,
-6,5,225,249,16,224,61,15,224,125,9,224,65,42,224,68,11,225,40,2,
-224,55,12,224,2,7,224,64,9,224,134,6,159,18,224,86,2,224,145,22,
-224,86,15,225,184,9,224,1,7,0,83,68,193,0,49,198,222,231,4,2,
-224,0,1,224,195,13,224,2,17,225,103,12,224,138,40,197,162,224,0,4,
-224,108,13,224,2,21,224,138,57,199,243,224,0,4,225,177,3,192,108,161,
-182,224,96,6,224,177,19,224,89,8,224,143,13,224,1,1,224,153,5,134,
-27,224,0,5,226,209,12,224,2,19,224,131,54,223,67,224,0,3,224,116,
-25,192,2,227,82,15,224,131,37,234,158,0,224,65,30,224,114,11,224,47,
-19,225,119,8,0,50,198,224,224,0,2,224,223,19,224,2,9,224,126,52,
-231,139,0,224,63,15,224,115,28,224,106,13,128,1,224,112,6,202,168,224,
-0,1,224,97,13,192,2,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,224,41,7,224,80,5,224,
-130,11,128,1,229,3,6,227,223,8,227,220,11,228,117,28,224,129,5,224,
-124,13,225,7,8,224,126,7,230,156,1,96,44,225,19,7,225,13,16,227,
-228,9,224,122,9,224,124,7,110,170,224,0,0,224,202,3,231,31,10,136,
-183,224,14,15,224,154,1,224,110,3,192,142,224,19,3,225,126,6,227,228,
-1,224,73,3,64,38,141,17,3,95,49,51,57,110,122,0,50,111,101,0,
-53,109,190,110,127,64,20,0,52,78,53,160,19,228,48,4,224,129,1,64,
-67,235,129,1,64,0,193,72,128,108,172,2,68,222,237,121,3,224,69,4,
-235,92,12,234,85,8,224,255,7,0,67,77,202,1,51,51,77,112,110,159,
-0,35,174,195,224,88,24,160,152,224,83,0,192,43,231,50,6,224,46,7,
-64,14,224,40,12,163,107,224,37,0,224,34,10,129,58,208,140,224,25,3,
-229,247,5,0,73,192,13,173,202,64,5,233,79,2,96,126,142,198,224,220,
-3,97,116,64,16,1,64,80,225,59,1,226,230,8,130,64,160,236,98,95,
-224,248,1,224,25,2,77,95,172,219,160,155,225,208,3,224,74,10,226,205,
-11,65,10,192,139,224,18,2,226,44,5,3,95,50,49,54,226,56,2,226,
-55,17,243,52,0,144,123,224,106,6,81,90,224,16,21,77,145,224,16,4,
-175,151,0,57,242,179,2,31,92,51,52,38,109,104,115,47,83,121,115,116,
-101,109,47,67,111,110,115,111,108,101,47,83,105,109,112,108,101,82,101,97,
-7,100,108,105,110,101,46,104,115,64,39,5,44,49,54,50,58,53,147,20,
-224,89,4,163,91,225,121,1,224,237,17,224,142,5,238,128,19,224,42,9,
-226,211,10,225,232,0,228,96,0,64,5,225,149,8,227,50,8,192,62,130,
-186,192,65,128,8,130,209,66,75,227,225,5,226,155,1,224,2,0,239,240,
-12,224,121,3,224,68,4,242,117,0,96,40,68,103,83,144,132,117,224,142,
-1,162,11,96,135,160,5,64,143,224,139,3,64,209,129,106,6,67,32,95,
-55,53,32,95,145,106,112,164,160,71,64,53,177,245,100,199,243,57,3,224,
-42,3,64,41,64,237,226,108,12,224,0,1,224,205,0,145,104,224,245,11,
-161,106,97,72,224,172,2,97,185,224,246,2,128,148,80,171,224,175,4,196,
-68,162,252,242,122,0,160,65,64,231,224,255,1,128,43,128,5,224,48,5,
-224,55,1,100,82,164,87,224,6,3,225,151,10,224,196,1,224,88,1,130,
-15,193,124,227,148,18,224,169,2,128,44,225,175,9,100,91,225,113,2,224,
-182,9,224,175,5,224,127,0,166,253,160,176,162,163,224,147,1,128,107,134,
-202,2,95,52,51,96,202,128,6,225,142,1,231,65,0,128,15,100,35,128,
-10,225,4,16,224,31,0,227,157,6,0,54,149,160,224,235,1,228,219,10,
-181,255,226,149,2,96,247,236,238,0,229,94,2,1,64,64,84,97,130,185,
-225,59,1,224,242,2,161,76,227,102,5,1,85,32,237,58,1,227,45,8,
-226,65,3,231,119,6,224,95,12,225,13,2,226,218,9,224,105,2,224,32,
-2,227,244,16,225,52,31,97,197,243,195,9,98,35,225,56,18,224,221,8,
-224,22,2,225,198,7,98,104,227,171,17,226,142,5,66,64,96,23,228,143,
-0,230,254,0,64,92,128,6,134,213,244,176,0,133,38,226,140,0,128,27,
-225,108,0,163,109,224,63,3,128,242,71,97,224,67,15,0,67,135,55,224,
-70,9,226,5,0,229,0,5,226,189,15,227,193,8,195,104,131,174,165,1,
-228,202,20,161,197,228,179,3,160,162,132,182,195,119,225,169,5,228,205,2,
-160,60,1,50,52,64,113,193,86,250,99,12,6,92,56,38,32,92,56,38,
-199,82,153,223,183,13,248,50,0,164,104,128,150,0,82,224,10,1,224,194,
-13,228,101,2,227,27,1,194,53,227,18,4,192,20,128,204,226,179,5,174,
-54,224,26,8,231,161,2,98,120,64,164,246,98,0,132,160,65,199,138,8,
-134,120,248,74,3,64,23,248,87,1,99,128,96,4,161,181,164,229,128,250,
-0,57,96,7,1,50,50,87,125,164,213,134,207,96,112,0,49,104,1,2,
-95,53,56,152,31,230,221,0,230,56,3,98,65,139,236,119,205,183,90,249,
-56,0,192,40,86,199,187,25,1,50,51,64,236,64,225,64,20,0,54,128,
-20,232,119,2,0,52,232,23,6,67,123,66,20,64,169,1,49,57,64,4,
-236,65,1,0,54,64,11,0,35,135,153,2,50,48,50,233,116,2,12,103,
-101,116,82,97,119,32,102,97,105,108,101,100,129,252,225,72,3,1,95,50,
-155,181,64,130,155,86,7,94,71,69,84,82,65,87,32,64,17,189,81,64,
-43,155,183,65,2,64,24,0,51,128,42,5,102,108,117,115,104,98,96,42,
-154,18,3,95,50,51,56,224,212,2,153,248,5,85,32,75,50,32,65,183,
-196,220,174,1,51,56,64,54,0,55,152,34,226,94,0,224,223,8,3,95,
-49,55,55,249,150,2,225,13,25,0,50,76,84,193,9,99,25,102,250,253,
-121,15,12,83,97,118,105,110,103,32,99,97,99,104,101,32,97,30,3,95,
-49,50,51,64,159,76,63,0,53,97,34,1,51,48,197,5,64,141,1,55,
-32,192,16,64,191,189,21,3,49,55,55,54,96,207,129,219,160,172,204,59,
-64,150,91,237,1,95,52,145,147,228,80,6,97,95,69,13,1,49,50,96,
-234,133,102,192,60,2,95,51,48,74,76,1,55,55,96,58,231,5,10,64,
-27,125,231,0,50,91,207,160,151,130,78,160,135,121,173,97,194,160,46,64,
-39,64,37,129,241,11,73,79,46,115,101,114,105,97,108,105,122,101,96,196,
-129,246,19,94,97,100,100,95,108,122,55,55,95,99,111,109,112,114,101,115,
-115,111,114,96,30,129,252,7,85,32,75,51,32,75,52,32,93,43,224,1,
-5,233,250,1,192,141,162,28,3,48,32,95,51,92,129,3,95,51,54,49,
-94,47,67,220,160,234,96,23,65,95,77,173,0,80,197,19,0,51,169,104,
-0,55,100,251,0,75,130,183,128,66,65,121,192,94,220,95,165,71,126,192,
-1,95,52,65,198,0,52,96,86,64,35,219,192,226,20,1,226,21,18,9,
-69,120,99,101,112,116,105,111,110,58,130,19,64,65,64,85,128,65,98,2,
-96,132,1,52,48,64,143,0,56,93,178,228,197,0,224,229,6,0,52,145,
-31,194,15,224,25,3,95,186,194,217,231,235,0,129,8,224,255,5,91,104,
-128,172,2,52,48,57,224,167,3,2,46,104,115,128,159,197,133,225,75,2,
-128,114,224,69,1,224,15,1,2,52,50,48,193,25,162,16,67,51,224,194,
-0,97,125,225,104,0,64,23,65,79,0,85,162,76,197,73,227,143,2,224,
-178,0,65,14,1,64,95,129,152,224,31,8,64,102,65,240,224,92,7,239,
-157,5,65,104,219,231,128,188,96,52,77,83,113,61,0,55,80,10,1,95,
-49,97,226,96,44,165,76,6,51,54,57,32,75,32,85,233,106,0,1,95,
-51,132,215,96,35,131,12,237,185,0,239,211,2,64,80,0,52,104,32,0,
-32,69,193,192,61,224,7,3,72,73,166,56,64,14,235,110,5,227,96,2,
-228,136,13,129,100,226,118,4,167,108,226,120,12,14,99,111,109,98,105,110,
-97,116,111,114,115,58,92,49,48,167,173,1,95,54,163,217,253,100,7,96,
-221,131,196,224,221,11,96,155,0,51,116,168,128,30,226,29,2,97,247,0,
-53,66,140,1,49,52,127,247,231,226,4,193,210,191,177,226,185,6,2,49,
-55,53,254,235,1,190,221,227,149,4,193,63,192,83,196,178,192,123,225,53,
-9,0,51,71,123,229,191,6,227,5,5,225,67,35,2,112,105,108,69,213,
-14,117,115,101,100,32,98,111,111,116,32,109,111,100,117,108,165,224,64,196,
-207,211,225,211,1,225,25,18,238,203,2,226,213,12,132,163,226,211,0,128,
-185,0,85,99,36,111,58,195,224,65,12,226,62,38,225,7,4,224,250,25,
-17,116,111,116,97,108,32,105,109,112,111,114,116,32,116,105,109,101,32,64,
-0,128,245,64,121,200,156,4,49,55,54,50,32,122,177,166,237,96,89,224,
-72,2,0,109,228,87,1,129,205,233,124,4,244,55,2,64,14,130,5,64,
-7,137,146,2,95,51,57,64,183,160,181,2,54,56,57,64,4,137,67,2,
-49,55,54,128,65,211,133,66,192,134,110,0,95,64,211,1,57,53,67,202,
-102,246,65,248,0,57,73,10,0,51,106,219,64,40,134,120,167,2,201,242,
-97,82,0,52,166,75,96,166,0,52,235,43,4,141,19,0,73,104,144,0,
-54,134,136,226,208,11,235,109,0,128,213,106,85,138,10,163,58,226,191,2,
-97,171,64,159,194,2,0,53,134,78,130,10,226,11,2,163,15,1,83,39,
-195,72,0,80,135,28,98,116,98,27,161,92,110,29,128,216,64,2,96,24,
-98,46,130,69,2,95,50,50,64,125,114,80,0,64,129,37,2,49,55,53,
-177,59,138,169,245,245,1,129,113,1,49,55,106,122,129,56,233,135,0,71,
-176,73,137,96,21,135,18,0,85,231,185,10,0,58,128,93,132,86,65,108,
-230,85,17,162,194,2,51,53,50,70,66,229,225,0,102,172,74,233,226,175,
-10,2,79,32,35,74,32,128,108,226,150,0,1,95,51,68,84,64,215,211,
-149,194,79,194,254,96,226,226,254,19,17,67,97,110,110,111,116,32,102,105,
-110,100,32,112,97,99,107,97,103,227,242,8,163,152,227,136,1,230,188,0,
-231,111,2,201,72,1,95,52,179,252,65,15,134,149,231,123,2,3,112,107,
-103,34,98,85,64,176,226,192,4,107,237,1,95,52,75,37,64,30,0,54,
-128,30,3,49,55,53,49,73,63,64,230,98,132,97,56,226,136,1,0,50,
-128,107,249,185,0,227,91,0,128,11,1,95,51,67,40,128,31,130,21,76,
-190,182,134,229,93,37,97,184,64,28,232,144,6,142,114,225,27,14,0,52,
-120,156,225,126,19,0,91,64,10,161,112,228,109,3,0,50,67,118,225,231,
-1,163,228,64,237,1,79,32,66,11,0,53,130,11,130,15,2,79,32,35,
-67,245,194,137,224,124,32,132,244,69,245,229,228,8,226,195,13,129,235,77,
-63,65,87,233,83,10,128,54,68,216,0,95,102,7,64,53,136,12,241,159,
-7,226,67,5,99,3,1,95,52,199,178,134,78,78,89,198,78,96,0,64,
-20,203,209,65,177,128,148,225,198,45,225,33,39,108,237,0,100,225,40,8,
-233,153,4,207,38,69,207,0,52,101,207,2,95,49,49,176,133,4,95,49,
-56,51,32,166,155,163,29,133,195,226,140,43,230,226,4,224,197,35,103,216,
-224,195,6,225,234,40,0,45,64,69,128,68,97,215,228,110,35,232,89,3,
-100,119,3,111,117,110,100,204,49,228,113,2,226,54,35,1,49,55,69,72,
-64,0,226,55,1,0,54,138,237,161,105,135,4,102,159,107,18,0,54,110,
-89,171,17,135,1,64,185,132,110,128,50,134,245,69,254,229,228,1,64,23,
-205,55,192,1,228,15,2,0,53,68,15,219,118,128,196,224,192,5,225,98,
-0,193,95,1,95,52,64,136,128,0,224,40,2,249,169,1,248,101,4,226,
-35,37,131,74,193,41,234,14,9,225,163,17,6,112,97,114,115,105,110,103,
-193,149,192,0,211,180,218,68,123,172,224,181,2,148,53,244,59,0,224,173,
-69,226,83,19,64,175,1,101,100,235,251,3,105,160,0,54,81,40,224,189,
-8,224,195,1,224,19,0,160,207,250,99,0,250,105,6,224,200,3,163,43,
-101,244,128,210,224,203,1,236,13,1,211,28,0,54,81,185,1,95,52,150,
-96,154,224,168,143,232,18,1,131,50,128,15,224,225,16,195,48,7,97,109,
-101,32,100,111,101,115,99,58,12,97,103,114,101,101,32,119,105,116,104,32,
-102,105,160,29,225,179,0,161,113,168,37,99,86,232,84,12,64,155,130,220,
-229,252,2,225,48,10,219,180,224,21,6,135,117,227,5,19,226,217,4,251,
-155,4,226,229,1,233,43,12,65,116,79,69,1,95,54,245,227,0,2,95,
-54,56,65,66,231,97,4,117,140,172,124,224,0,1,195,157,224,1,1,158,
-62,224,28,14,189,154,224,28,13,64,1,224,223,20,224,53,16,232,45,8,
-0,54,72,222,224,0,4,168,182,226,150,4,224,62,0,127,13,224,91,2,
-224,35,2,224,114,7,224,26,4,225,166,11,225,175,1,224,235,19,238,208,
-12,229,107,2,97,131,0,52,88,42,0,75,242,178,6,225,231,16,225,240,
-4,228,20,37,207,145,228,20,43,9,116,121,112,101,32,99,104,101,99,107,
-228,26,4,233,82,1,0,54,82,130,0,54,108,108,224,53,1,0,45,64,
-0,224,45,1,224,221,6,225,85,17,225,121,1,226,10,12,231,95,4,160,
-194,238,252,2,160,17,0,54,119,238,205,247,224,0,1,224,81,11,226,208,
-4,226,181,47,226,37,18,226,151,0,224,186,53,224,153,15,64,1,224,192,
-4,224,40,19,224,198,23,224,200,16,225,149,0,224,81,7,224,224,3,108,
-50,224,73,8,230,228,0,224,73,3,224,64,7,224,2,4,224,70,3,224,
-30,10,224,69,1,224,143,12,226,64,1,224,27,7,207,93,224,92,22,192,
-32,229,108,14,128,37,128,93,109,3,224,8,12,232,104,76,227,165,19,6,
-100,101,115,117,103,97,114,231,189,5,0,54,99,153,204,11,224,0,3,243,
-27,2,233,32,10,233,44,4,225,25,0,228,117,6,64,0,96,211,225,30,
-4,224,223,19,235,179,0,225,154,2,134,123,107,120,224,24,6,235,132,26,
-4,100,111,110,101,32,228,96,1,224,141,5,231,179,5,224,91,2,224,89,
-17,0,44,224,76,1,128,42,238,55,2,242,169,2,192,29,232,102,18,2,
-115,32,40,192,74,130,148,224,142,0,224,72,4,224,69,21,1,32,43,192,
-143,224,65,16,224,62,28,224,197,12,78,251,0,49,238,234,1,224,0,5,
-128,111,99,76,226,26,18,226,228,12,233,214,32,1,95,51,124,218,193,100,
-0,57,127,152,233,218,2,4,95,52,48,56,32,224,205,1,10,73,110,116,
-101,114,97,99,116,105,118,101,161,20,64,93,64,88,226,95,8,227,65,45,
-3,108,111,97,100,238,151,10,225,17,0,228,121,1,97,253,195,241,227,67,
-0,192,14,225,16,5,66,254,164,50,139,15,228,60,0,192,165,104,14,224,
-18,0,0,54,152,57,227,118,0,129,33,144,8,241,223,2,64,161,3,56,
-55,32,95,156,158,107,169,250,156,8,226,240,2,246,30,3,229,136,1,97,
-227,224,96,2,72,139,115,159,128,37,255,248,2,88,4,0,57,192,11,224,
-92,1,224,32,2,224,45,4,64,0,126,192,213,12,224,16,11,224,32,8,
-0,83,64,11,0,49,64,150,0,89,244,172,0,212,169,193,15,180,106,64,
-190,80,27,0,55,66,54,128,0,231,50,3,1,95,57,180,158,84,94,226,
-225,0,194,212,193,87,228,47,0,144,107,67,23,129,57,1,95,56,107,11,
-0,64,121,150,252,83,8,224,156,11,249,176,1,171,2,224,10,4,224,186,
-4,65,104,192,0,224,233,11,141,24,194,104,7,67,32,67,32,61,61,32,
-64,119,46,128,86,143,206,245,117,5,225,186,4,224,244,1,81,244,218,106,
-1,53,54,87,9,77,201,2,95,49,55,118,212,175,135,223,19,2,53,55,
-48,64,5,0,56,79,77,1,49,53,76,31,1,49,55,83,29,64,6,151,
-172,0,55,67,67,0,58,128,61,189,81,1,49,53,109,153,1,49,53,66,
-30,1,49,53,113,170,155,172,224,185,0,123,216,3,95,49,50,54,67,119,
-2,55,52,55,224,39,0,227,122,1,2,101,111,102,131,118,64,198,3,95,
-50,49,56,224,136,0,226,203,0,64,118,251,154,0,2,49,50,54,96,70,
-64,123,164,102,99,212,129,182,194,244,1,53,55,68,236,150,40,193,252,0,
-32,206,120,1,49,53,158,182,1,49,53,75,133,64,6,151,131,1,32,79,
-229,19,0,64,114,181,92,224,233,2,1,54,51,64,122,1,55,52,233,197,
-2,224,176,2,97,115,87,1,228,188,5,3,77,97,105,110,96,225,0,79,
-160,170,0,54,88,203,224,36,6,0,109,192,36,160,128,64,127,0,54,128,
-127,68,80,225,106,1,0,49,224,52,3,110,208,96,54,225,143,5,0,52,
-96,234,224,19,1,100,251,129,214,225,233,3,1,51,50,88,129,193,245,4,
-57,53,32,35,52,129,175,1,53,57,64,115,1,54,51,224,24,2,132,64,
-192,13,244,0,1,224,254,2,1,67,39,65,64,64,34,0,56,193,71,132,
-40,224,192,16,3,119,104,101,114,229,209,1,138,163,225,107,11,225,215,0,
-225,113,8,193,115,226,40,1,252,148,0,128,241,135,0,224,9,66,225,74,
-2,224,5,8,98,115,129,78,96,163,0,55,66,94,79,92,2,95,49,51,
-98,205,225,114,7,225,12,3,3,100,97,116,97,129,203,0,49,141,80,96,
-8,64,218,224,88,4,224,99,12,1,49,51,66,209,224,93,19,5,110,101,
-119,116,121,112,162,44,1,49,54,155,12,226,1,10,0,54,144,9,224,101,
-15,99,106,128,45,128,40,0,54,108,71,3,95,49,54,49,65,187,0,54,
-117,164,0,54,100,161,70,120,116,82,245,190,7,166,195,1,57,53,70,195,
-72,153,123,45,161,204,178,111,224,129,17,123,152,224,231,17,224,228,35,0,
-54,186,168,225,173,8,0,53,160,32,0,55,146,116,169,68,192,68,98,2,
-224,147,4,128,229,229,68,4,0,54,96,33,1,54,52,64,174,227,66,4,
-224,119,1,224,68,4,118,233,224,216,19,138,249,160,218,1,55,51,166,173,
-226,25,27,64,17,224,88,3,224,11,27,224,124,6,5,102,111,114,101,105,
-103,132,161,224,152,18,65,234,0,56,73,93,1,54,48,230,18,1,224,47,
-7,4,99,99,97,108,108,224,73,12,3,99,97,112,105,164,13,67,255,98,
-107,224,32,4,4,117,110,115,97,102,196,48,192,34,0,55,102,100,96,15,
-100,151,224,199,5,2,54,49,55,224,64,2,1,58,58,226,27,0,192,52,
-225,53,13,104,92,224,28,13,72,123,227,245,4,106,78,128,54,1,50,51,
-103,52,225,32,6,3,110,102,105,120,128,241,65,232,224,45,1,0,52,66,
-102,224,45,12,0,114,224,227,0,224,92,4,96,147,224,46,10,160,45,96,
-28,96,151,65,120,228,89,2,2,105,103,105,97,160,231,157,6,126,237,0,
-49,105,131,71,124,87,217,123,219,171,163,0,53,87,227,96,161,249,126,11,
-1,67,32,224,32,0,224,33,8,165,143,160,91,65,162,224,36,4,224,0,
-0,227,38,0,154,165,227,38,6,226,218,13,226,229,14,1,54,56,226,193,
-21,3,99,108,97,115,155,94,65,252,96,99,196,33,161,199,228,38,9,0,
-49,107,54,192,164,226,11,16,1,54,48,65,115,130,124,226,125,7,72,183,
-224,33,6,224,232,6,232,242,4,200,177,89,85,103,130,0,57,129,74,224,
-246,17,229,246,22,6,105,110,115,116,97,110,99,229,18,1,164,121,128,94,
-0,55,103,239,224,94,19,229,109,22,5,100,101,102,97,117,108,196,149,99,
-143,231,194,3,70,27,208,57,232,137,2,1,54,48,97,244,228,35,2,101,
-97,109,255,0,50,110,24,159,146,224,103,1,1,40,41,228,95,0,224,73,
-0,194,65,0,48,97,40,78,106,128,222,226,71,6,227,226,17,65,142,230,
-74,31,129,40,228,90,30,193,195,224,119,15,0,50,224,119,21,5,112,97,
-116,116,101,114,197,108,198,197,226,164,15,131,128,225,117,3,78,36,225,117,
-29,64,140,99,1,233,83,7,224,231,18,1,60,45,192,152,174,140,231,29,
-42,224,252,33,132,30,66,71,225,214,9,130,204,161,24,225,141,16,1,49,
-55,95,234,1,56,55,78,21,235,91,1,158,53,2,85,32,83,68,239,83,
-184,2,67,32,60,179,133,224,18,6,79,161,224,18,6,67,147,229,72,4,
-169,164,71,147,1,85,32,229,100,6,128,163,160,27,3,95,54,51,53,99,
-119,248,193,1,224,44,4,157,137,224,44,15,224,42,4,132,154,160,42,0,
-75,65,1,0,49,201,70,101,196,224,174,1,65,148,237,149,5,224,58,3,
-141,28,165,242,194,15,224,116,1,109,149,224,90,0,65,58,222,6,78,188,
-1,35,49,105,32,0,80,142,26,157,237,160,25,111,144,160,24,157,238,233,
-102,8,1,55,57,190,121,73,102,64,39,142,142,160,64,104,225,128,64,64,
-155,1,10,65,143,72,226,104,1,226,119,10,227,113,11,111,53,73,96,128,
-246,231,179,7,126,227,64,131,0,51,226,62,2,5,83,79,85,82,67,69,
-164,115,229,160,4,1,52,57,175,120,236,97,6,224,135,1,230,30,5,98,
-183,174,47,224,158,12,209,223,128,37,112,139,96,85,224,118,5,169,239,98,
-209,69,101,227,65,18,0,97,230,230,0,0,48,205,180,137,40,232,204,22,
-232,105,2,65,238,224,86,7,5,104,105,100,105,110,103,225,18,11,234,139,
-0,133,138,142,60,2,55,51,55,227,179,11,224,100,22,8,113,117,97,108,
-105,102,105,101,100,128,103,65,250,143,248,192,164,237,103,17,1,83,39,114,
-21,1,49,55,84,64,64,6,143,226,0,54,98,186,228,126,20,238,247,1,
-1,54,50,164,171,96,19,229,198,22,137,234,160,95,231,196,13,224,46,4,
-96,238,1,54,50,68,43,64,215,144,93,82,97,81,212,64,17,0,54,226,
-253,0,210,80,64,7,66,29,64,29,142,215,0,90,128,21,192,50,132,198,
-66,90,225,88,1,110,59,0,83,96,141,241,111,1,99,4,149,213,228,181,
-11,128,31,0,90,173,181,135,131,96,0,64,100,131,240,230,98,3,2,55,
-51,49,228,114,3,0,85,106,58,0,73,242,192,0,82,195,128,84,244,111,
-1,114,250,248,75,0,224,30,0,96,142,253,161,3,122,207,64,8,211,8,
-224,16,0,179,82,224,67,1,97,240,192,17,180,210,64,17,144,41,230,209,
-3,64,30,0,80,67,106,241,224,1,179,38,243,223,2,192,10,214,169,67,
-214,241,65,1,128,85,1,49,54,84,164,128,11,226,69,9,180,120,128,41,
-65,35,244,119,1,160,158,133,102,148,254,85,151,118,236,96,50,239,49,4,
-239,18,3,128,250,231,161,6,96,86,128,255,64,10,148,14,246,35,5,96,
-0,65,190,197,149,225,192,5,226,20,2,96,95,232,64,4,96,106,64,209,
-168,202,97,99,129,216,118,237,160,51,232,96,2,224,19,0,232,102,11,151,
-7,0,66,239,233,1,224,211,23,1,95,55,151,9,160,193,134,62,229,112,
-1,238,101,13,235,159,17,166,211,65,187,2,95,49,55,99,129,232,181,21,
-117,141,129,182,97,98,64,41,161,144,132,229,224,78,8,224,126,4,230,133,
-13,224,77,0,1,39,66,66,135,226,140,2,1,95,49,189,249,209,69,84,
-122,0,95,82,234,88,226,2,95,56,56,152,37,192,38,65,18,245,184,0,
-242,137,14,224,5,14,225,229,3,65,21,230,196,6,224,173,0,2,64,95,
-56,67,246,234,110,11,136,119,160,246,225,196,6,1,95,54,75,182,229,52,
-16,165,162,96,36,65,111,1,50,53,96,231,128,51,229,170,1,1,54,56,
-97,4,225,220,4,1,55,50,230,100,0,0,53,129,205,229,91,2,96,65,
-229,226,31,96,56,106,187,230,157,5,229,245,5,224,96,4,3,54,32,95,
-53,85,141,1,95,53,65,152,224,105,24,168,104,224,105,23,183,157,230,96,
-15,0,56,67,184,224,199,17,0,55,137,121,224,139,18,174,123,129,169,224,
-221,18,1,56,51,64,52,129,123,224,110,9,0,49,123,206,227,54,1,224,
-57,9,102,64,224,57,10,66,64,224,56,14,1,49,50,91,126,225,177,48,
-165,103,224,211,5,0,58,128,105,248,206,8,224,210,11,164,15,110,51,227,
-23,7,231,237,13,133,95,196,73,1,49,56,96,146,226,161,4,0,54,64,
-51,234,22,8,227,81,2,2,49,48,54,225,209,13,212,108,0,50,99,7,
-227,82,7,1,49,55,97,129,64,9,233,60,2,0,55,95,53,236,244,7,
-1,46,46,137,54,226,111,13,0,49,96,95,65,38,137,82,122,52,64,14,
-200,137,232,89,3,64,115,97,74,3,55,50,52,32,64,15,136,126,65,2,
-120,194,100,161,1,49,55,65,73,64,29,136,135,161,76,238,60,8,2,79,
-32,35,87,150,100,236,227,184,5,133,205,0,55,105,118,192,8,64,79,168,
-114,228,210,22,1,55,49,117,93,0,55,164,55,1,55,49,172,78,0,49,
-133,76,1,55,49,130,249,2,55,50,49,128,85,135,9,249,42,4,96,71,
-224,145,2,117,44,1,49,55,126,179,225,112,5,176,89,240,253,4,0,111,
-161,111,248,185,12,104,41,0,64,104,200,239,138,26,222,208,1,95,52,99,
-55,168,69,250,93,6,0,50,136,29,96,204,205,83,243,241,12,4,81,117,
-97,108,68,96,157,238,141,12,179,242,222,190,0,85,96,174,128,133,234,124,
-5,104,188,232,155,0,106,23,255,63,12,193,9,192,71,201,3,64,183,104,
-160,1,52,48,64,58,1,50,53,98,25,192,63,66,23,0,54,233,145,0,
-192,0,64,220,230,222,5,231,90,22,1,95,56,108,74,237,18,18,0,105,
-156,98,227,99,0,224,43,4,226,174,5,182,117,228,101,0,224,74,7,2,
-116,104,101,187,168,224,77,59,2,101,108,115,182,206,224,77,1,227,32,4,
-78,20,224,245,14,0,55,84,27,224,245,28,130,144,0,54,74,29,228,49,
-6,1,45,62,162,193,236,194,14,0,58,131,68,97,139,224,132,14,225,122,
-22,1,108,101,244,29,1,131,22,130,32,224,184,20,209,254,129,18,64,132,
-206,5,225,255,13,100,70,224,80,18,1,99,97,161,102,225,179,13,224,45,
-6,190,144,224,177,0,141,13,64,133,190,17,229,194,9,112,20,64,18,226,
-174,6,230,65,3,136,164,150,10,202,53,226,45,5,199,176,226,7,9,1,
-55,49,64,6,224,225,29,224,181,4,128,183,0,54,225,61,18,139,34,200,
-179,107,250,96,136,96,56,133,245,108,96,73,118,0,89,109,97,67,175,68,
-22,76,10,173,224,172,129,68,197,107,186,237,105,3,160,131,166,34,236,132,
-3,72,194,229,58,6,139,83,136,219,133,1,253,241,8,0,95,66,194,2,
-95,54,53,134,220,64,90,238,160,10,1,49,49,224,90,7,231,179,11,170,
-85,237,0,7,231,222,18,236,186,0,254,136,9,197,43,179,123,133,200,0,
-66,160,169,66,248,97,242,79,37,192,195,139,0,225,33,0,166,158,230,244,
-22,224,5,9,226,39,1,0,54,162,99,169,242,224,24,9,143,175,235,68,
-62,98,168,192,24,235,68,24,139,65,235,58,29,0,55,114,185,192,19,235,
-39,21,1,49,55,102,90,224,171,16,104,156,96,76,253,158,3,1,55,48,
-246,82,2,224,173,0,224,96,15,72,236,224,96,17,0,48,98,68,224,96,
-7,64,118,225,14,18,130,15,225,111,31,154,63,130,105,224,84,18,3,54,
-32,95,56,70,114,0,52,142,162,99,25,228,54,20,7,112,114,105,109,105,
-116,105,118,229,29,0,157,75,66,141,232,95,20,2,115,116,114,180,12,232,
-95,6,193,191,188,82,168,2,160,82,213,222,2,80,32,35,105,162,0,85,
-105,150,65,7,138,90,110,252,97,153,0,67,186,13,145,32,3,95,52,48,
-56,234,68,4,96,54,134,18,67,117,64,79,100,49,150,45,64,252,227,72,
-2,170,171,225,219,12,136,150,1,49,54,102,148,233,239,4,0,53,232,164,
-3,0,52,234,188,0,226,236,3,64,106,0,54,224,132,4,96,235,160,132,
-171,48,228,148,3,67,47,236,31,1,224,9,21,242,96,12,128,120,241,202,
-6,102,46,132,116,160,59,224,13,20,197,175,225,4,0,228,211,0,142,221,
-209,135,165,209,160,6,194,132,224,147,14,230,181,0,224,94,11,66,185,240,
-76,8,236,185,12,224,70,9,225,145,0,128,70,132,169,236,244,13,235,48,
-9,224,213,2,241,116,9,160,101,224,169,3,1,95,56,106,224,224,227,9,
-254,8,5,107,217,226,10,5,224,74,9,1,49,55,110,50,224,243,38,224,
-240,3,64,66,108,223,224,239,16,224,237,4,192,234,224,226,3,66,135,214,
-34,2,80,32,35,65,200,163,115,249,196,4,101,96,162,182,230,132,11,229,
-22,13,0,50,163,40,228,245,3,175,165,0,54,153,36,192,218,224,54,5,
-0,56,234,182,22,234,49,15,224,125,7,99,185,234,33,0,65,147,236,50,
-13,224,52,1,0,57,134,130,0,54,102,81,160,41,225,236,9,239,142,4,
-231,34,5,139,141,245,31,11,64,21,0,57,129,65,243,154,11,228,113,2,
-250,248,8,228,155,15,0,53,127,124,225,95,6,80,128,226,17,7,188,235,
-96,132,223,223,225,178,13,0,51,174,197,253,138,29,255,220,6,213,69,224,
-123,21,0,58,129,8,187,173,228,167,0,97,32,0,54,233,238,8,154,42,
-129,224,227,191,9,140,226,128,83,133,237,99,34,229,31,14,224,186,3,3,
-119,104,101,114,237,88,0,66,70,236,223,12,64,87,134,43,229,119,4,100,
-233,96,157,66,1,246,24,5,0,39,67,93,0,80,64,14,64,64,99,102,
-70,171,224,137,1,227,207,1,64,93,0,54,163,102,235,122,17,228,108,45,
-224,114,13,64,113,203,177,70,142,64,46,99,239,98,184,231,99,2,195,166,
-86,88,64,29,241,110,5,225,225,5,255,239,1,191,73,72,16,128,249,64,
-58,196,47,3,54,57,48,32,64,15,195,134,178,39,0,56,135,95,67,243,
-64,29,227,27,4,229,27,8,231,226,3,227,120,5,65,153,64,6,202,190,
-87,7,0,58,128,86,231,100,8,0,57,236,84,14,141,114,167,12,248,186,
-3,144,171,248,183,11,154,4,0,50,82,56,177,151,161,52,236,156,30,96,
-163,130,185,0,85,236,25,1,255,149,1,0,83,224,18,6,122,27,233,78,
-4,139,200,107,182,137,79,160,126,224,39,7,224,38,3,91,198,224,38,0,
-81,220,184,64,64,140,201,26,162,7,76,6,233,193,6,130,124,117,212,64,
-113,1,85,32,224,164,6,65,5,224,48,4,129,22,224,48,0,220,20,224,
-161,12,224,37,10,225,39,0,0,54,226,132,6,236,142,26,67,95,97,224,
-128,180,224,19,1,96,80,195,10,99,12,97,144,102,227,104,69,160,24,96,
-26,135,125,141,190,221,111,104,177,227,72,0,129,87,96,22,162,239,233,7,
-10,160,139,75,151,64,40,186,180,65,57,92,224,154,179,200,38,66,161,128,
-224,0,49,97,155,203,39,98,110,64,31,160,24,171,74,64,79,227,58,17,
-229,181,7,2,114,105,118,223,169,225,77,0,127,153,150,240,101,167,228,81,
-5,228,225,3,169,248,164,225,230,82,0,229,63,14,0,55,227,129,9,0,
-54,70,183,234,210,11,233,34,6,228,253,13,167,125,183,244,0,55,128,137,
-229,22,1,131,254,0,55,65,51,230,45,6,0,67,159,254,242,184,0,0,
-54,95,7,99,120,170,222,227,242,1,230,45,18,245,201,11,1,54,55,105,
-32,230,159,9,149,61,0,80,129,205,69,121,64,43,226,214,0,187,239,96,
-25,64,132,2,95,49,48,137,159,1,95,55,79,106,2,79,32,35,92,83,
-241,36,3,96,215,70,229,64,86,107,134,97,62,130,65,224,2,0,0,83,
-160,49,128,214,128,1,64,37,98,52,4,52,57,32,95,52,102,239,224,36,
-9,64,1,127,77,96,0,157,209,145,195,1,66,39,64,195,224,5,10,224,
-114,4,96,15,254,211,2,98,215,165,61,126,214,254,212,5,128,38,254,213,
-2,157,253,254,218,2,203,230,255,210,3,64,96,128,108,224,27,1,160,125,
-224,119,3,96,122,160,221,72,215,96,83,172,185,0,83,65,2,1,51,32,
-145,106,128,32,1,57,53,118,196,97,128,113,12,2,95,55,52,106,162,192,
-32,0,49,89,5,191,134,172,247,255,76,8,134,13,158,9,0,95,67,75,
-190,38,0,90,98,218,209,233,66,239,96,8,96,16,0,53,130,246,142,103,
-2,52,51,56,79,160,67,79,0,79,187,89,129,254,96,169,253,60,0,64,
-0,1,95,52,101,250,160,159,64,83,64,45,87,72,1,51,53,193,225,224,
-79,3,225,12,3,118,115,247,163,9,18,66,97,100,32,71,65,68,84,32,
-114,101,115,117,108,116,32,116,121,112,162,244,224,59,1,0,50,72,166,3,
-54,55,52,32,67,77,1,95,57,78,208,2,95,51,54,132,217,123,236,0,
-54,75,118,192,51,161,155,99,121,160,0,66,196,0,54,164,169,0,50,64,
-131,0,52,100,126,96,53,131,137,224,160,7,71,244,0,48,227,7,0,194,
-52,65,100,128,142,128,126,99,98,224,217,15,202,132,225,158,0,128,57,96,
-190,96,95,0,49,227,103,2,2,95,49,51,102,250,96,146,64,174,134,38,
-101,168,96,179,0,64,91,9,0,85,130,254,96,140,1,50,54,68,5,198,
-175,98,166,97,247,195,35,0,95,64,25,96,123,65,163,71,127,96,108,121,
-107,225,90,0,64,186,0,51,136,226,208,77,224,76,5,224,70,8,0,75,
-224,70,3,224,67,17,224,49,4,0,65,224,120,2,96,0,97,212,0,55,
-132,161,65,215,96,113,223,137,224,170,0,224,108,0,224,68,1,192,60,66,
-93,160,58,97,45,245,198,9,0,54,65,160,229,95,6,236,36,13,229,92,
-6,102,124,96,216,224,77,4,100,61,161,53,233,197,8,237,13,5,155,173,
-224,108,5,248,210,2,225,194,1,224,96,4,227,47,4,129,225,233,195,4,
-224,26,1,196,121,224,11,0,192,8,226,240,1,129,21,203,64,71,227,246,
-57,7,250,189,13,237,160,15,142,161,177,84,0,54,97,12,161,98,96,240,
-224,82,30,224,93,11,101,53,162,107,96,8,192,111,129,131,132,112,64,24,
-241,39,6,224,142,10,104,172,64,15,143,34,128,15,65,7,253,97,9,2,
-54,54,55,133,19,224,19,0,109,62,0,54,86,249,64,6,224,127,0,225,
-131,4,97,95,64,80,204,78,225,88,11,225,55,1,96,187,194,34,1,54,
-54,181,143,224,31,3,73,82,237,106,11,176,9,226,85,3,224,54,1,76,
-95,75,29,1,32,89,129,53,152,250,166,137,128,181,134,44,229,1,3,201,
-102,237,240,15,226,194,6,136,231,143,214,233,146,2,239,103,20,135,107,233,
-192,5,160,207,165,157,65,58,202,48,224,136,16,97,154,96,7,0,48,106,
-178,64,87,224,49,30,65,182,64,49,219,150,138,101,245,62,2,125,145,128,
-148,158,207,234,62,5,108,7,64,64,245,170,6,72,70,234,173,0,98,93,
-64,36,0,54,160,36,172,180,94,250,64,12,0,52,128,131,181,104,209,111,
-225,93,3,234,252,4,162,28,99,253,234,240,20,153,148,65,149,97,104,234,
-247,12,67,9,224,117,2,225,49,17,247,193,0,128,125,179,23,227,170,22,
-130,97,66,83,227,143,9,192,69,161,8,224,15,0,64,148,239,199,5,224,
-226,5,232,250,8,241,210,2,97,32,228,145,13,128,55,192,42,244,206,18,
-162,161,64,142,235,130,0,64,152,129,185,0,54,112,29,64,25,228,31,7,
-66,193,229,161,6,127,43,132,20,239,96,8,251,95,6,92,152,64,235,135,
-157,155,92,64,104,194,252,176,134,0,53,160,88,144,54,64,95,128,29,1,
-53,55,64,150,64,22,224,150,7,66,225,230,128,11,132,177,224,157,15,252,
-155,7,98,75,226,157,3,224,5,8,228,109,2,251,188,100,238,5,12,128,
-13,167,5,224,130,4,86,92,67,210,96,8,140,197,227,53,3,96,60,251,
-217,27,131,127,192,19,100,25,97,38,0,54,97,38,7,83,32,85,32,95,
-50,48,50,226,86,2,4,101,84,117,112,108,237,156,0,0,67,104,183,64,
-239,64,178,0,90,80,234,0,53,126,172,128,69,242,252,2,250,95,0,96,
-42,129,130,250,201,11,6,108,105,116,101,114,97,108,64,96,240,234,13,224,
-18,5,64,118,240,215,4,135,17,186,240,134,18,103,13,64,36,0,95,91,
-140,96,173,200,88,224,34,18,172,142,1,64,83,173,11,160,112,64,22,224,
-53,15,0,56,205,232,224,145,4,129,104,224,145,20,0,57,100,217,128,0,
-65,33,240,235,3,225,55,1,131,188,96,21,65,9,160,21,247,103,5,165,
-97,132,36,229,255,1,91,176,233,146,8,64,39,167,154,224,41,15,0,61,
-224,41,1,64,161,64,111,247,78,5,228,115,5,224,46,1,180,155,99,202,
-212,155,64,66,224,58,16,224,147,1,244,214,0,203,83,64,58,230,216,5,
-0,54,93,72,226,225,24,169,163,0,50,226,225,3,99,178,64,80,175,217,
-110,185,233,11,2,96,234,0,53,228,106,8,76,233,229,107,29,138,204,228,
-142,14,3,83,32,95,53,80,83,69,37,227,37,0,67,199,97,215,108,240,
-229,245,0,227,239,3,144,78,141,222,66,89,66,142,172,57,253,239,7,128,
-244,244,160,2,103,218,197,139,172,95,2,95,49,48,149,186,169,52,69,74,
-108,14,224,126,13,137,76,64,170,231,219,17,225,127,5,128,30,241,212,4,
-4,102,111,114,97,108,99,215,225,228,2,123,14,231,71,0,159,85,199,147,
-160,35,65,30,160,33,231,249,12,69,44,226,26,3,69,46,232,99,0,103,
-89,64,36,199,137,232,178,3,65,158,66,28,168,187,96,39,251,110,0,228,
-155,11,4,76,73,100,101,110,121,127,225,117,6,130,97,163,226,225,166,1,
-177,143,0,83,129,177,145,148,65,100,1,53,49,66,3,0,50,96,232,66,
-39,64,132,0,67,64,7,98,48,171,195,179,94,160,86,161,168,139,232,112,
-189,3,64,64,64,75,64,163,128,30,161,159,228,12,5,233,190,5,104,157,
-64,36,227,193,6,66,32,64,36,0,51,100,79,64,50,225,1,17,0,85,
-225,1,48,0,39,70,25,64,142,96,246,224,213,36,64,160,185,181,1,54,
-51,177,192,226,123,3,102,252,75,228,226,67,0,99,235,104,181,97,74,144,
-167,224,19,2,64,84,228,0,0,129,8,231,191,5,128,145,226,111,4,213,
-248,69,176,71,26,250,161,3,244,202,5,236,200,0,64,152,228,90,1,224,
-39,13,96,243,238,240,7,224,42,11,132,89,224,81,7,228,164,2,1,53,
-57,249,42,2,147,27,249,85,2,65,169,148,190,109,44,225,184,0,96,127,
-113,95,0,90,161,183,65,77,84,35,0,49,84,55,0,35,195,141,128,131,
-199,20,97,85,130,61,162,166,239,178,7,65,41,199,254,147,182,0,85,96,
-46,65,23,64,27,131,181,112,220,64,14,198,241,65,129,0,49,175,27,96,
-12,103,243,96,13,0,79,96,241,2,80,32,95,86,72,155,235,64,32,71,
-114,64,65,255,40,11,224,5,15,225,233,2,0,53,92,201,247,191,19,3,
-109,111,100,117,168,240,66,94,174,13,235,156,11,145,196,64,36,138,31,0,
-48,166,128,165,147,234,12,29,90,219,224,19,0,161,76,236,11,15,96,97,
-224,96,0,229,29,9,64,57,224,46,3,66,148,202,208,224,26,11,225,5,
-18,6,112,97,116,116,101,114,110,229,190,0,134,61,224,152,21,224,78,18,
-0,116,212,235,224,142,1,224,190,25,114,250,249,105,20,255,31,4,128,163,
-66,26,133,21,74,157,64,1,151,114,64,23,229,8,6,67,139,229,45,1,
-175,17,64,157,224,36,4,129,114,83,195,64,29,232,151,0,229,45,11,136,
-211,229,41,19,138,203,87,206,69,9,0,83,163,121,102,3,245,89,12,243,
-76,1,128,47,195,171,224,49,7,233,64,5,229,110,0,96,53,229,113,0,
-97,64,139,242,224,23,15,129,2,252,164,6,105,124,231,60,10,65,26,231,
-60,18,0,81,230,59,28,192,215,231,48,56,224,211,22,132,155,0,79,226,
-62,2,2,99,97,115,98,147,224,19,4,3,108,97,115,115,224,20,7,3,
-100,97,116,97,224,19,8,226,123,1,224,22,5,251,252,1,224,23,4,0,
-111,224,17,7,1,101,108,224,125,9,233,50,1,224,21,6,2,101,105,103,
-99,138,224,22,3,1,105,102,224,17,8,3,109,112,111,114,224,146,8,0,
-105,224,57,9,3,110,102,105,120,224,20,12,224,123,8,96,21,0,114,224,
-21,9,4,115,116,97,110,99,224,191,8,1,108,101,224,125,8,229,77,1,
-224,21,3,3,110,101,119,116,164,17,224,22,3,0,111,224,210,8,228,134,
-2,224,22,4,6,114,105,109,105,116,105,118,224,65,8,2,116,104,101,224,
-44,8,224,105,11,252,113,0,181,99,224,0,11,66,53,134,181,132,71,122,
-104,0,85,196,76,69,64,228,39,2,243,122,2,66,142,236,48,7,1,46,
-46,64,108,228,224,6,215,61,103,198,230,173,2,108,193,169,161,228,160,2,
-226,214,0,240,49,1,64,135,234,193,20,5,83,121,109,79,112,101,97,192,
-239,93,8,67,70,227,151,4,131,87,227,151,0,64,23,232,25,3,103,202,
-233,200,1,128,191,1,67,32,137,199,0,79,148,103,225,78,1,235,47,50,
-99,238,105,253,122,255,132,6,228,7,17,0,49,136,164,234,98,33,97,54,
-235,57,0,225,54,11,228,186,36,64,185,224,169,2,228,143,30,134,139,232,
-247,0,74,88,96,204,72,157,236,247,12,74,239,138,135,118,251,237,186,14,
-183,16,237,231,4,0,67,238,203,4,128,127,64,103,169,128,226,186,1,105,
-104,70,148,1,53,56,106,72,106,90,187,139,225,6,10,142,105,234,75,4,
-225,213,0,230,168,4,193,129,206,154,160,130,246,123,6,73,106,226,237,0,
-96,54,64,36,0,54,230,139,10,246,123,0,64,37,64,29,0,54,226,170,
-5,1,64,35,111,109,1,95,56,78,244,64,38,242,129,20,0,81,227,36,
-49,143,146,231,200,1,227,40,2,129,10,224,23,4,124,37,227,65,19,254,
-145,2,227,97,52,231,83,11,227,84,53,226,204,18,97,96,133,12,229,97,
-3,145,34,224,17,3,1,60,45,224,17,7,133,21,224,17,3,136,239,0,
-79,144,43,77,188,64,238,128,14,232,222,0,193,1,64,119,132,252,127,158,
-69,8,200,57,110,121,64,31,131,229,115,121,237,70,1,147,223,237,44,3,
-129,24,0,48,67,69,250,226,3,236,230,7,64,81,131,183,0,83,195,248,
-1,49,56,110,107,96,31,65,76,96,13,97,36,129,47,76,208,202,222,131,
-34,130,94,64,25,129,106,1,53,56,140,151,113,160,225,11,3,4,101,109,
-112,116,121,230,163,2,96,80,224,96,2,191,171,0,83,96,61,91,249,252,
-97,3,87,160,224,21,0,64,38,192,24,160,147,99,191,182,207,0,53,141,
-96,161,6,1,49,56,175,88,107,166,96,17,77,205,192,17,0,58,128,7,
-129,117,108,254,2,49,56,51,143,163,65,43,96,15,65,130,96,83,64,44,
-132,104,239,195,8,237,18,15,224,12,0,164,246,0,48,132,37,103,124,64,
-190,0,90,161,90,224,7,3,242,175,0,76,134,167,175,160,48,231,178,3,
-67,69,238,50,3,66,80,167,102,64,29,164,36,244,6,3,0,48,99,51,
-239,250,1,224,9,1,96,207,229,117,0,67,63,108,39,4,57,53,32,95,
-56,247,208,3,238,3,28,240,195,1,248,9,12,96,107,229,165,0,1,64,
-85,226,35,2,1,40,41,104,87,224,91,17,238,87,4,224,72,18,1,91,
-93,224,72,15,184,56,128,11,163,244,167,88,65,53,131,249,244,202,17,166,
-144,166,139,64,49,131,179,241,136,3,96,19,230,245,13,64,52,225,149,6,
-240,247,3,67,17,227,161,2,66,173,0,52,79,224,251,175,2,64,68,131,
-180,227,62,5,68,5,96,78,0,56,117,254,0,90,240,132,17,0,67,124,
-9,240,127,3,64,85,64,134,226,153,2,224,4,4,194,114,112,108,231,230,
-10,0,53,86,151,224,240,12,1,53,57,130,239,231,230,30,224,88,5,102,
-136,231,234,4,64,106,126,50,239,109,10,64,108,131,47,97,54,224,90,0,
-136,5,128,85,232,6,3,161,60,94,13,88,65,1,57,54,70,152,0,54,
-86,96,70,125,102,129,64,38,232,45,9,132,231,232,45,4,231,172,3,96,
-0,64,140,227,158,0,244,137,12,233,147,39,244,125,10,233,146,20,100,14,
-166,44,1,66,39,167,116,165,116,0,53,97,82,239,108,2,246,164,1,153,
-214,101,75,226,116,4,96,90,97,91,229,183,8,65,92,65,220,64,5,226,
-130,1,193,204,192,2,0,66,224,177,0,128,237,224,190,2,230,84,3,197,
-222,230,88,22,224,156,3,226,232,40,218,136,234,43,78,234,41,4,234,40,
-9,81,244,197,183,0,56,92,160,1,49,53,67,208,1,64,80,96,17,0,
-57,64,80,249,20,7,99,45,102,252,1,85,32,158,147,128,72,132,7,0,
-75,66,179,0,58,128,59,4,10,65,32,80,32,64,11,203,15,225,173,12,
-129,34,113,185,160,78,128,40,198,128,225,188,5,97,185,192,30,97,184,225,
-198,77,133,207,97,196,224,22,0,225,184,1,194,86,64,220,250,252,1,226,
-110,0,1,90,32,224,74,1,64,34,0,54,96,34,90,66,96,14,245,202,
-0,3,54,32,95,55,180,207,71,231,64,27,131,39,0,85,149,202,96,21,
-161,57,225,55,4,118,145,225,50,1,193,25,193,19,128,7,97,255,224,27,
-0,64,59,119,96,131,83,200,167,232,159,0,186,205,192,39,96,125,174,254,
-100,49,66,152,229,228,8,226,233,12,0,80,225,45,6,1,95,49,143,126,
-138,30,234,45,4,128,39,143,163,98,87,0,50,232,196,1,64,128,194,156,
-192,20,225,8,8,225,217,0,192,182,130,12,193,229,3,51,32,64,89,125,
-228,64,104,64,39,66,62,194,88,64,7,0,89,233,217,4,67,161,129,30,
-134,1,128,0,194,80,73,161,224,29,1,104,143,97,167,192,37,96,17,195,
-166,192,143,96,0,73,183,224,244,1,231,85,4,64,229,181,58,78,55,161,
-144,0,58,128,110,70,171,134,170,228,213,2,227,32,22,227,20,0,229,8,
-3,96,24,72,90,0,55,64,102,224,51,7,64,15,224,45,2,128,21,105,
-119,224,47,8,235,0,4,166,123,150,190,64,0,64,182,245,196,0,1,55,
-53,96,5,105,186,67,135,128,5,64,34,131,49,2,35,49,48,192,0,68,
-36,64,40,162,234,64,144,0,80,128,42,166,182,0,51,227,2,14,225,248,
-6,194,139,97,215,64,16,129,248,163,15,129,58,224,225,1,239,206,1,138,
-227,128,0,0,95,98,141,105,195,64,128,131,143,100,198,64,90,99,155,0,
-73,128,155,131,29,0,85,96,26,130,168,3,85,32,75,52,96,113,64,18,
-240,132,3,193,101,224,13,5,70,241,112,146,96,135,128,85,0,54,200,248,
-224,39,1,99,201,65,145,96,20,104,30,64,157,64,61,135,69,97,23,0,
-52,80,195,96,20,132,162,174,165,160,53,76,76,0,52,76,66,227,231,0,
-227,75,1,128,57,161,64,155,222,247,44,9,8,65,109,98,105,103,117,111,
-117,115,159,157,160,46,0,54,200,190,98,250,0,95,187,169,130,9,64,218,
-164,245,233,112,2,0,54,96,7,0,52,72,156,170,78,224,121,23,4,58,
-92,49,48,38,224,116,3,224,41,16,11,32,32,102,111,117,110,100,58,32,
-32,32,32,160,48,132,31,224,119,0,104,177,97,250,64,16,140,82,169,117,
-238,29,3,2,69,79,70,238,27,4,224,114,7,80,78,0,48,198,42,224,
-145,21,8,101,120,112,101,99,116,101,100,58,160,145,64,252,0,53,77,195,
-3,49,50,56,51,241,194,1,225,53,1,131,28,241,43,8,64,162,224,18,
-6,100,143,224,18,5,64,149,130,47,224,19,2,67,46,65,133,224,150,1,
-3,84,82,97,119,161,32,224,24,5,160,248,192,24,224,218,19,2,123,45,
-35,160,210,81,136,65,78,224,246,2,2,35,45,125,192,71,224,163,8,66,
-158,224,162,6,66,5,224,161,6,1,73,110,202,145,224,164,8,3,84,66,
-114,97,151,31,128,27,165,130,225,29,6,102,147,224,18,5,142,76,224,121,
-4,65,125,64,93,67,41,242,230,6,126,35,224,23,11,67,172,231,223,1,
-224,151,1,6,125,32,108,97,121,111,117,160,180,225,41,2,224,23,4,128,
-111,99,42,0,95,72,10,2,95,54,52,131,176,224,25,4,224,20,1,225,
-225,7,224,195,9,137,138,192,57,1,49,53,163,131,224,18,2,0,51,103,
-64,242,84,0,129,218,235,123,44,96,0,66,166,0,54,229,173,0,133,149,
-0,52,68,0,232,19,2,235,224,2,98,64,80,106,131,43,2,53,54,52,
-64,82,115,122,0,54,160,209,96,4,100,189,167,19,68,217,96,95,0,89,
-105,180,135,3,167,92,136,102,64,83,251,147,0,234,70,0,234,3,2,161,
-54,244,60,4,167,145,224,46,30,99,77,96,32,160,42,224,39,15,129,89,
-160,85,224,39,17,101,102,224,206,5,161,200,172,171,244,206,3,128,83,70,
-183,156,209,96,176,0,66,65,57,224,39,3,0,52,132,62,97,87,68,74,
-64,29,0,53,64,183,98,21,192,236,224,111,25,224,71,0,192,110,96,204,
-224,110,15,128,230,224,77,5,102,100,1,95,49,86,83,82,32,188,208,0,
-53,160,49,227,165,0,96,52,64,163,68,208,165,157,158,6,96,182,64,201,
-72,56,153,231,0,49,224,9,0,2,56,51,32,160,209,64,32,0,54,80,
-5,226,144,0,3,95,52,53,50,227,164,7,160,118,160,255,144,142,225,150,
-5,0,53,84,204,96,29,150,104,192,29,103,98,110,223,225,58,31,139,64,
-193,58,226,5,12,96,243,224,158,1,3,95,52,52,51,97,228,130,96,224,
-50,35,101,205,226,15,5,224,41,13,135,90,64,232,250,220,0,130,83,64,
-8,161,29,192,223,151,103,160,251,1,49,53,64,149,108,92,224,245,19,137,
-245,64,23,193,90,170,141,64,8,128,206,130,140,132,200,232,2,1,72,236,
-64,25,80,228,192,71,228,23,2,194,191,170,117,161,162,224,138,19,0,51,
-194,148,64,121,242,45,4,129,217,194,26,1,53,50,226,83,9,192,101,128,
-176,3,95,49,50,50,69,12,64,86,230,244,12,4,108,105,110,101,32,230,
-245,0,162,119,1,51,51,111,86,98,119,132,50,173,125,224,211,0,76,141,
-100,236,165,14,0,50,124,125,160,12,0,54,116,151,3,67,32,95,56,84,
-86,160,145,129,211,0,52,128,170,129,30,67,37,224,37,0,96,102,128,43,
-197,59,110,59,225,51,32,228,94,29,165,48,225,188,7,97,165,0,50,104,
-197,101,176,1,79,32,249,62,2,225,203,10,228,139,3,128,153,130,233,96,
-9,162,59,204,203,236,184,0,195,19,133,169,137,102,119,61,1,53,50,66,
-218,228,98,8,160,92,205,225,245,27,0,98,103,96,78,129,14,224,227,6,
-1,64,35,81,130,64,86,0,51,161,187,226,138,26,196,69,128,123,224,21,
-7,2,49,53,51,64,50,225,131,24,129,175,229,115,23,224,38,0,0,83,
-108,167,225,170,16,128,38,65,156,65,87,66,190,154,224,160,196,195,251,0,
-52,64,237,69,169,66,89,97,19,224,70,9,179,211,224,37,37,80,244,224,
-37,17,116,23,227,125,7,232,145,0,96,0,64,156,229,182,0,251,253,0,
-193,83,224,233,7,193,44,65,23,224,29,4,101,185,130,52,115,119,230,99,
-4,98,19,234,214,19,17,85,110,114,101,99,111,103,110,105,122,101,100,32,
-105,110,112,117,116,203,185,233,94,5,98,235,225,108,16,98,49,192,194,129,
-222,128,135,141,138,96,234,66,149,205,140,67,238,224,161,2,224,142,1,19,
-73,108,108,101,103,97,108,32,67,104,97,114,32,108,105,116,101,114,97,108,
-170,71,225,119,18,142,9,225,119,17,226,208,1,0,95,103,135,224,201,23,
-226,54,7,225,234,42,224,114,9,225,193,2,227,173,10,227,132,16,97,69,
-133,123,227,250,0,167,226,241,29,4,247,197,1,112,176,228,178,7,255,204,
-6,96,108,232,143,38,165,119,115,193,224,0,2,2,95,49,53,93,92,139,
-186,96,90,1,50,32,79,220,224,121,0,224,194,4,1,49,53,108,103,224,
-195,7,224,181,3,81,128,224,181,6,224,180,69,224,75,0,64,63,225,103,
-3,64,22,166,169,224,32,1,165,204,225,162,17,75,190,145,54,66,81,101,
-2,243,112,1,89,189,232,188,4,150,85,201,67,0,85,236,104,1,115,194,
-64,237,96,105,90,171,208,48,65,76,64,100,0,51,236,131,0,225,79,10,
-198,107,230,113,0,194,24,195,144,224,16,2,234,236,14,225,35,0,224,39,
-2,0,83,218,128,224,20,0,64,1,179,134,224,115,4,129,205,147,141,224,
-123,2,212,176,234,108,7,203,83,228,240,0,0,52,105,174,229,236,2,130,
-237,0,85,226,246,1,119,174,192,238,64,0,192,44,96,171,193,104,162,129,
-226,39,53,65,25,181,19,224,201,1,169,92,65,119,192,228,133,119,231,137,
-1,226,201,0,162,199,130,86,1,52,50,144,187,245,103,1,128,82,194,210,
-192,52,224,174,6,192,194,192,179,224,191,32,227,163,6,224,166,2,228,48,
-14,196,43,128,168,160,181,227,111,17,224,95,0,66,149,217,208,234,126,0,
-136,115,193,21,233,77,2,1,50,50,139,10,0,50,106,19,114,9,242,133,
-3,1,108,101,112,50,224,18,3,3,119,104,101,114,112,249,224,20,3,1,
-100,111,224,17,7,1,111,102,242,190,2,224,177,0,105,62,194,226,128,110,
-224,50,1,0,105,96,50,133,226,90,33,249,247,8,64,46,186,60,145,48,
-227,44,5,1,49,50,134,1,96,32,142,6,224,0,0,225,232,1,136,71,
-165,234,0,53,161,92,96,10,0,55,148,253,149,71,67,250,97,28,65,96,
-0,55,112,1,160,15,99,43,224,30,3,72,158,233,206,5,136,0,96,77,
-149,130,225,134,0,206,179,106,78,75,146,132,48,131,64,195,121,196,45,130,
-20,114,84,160,108,0,52,74,227,224,14,0,202,127,237,125,7,116,98,164,
-59,224,27,0,129,109,3,95,52,56,54,142,198,225,119,1,1,46,46,243,
-40,1,227,87,0,224,153,3,172,44,227,220,4,106,77,100,69,166,54,142,
-59,242,42,0,65,114,128,78,68,171,129,254,247,169,3,130,226,149,2,1,
-48,50,145,245,224,25,1,202,177,177,28,64,18,174,216,235,94,9,163,44,
-86,89,65,197,88,228,99,125,164,148,227,55,31,224,171,18,200,115,64,132,
-68,240,99,248,227,67,0,240,212,29,238,163,8,224,230,0,236,96,1,97,
-91,236,108,7,239,132,14,70,140,98,182,164,132,126,243,0,83,105,218,161,
-25,160,35,192,13,165,185,131,145,250,52,1,226,129,5,224,214,10,128,139,
-224,214,7,205,187,224,214,121,64,137,224,214,26,160,151,131,132,240,180,0,
-224,145,39,161,251,224,152,19,160,139,224,138,18,226,198,20,85,116,73,190,
-248,149,2,226,187,24,0,58,137,238,89,234,236,137,0,99,238,236,94,2,
-96,148,162,190,0,57,229,167,2,21,92,51,52,38,115,114,99,47,77,105,
-99,114,111,72,115,47,76,101,120,46,104,115,64,21,6,44,52,51,54,58,
-49,52,176,106,227,227,0,225,211,9,224,11,2,207,52,67,11,229,19,6,
-131,9,137,123,208,118,112,180,1,51,56,83,181,0,54,68,0,1,95,54,
-199,140,136,225,233,83,3,231,125,2,191,69,224,107,2,194,132,225,220,1,
-233,69,11,128,59,225,143,5,96,81,65,140,229,159,5,224,84,1,226,47,
-4,226,32,17,0,64,138,19,161,199,124,120,224,217,12,113,135,96,67,224,
-29,11,130,2,125,131,107,108,228,208,10,96,34,3,53,53,32,67,116,235,
-2,53,53,55,224,69,8,1,95,49,95,237,0,64,157,53,136,148,224,109,
-12,224,86,7,193,146,132,222,232,176,4,225,25,60,224,220,26,234,191,1,
-193,208,135,9,234,206,0,247,45,21,164,150,226,10,19,175,221,131,109,1,
-51,50,125,105,225,67,10,224,35,0,225,171,17,224,33,28,129,173,0,52,
-161,173,225,133,12,96,13,192,14,225,174,31,225,59,13,0,95,94,16,68,
-13,0,56,236,251,1,65,154,0,51,77,82,128,85,99,83,132,122,131,76,
-239,4,4,65,219,242,250,1,133,26,0,51,136,253,0,80,76,117,68,211,
-246,246,0,128,251,109,49,64,23,64,44,77,153,247,22,2,224,33,25,64,
-20,0,85,195,206,234,160,5,98,112,95,254,197,75,130,101,0,53,224,79,
-17,129,14,163,215,96,186,98,15,224,209,2,192,19,94,55,105,64,224,152,
-15,224,32,24,224,185,2,97,60,128,100,65,236,149,99,224,168,20,160,17,
-224,33,20,97,199,157,137,225,134,19,64,37,0,54,202,99,163,56,231,194,
-2,225,71,0,0,50,95,11,64,51,134,150,225,75,20,160,130,225,78,3,
-192,83,109,16,1,49,53,77,110,1,85,32,255,199,0,226,65,1,130,237,
-160,118,231,30,1,0,51,84,141,224,48,1,224,100,1,224,145,1,225,114,
-19,225,116,4,224,98,50,65,44,155,213,230,207,1,225,44,11,130,116,225,
-43,48,220,50,224,100,1,225,62,3,224,104,3,68,153,96,86,64,70,224,
-241,11,224,123,40,64,91,236,66,2,224,119,5,129,60,0,51,224,98,5,
-225,0,0,200,146,99,179,225,221,7,167,229,196,61,142,81,224,43,8,101,
-232,224,221,1,76,54,224,106,1,224,203,33,229,62,0,224,122,114,224,50,
-0,224,98,0,239,213,3,109,20,0,50,233,71,2,31,68,97,116,97,46,
-73,110,116,101,103,114,97,108,46,94,58,32,110,101,103,97,116,105,118,101,
-32,101,120,112,111,110,101,0,110,159,123,66,129,242,152,0,96,220,226,6,
-8,128,152,192,203,2,95,49,48,234,155,0,224,191,2,160,36,224,179,4,
-224,36,21,98,31,64,126,146,178,3,85,32,75,50,96,110,64,18,144,47,
-71,157,3,57,32,95,54,67,72,66,39,0,48,134,75,143,15,229,79,0,
-225,5,1,64,28,142,222,2,80,32,58,96,59,128,88,0,65,96,55,92,
-147,176,132,2,80,32,35,113,82,0,80,128,24,196,212,96,24,96,187,160,
-24,0,54,128,134,0,54,102,184,0,73,148,177,196,90,231,198,5,121,47,
-0,64,120,141,240,3,6,231,12,0,0,95,80,208,0,53,64,24,247,98,
-10,4,92,57,50,38,110,183,83,87,133,0,57,73,79,0,83,64,251,4,
-53,32,95,53,56,70,34,181,46,235,63,4,64,44,105,117,86,159,104,65,
-71,154,103,98,0,57,97,119,1,95,54,86,164,64,54,0,51,163,130,0,
-85,64,22,252,14,1,246,54,0,96,99,163,123,100,193,192,35,170,63,1,
-48,32,169,191,233,134,3,242,97,8,0,48,96,0,128,32,137,100,192,206,
-0,89,208,59,193,72,196,25,233,68,24,177,17,233,67,17,187,145,160,65,
-140,251,160,19,99,161,0,67,64,191,170,70,247,51,2,136,110,143,86,66,
-170,2,52,57,55,162,252,188,99,224,221,7,149,144,113,173,73,166,106,212,
-128,20,192,110,0,85,228,246,0,128,7,65,120,98,105,98,156,73,235,99,
-104,116,164,64,136,1,90,32,88,54,129,129,66,30,113,60,224,219,3,221,
-61,65,43,98,91,0,79,129,249,0,90,96,189,129,238,224,100,2,128,102,
-131,207,65,108,89,87,229,113,2,100,169,1,95,50,219,212,67,205,0,54,
-190,139,182,63,74,176,227,11,1,97,43,163,11,131,146,166,65,225,181,1,
-203,118,128,13,224,30,3,0,89,129,45,224,17,2,150,97,224,17,4,192,
-69,224,21,3,244,127,2,239,184,0,224,104,3,226,53,0,224,26,0,224,
-61,1,226,82,0,64,249,192,53,226,57,0,224,33,1,182,236,237,109,0,
-192,2,160,23,224,42,4,224,21,0,192,147,236,5,0,224,95,2,128,40,
-224,186,2,243,48,2,172,164,240,180,8,132,52,224,38,1,160,84,224,174,
-0,182,226,131,153,160,0,224,109,76,247,237,15,0,57,194,86,192,100,129,
-85,224,103,0,229,8,16,193,66,96,30,160,35,253,114,2,195,164,96,44,
-224,12,0,149,44,224,23,0,224,0,1,224,111,51,177,44,224,85,5,132,
-126,224,50,0,128,93,208,254,76,115,160,114,177,9,211,129,96,18,78,148,
-2,49,53,52,99,66,99,131,113,0,215,20,225,161,3,209,40,209,29,0,
-67,165,141,224,122,0,226,196,4,128,113,226,90,2,193,201,229,34,2,224,
-36,0,229,37,11,192,221,226,181,0,224,53,27,230,157,0,224,53,36,192,
-235,224,106,37,194,198,160,231,225,206,12,197,202,225,198,12,161,184,225,233,
-4,219,158,161,226,225,93,2,224,33,3,64,85,211,19,224,96,20,233,68,
-6,13,98,97,100,32,115,116,114,105,110,103,32,103,97,112,214,149,97,225,
-132,49,101,148,127,84,96,74,66,46,224,61,1,11,117,110,116,101,114,109,
-105,110,97,116,101,100,126,173,1,47,83,128,75,254,180,3,234,211,1,161,
-74,64,15,225,175,24,224,46,30,161,15,224,92,31,161,161,227,23,2,115,
-54,225,40,10,103,4,129,171,225,147,66,236,227,2,237,46,3,203,81,192,
-7,135,60,70,148,138,10,233,1,0,225,2,12,64,103,99,168,231,44,0,
-199,154,121,21,64,70,185,19,71,151,225,255,5,3,66,97,100,32,73,154,
-5,32,101,115,99,97,112,122,101,128,201,101,95,225,65,10,128,202,224,33,
-18,72,99,224,32,21,104,80,224,99,19,196,147,224,133,18,101,183,224,33,
-20,217,139,224,33,17,224,135,23,122,213,224,66,20,72,205,224,100,22,98,
-77,70,89,230,181,16,128,202,64,22,128,34,109,113,64,8,151,36,1,95,
-53,115,191,73,195,0,35,150,150,71,49,192,18,1,64,35,75,6,195,178,
-162,2,69,179,65,101,140,158,169,235,127,72,64,122,2,52,57,32,128,72,
-169,190,194,155,186,74,126,157,117,171,64,207,64,76,133,176,238,180,2,244,
-42,6,98,248,228,238,0,192,26,224,23,2,1,95,57,252,235,1,160,169,
-100,81,96,10,100,89,169,244,130,180,98,64,107,184,130,9,224,164,2,224,
-103,3,246,64,0,224,96,6,224,84,8,224,83,24,227,58,8,128,51,0,
-56,131,184,202,240,160,18,0,56,224,17,0,192,35,65,153,224,17,0,128,
-64,199,242,164,37,192,86,232,9,0,224,21,12,100,157,224,22,10,224,175,
-5,192,22,157,114,224,21,7,64,231,224,66,10,129,255,160,22,0,58,132,
-24,107,5,0,89,193,66,161,214,198,187,233,59,4,229,84,5,250,158,2,
-0,53,125,255,225,151,8,96,51,199,48,235,157,1,235,160,0,193,187,113,
-246,141,116,96,0,136,164,64,95,96,68,236,211,1,96,42,0,49,192,12,
-64,0,69,15,229,119,0,226,249,1,130,247,224,234,5,143,21,0,79,133,
-68,238,152,9,2,78,85,76,100,245,97,194,224,37,16,2,83,79,72,128,
-37,64,172,224,37,17,1,84,88,128,37,65,178,224,37,16,0,69,192,37,
-65,239,224,37,17,1,79,84,128,37,65,98,224,37,17,1,78,81,128,37,
-66,250,224,37,16,2,65,67,75,128,37,68,49,224,37,16,1,66,69,161,
-9,66,68,224,37,17,0,83,128,36,65,103,224,36,16,0,72,160,187,65,
-162,224,36,16,1,76,70,161,82,225,121,20,0,86,160,74,99,74,224,37,
-16,0,70,192,75,225,121,20,1,67,82,160,37,225,121,20,1,83,79,160,
-37,225,121,20,1,83,73,160,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,1,68,67,156,106,0,35,102,198,224,38,16,
-1,78,65,162,60,0,50,226,251,21,1,89,78,160,38,226,252,22,0,66,
-160,38,225,131,20,1,67,65,192,77,226,254,21,0,77,160,37,225,132,20,
-1,83,85,192,115,225,132,20,2,69,83,67,160,38,225,132,20,0,70,163,
-0,0,50,225,131,20,0,71,192,37,225,130,20,0,82,160,37,112,176,224,
-37,16,0,85,192,37,225,128,21,0,80,160,37,225,127,20,0,68,195,228,
-0,49,96,229,171,156,224,0,20,69,68,148,65,0,95,124,75,72,182,70,
-251,135,49,148,161,69,110,64,12,160,26,95,9,0,53,123,233,104,164,2,
-95,54,48,224,11,0,64,77,0,54,96,77,1,62,61,84,196,64,43,64,
-12,96,11,145,216,0,60,96,11,145,168,3,105,99,109,112,96,14,177,158,
-255,110,0,137,61,101,230,224,20,8,65,39,224,20,7,0,57,224,20,12,
-66,132,224,20,7,0,49,98,154,224,21,9,66,99,224,106,8,137,145,224,
-20,5,0,53,65,243,0,67,104,108,224,106,2,97,8,0,49,106,84,0,
-95,170,158,224,7,53,65,21,140,31,244,116,2,71,153,188,98,243,20,1,
-108,149,3,67,32,61,61,232,205,1,135,165,191,243,117,6,149,248,231,184,
-0,199,250,103,142,233,181,0,199,184,96,216,105,112,226,101,12,2,99,97,
-115,172,75,233,96,7,176,70,248,234,0,130,16,204,159,64,1,170,63,106,
-74,139,82,211,89,232,130,0,75,72,3,67,32,60,32,180,156,200,57,224,
-234,7,224,28,0,128,232,181,236,234,212,3,192,250,224,34,1,242,39,1,
-160,68,138,180,224,67,7,225,5,2,226,52,3,192,0,107,189,171,138,2,
-49,53,48,81,64,1,49,52,104,154,177,153,224,106,95,0,58,129,113,227,
-57,10,0,54,227,15,11,0,49,101,110,227,37,8,110,97,224,63,7,224,
-41,11,125,234,226,249,7,0,49,101,118,226,250,44,64,190,248,213,1,80,
-140,162,191,130,35,117,187,96,36,164,159,82,186,214,210,98,109,68,119,255,
-177,1,64,41,0,54,160,78,214,149,202,196,130,86,202,192,172,38,130,186,
-0,53,71,110,224,77,4,96,162,192,41,147,4,170,134,115,44,211,15,0,
-39,234,195,2,120,86,218,56,64,136,183,43,0,39,87,21,131,27,141,115,
-128,14,237,255,1,69,91,143,85,65,86,68,240,207,33,224,35,6,0,54,
-132,160,160,35,171,43,64,105,215,46,224,242,2,192,63,224,242,32,227,75,
-2,224,241,48,133,209,224,181,6,90,181,224,181,1,94,44,96,43,133,238,
-224,179,0,225,23,0,226,90,4,0,64,224,61,1,224,19,3,242,20,4,
-224,222,29,160,165,224,222,52,187,182,0,39,76,210,0,55,173,87,213,84,
-64,53,123,230,96,173,76,203,160,13,67,182,2,53,56,55,217,109,236,215,
-0,252,66,1,64,90,229,31,2,225,61,20,110,230,224,38,10,226,62,13,
-143,240,226,66,23,242,49,6,7,100,105,103,105,116,84,111,73,189,94,240,
-100,14,192,16,176,110,64,86,243,5,0,224,49,27,96,176,224,49,22,64,
-39,96,255,65,34,65,53,249,215,1,101,32,0,80,100,63,65,233,227,103,
-5,0,52,66,136,226,51,6,113,69,64,45,221,42,0,89,99,130,144,241,
-64,4,0,85,128,50,98,26,147,140,230,118,3,207,69,64,199,228,247,1,
-160,189,194,80,96,95,0,54,192,141,230,133,4,194,43,229,56,5,73,26,
-128,63,178,239,98,185,0,51,64,90,160,173,219,111,242,92,0,242,136,0,
-231,165,27,4,83,79,85,82,67,140,159,160,204,195,37,68,140,131,241,216,
-16,1,57,53,102,94,98,155,160,19,1,54,50,68,75,0,52,133,62,0,
-95,94,153,249,202,1,64,205,224,174,5,144,137,128,210,64,186,196,148,97,
-106,104,123,160,186,176,95,225,76,0,95,43,252,168,7,161,89,232,229,3,
-246,167,19,16,85,110,99,108,111,115,101,100,32,123,45,32,99,111,109,109,
-101,162,188,136,131,228,39,5,242,220,0,243,175,14,231,125,0,129,248,232,
-152,0,225,194,13,93,17,193,15,132,120,162,123,150,107,99,135,253,189,12,
-224,149,38,192,103,224,148,28,138,202,224,149,25,227,114,1,224,150,7,234,
-36,5,169,145,226,251,11,224,46,30,165,177,163,75,224,233,3,224,84,4,
-129,121,224,177,10,192,158,224,26,0,64,6,229,95,0,224,18,1,165,173,
-227,147,1,66,137,134,150,0,85,138,10,129,18,254,68,0,128,185,1,95,
-52,73,87,128,101,225,173,10,64,68,134,175,0,85,225,113,0,128,50,127,
-117,210,184,131,94,0,51,197,234,224,72,4,100,238,67,113,135,104,64,81,
-166,78,132,131,230,76,3,254,225,1,128,100,224,74,5,128,60,230,48,16,
-230,9,5,151,172,105,107,3,95,49,55,57,229,230,2,12,92,51,52,38,
-108,105,98,47,68,97,116,97,47,89,218,2,46,104,115,64,19,4,44,49,
-48,53,58,144,172,132,8,214,104,224,128,0,229,172,17,192,109,230,18,0,
-96,171,68,83,229,185,1,98,9,133,185,68,129,128,196,235,179,20,130,78,
-192,25,236,29,4,203,80,235,105,59,224,69,10,129,110,224,69,7,186,133,
-130,203,141,61,224,91,5,229,144,17,4,109,111,100,117,108,237,56,1,237,
-36,2,162,200,235,231,12,135,241,237,255,0,141,58,166,152,237,15,10,96,
-173,160,88,65,101,198,241,0,80,150,61,0,85,129,123,0,54,231,7,4,
-163,198,64,52,224,13,0,127,42,96,102,0,39,250,87,9,6,108,97,121,
-111,117,116,76,144,184,97,0,225,163,9,109,225,160,25,224,2,0,128,47,
-132,40,225,207,8,170,132,228,86,1,246,111,1,224,59,0,224,56,12,196,
-142,160,29,229,22,1,161,25,224,31,6,111,22,207,14,216,107,192,7,64,
-247,199,21,0,52,104,55,0,85,100,98,192,185,0,90,131,175,64,71,70,
-147,96,37,121,188,132,124,224,58,5,192,0,224,151,14,192,240,224,150,2,
-206,192,225,68,0,66,98,249,135,4,247,132,5,215,135,196,217,160,36,224,
-24,2,225,47,0,200,237,194,168,71,121,224,127,1,228,130,3,217,222,96,
-43,247,196,11,199,143,160,252,162,170,225,3,18,96,128,224,51,12,113,77,
-96,117,224,52,4,135,230,192,63,64,22,96,39,227,106,1,128,28,64,7,
-193,220,233,209,1,231,88,16,130,46,100,167,96,22,228,96,5,251,197,3,
-65,117,67,220,163,104,161,137,97,61,97,243,0,51,161,20,164,37,192,122,
-225,22,13,96,35,224,226,9,140,171,64,199,251,34,2,224,237,3,129,186,
-133,15,162,0,193,161,231,114,2,129,237,64,192,225,29,1,224,159,0,128,
-233,224,158,26,160,108,225,185,5,129,237,193,108,64,88,140,91,224,165,4,
-224,95,50,128,186,192,95,192,69,128,101,226,94,15,234,198,0,64,54,226,
-151,0,224,97,1,230,13,14,225,77,1,99,103,228,232,1,100,167,96,25,
-218,153,130,54,160,10,129,90,233,95,17,228,247,1,227,222,1,234,217,25,
-192,59,132,109,225,22,6,226,249,3,227,247,1,163,250,224,198,0,131,222,
-192,13,244,205,11,224,31,1,226,24,1,230,253,11,129,229,224,138,12,171,
-230,163,107,0,48,76,17,224,208,14,128,169,165,18,235,160,6,134,46,7,
-32,101,114,114,111,114,32,125,102,52,224,101,2,128,95,133,99,229,105,1,
-224,154,24,228,33,5,161,79,96,43,64,23,96,219,228,136,8,234,172,1,
-194,107,161,177,102,237,97,71,161,103,245,58,0,192,16,130,31,130,59,193,
-116,131,151,224,13,9,226,9,1,5,67,32,95,51,51,50,165,107,193,44,
-224,171,3,131,93,110,117,199,238,230,66,13,161,92,131,45,98,89,96,47,
-225,100,1,5,115,121,110,116,97,120,129,100,225,98,30,72,9,142,99,104,
-31,103,38,168,32,205,191,64,22,64,46,160,22,139,76,64,227,1,80,32,
-124,110,201,204,209,208,0,80,146,75,160,46,138,228,104,232,64,14,138,182,
-4,85,32,75,32,65,107,156,100,64,1,10,65,120,204,0,52,74,62,2,
-90,32,85,170,16,233,228,4,224,18,6,145,20,224,18,4,151,146,232,20,
-9,65,106,232,6,5,160,105,1,64,85,73,82,0,64,64,7,133,119,192,
-15,224,69,6,139,202,230,62,8,160,45,224,60,1,165,188,224,169,6,65,
-245,224,80,6,181,66,224,18,3,76,169,160,65,224,80,7,224,41,6,129,
-137,160,41,234,63,3,65,75,139,79,108,52,5,75,32,64,95,54,50,131,
-167,96,52,66,122,64,35,202,13,97,168,98,94,97,191,101,102,4,10,65,
-32,73,32,64,11,130,18,105,18,99,25,82,73,112,253,0,52,114,188,2,
-90,32,90,67,139,0,52,81,122,0,89,96,73,64,135,233,67,1,203,191,
-230,46,5,224,166,0,130,89,173,74,232,106,0,224,12,0,230,230,4,202,
-149,164,191,192,39,227,101,0,227,162,0,96,8,110,79,1,52,56,134,148,
-224,70,3,99,53,122,158,64,22,167,237,229,84,3,64,36,67,218,99,153,
-71,139,227,131,1,98,69,135,243,0,57,69,59,0,52,87,46,246,237,0,
-173,4,173,154,231,198,2,193,14,228,103,6,162,137,150,96,192,117,224,7,
-3,164,70,228,168,1,228,79,0,168,130,64,183,64,60,224,33,12,128,27,
-224,26,6,129,40,160,137,100,114,232,248,0,224,38,13,132,106,103,206,164,
-44,162,106,194,113,184,229,96,12,96,11,248,246,0,134,36,98,158,67,226,
-226,200,2,0,39,78,67,0,55,64,125,0,85,193,15,225,14,4,161,82,
-192,31,0,85,68,12,66,103,107,111,77,122,166,188,0,51,115,209,224,0,
-2,225,168,2,225,163,6,83,141,4,95,52,48,56,32,229,36,1,10,77,
-104,115,46,66,117,105,108,116,105,110,133,35,2,49,55,49,67,50,92,248,
-0,48,77,173,225,205,2,224,58,6,5,80,114,101,108,117,100,173,190,66,
-200,133,11,0,75,99,50,196,254,128,1,231,154,3,233,166,1,0,32,152,
-207,96,59,133,24,229,69,0,101,46,96,194,160,69,160,44,0,58,130,206,
-224,90,0,204,34,226,217,3,195,55,194,218,232,209,3,192,125,130,215,164,
-74,96,26,1,95,57,105,150,2,95,49,52,169,158,98,225,0,55,198,129,
-230,245,2,195,47,160,95,227,64,1,227,184,2,236,118,1,96,23,224,25,
-11,96,250,231,31,3,224,181,0,220,121,228,12,1,195,234,96,173,64,32,
-64,154,0,57,99,149,6,57,55,56,32,95,57,51,65,229,226,13,1,1,
-95,51,203,98,1,95,50,80,143,64,48,116,209,1,52,54,69,110,1,95,
-51,126,8,224,32,2,194,149,224,15,1,130,173,161,27,98,81,1,50,56,
-98,200,128,134,64,18,160,28,0,54,145,99,96,160,0,95,192,21,0,67,
-86,126,0,54,226,157,1,1,67,39,79,90,64,25,133,29,193,60,227,174,
-1,64,219,97,159,64,11,224,5,0,151,179,99,89,163,108,64,4,165,231,
-193,38,163,99,224,170,1,0,52,195,58,139,250,69,0,2,95,57,55,199,
-229,163,156,225,36,3,64,169,123,246,64,230,200,101,146,76,0,51,82,235,
-2,95,49,48,64,229,81,232,64,236,73,244,99,27,141,196,128,91,1,95,
-57,131,39,130,104,96,83,0,56,96,122,225,28,0,65,131,132,80,109,76,
-141,68,64,161,0,56,97,180,128,161,160,70,2,95,49,51,128,98,193,132,
-160,86,193,134,224,20,3,230,116,11,192,114,97,25,194,107,224,139,0,227,
-45,4,230,149,0,163,23,162,155,64,151,4,53,32,95,52,51,142,30,230,
-217,13,190,184,64,10,210,164,192,7,192,11,224,141,1,224,107,2,227,3,
-1,2,95,51,56,128,96,224,0,4,194,175,128,27,67,246,211,29,0,73,
-64,186,159,244,224,117,11,224,7,3,224,205,2,64,18,134,82,131,250,227,
-145,2,224,2,7,224,140,0,128,15,227,202,1,224,36,12,224,37,20,224,
-40,4,224,41,34,238,64,0,0,39,132,10,237,152,17,228,227,0,160,55,
-192,1,178,88,102,196,231,42,1,224,5,3,231,54,4,196,222,224,66,1,
-99,201,161,227,132,112,117,197,161,244,2,95,49,48,70,39,195,221,163,133,
-72,81,97,184,196,78,3,95,54,56,57,64,12,77,38,224,22,2,192,228,
-224,88,3,224,85,9,160,50,233,213,3,0,95,222,137,64,0,197,40,224,
-2,17,226,246,3,225,27,2,161,55,225,115,5,224,28,19,225,178,3,193,
-135,193,26,230,22,4,224,20,0,224,8,2,1,95,55,241,144,0,225,172,
-0,225,110,1,224,197,3,64,15,226,32,3,90,40,226,167,1,194,240,225,
-252,2,173,164,160,42,192,19,197,201,96,129,160,172,226,107,7,192,92,160,
-62,192,195,98,28,224,5,3,193,65,224,57,3,162,49,224,25,10,160,2,
-224,25,17,226,169,1,225,112,3,192,164,64,19,226,247,1,225,39,5,133,
-234,101,129,232,243,5,160,68,96,86,224,80,0,228,211,2,224,224,8,66,
-112,165,167,102,176,102,189,64,53,202,113,228,57,0,64,126,157,68,72,12,
-230,206,7,224,28,16,71,155,247,71,1,230,177,2,234,20,1,130,29,225,
-241,3,227,225,2,224,210,5,160,247,224,128,7,224,215,0,224,236,3,224,
-218,0,198,228,224,249,2,200,75,226,93,11,226,192,1,228,2,2,226,92,
-255,226,92,45,226,90,1,96,0,226,2,14,225,67,3,64,13,226,8,31,
-0,55,224,165,5,96,26,193,4,231,205,4,128,155,192,149,201,172,247,192,
-3,64,0,96,149,64,106,227,2,13,123,78,224,120,8,224,136,10,237,221,
-3,160,57,166,51,227,105,17,128,212,128,185,146,25,0,49,155,54,226,238,
-6,230,203,2,160,3,234,79,5,225,76,2,224,90,1,232,140,3,98,147,
-225,175,3,242,226,1,226,246,3,200,179,229,234,1,161,6,140,57,227,142,
-16,64,84,239,222,8,243,190,5,128,179,64,40,80,67,130,177,232,136,1,
-232,146,3,130,200,192,208,225,42,3,224,98,1,226,82,6,233,158,1,224,
-89,8,163,79,64,251,64,66,65,62,199,84,224,82,4,224,77,16,225,209,
-1,161,174,171,149,235,145,2,224,74,6,203,98,251,245,11,11,110,111,116,
-32,101,120,112,111,114,116,101,100,251,251,0,96,0,73,230,209,144,0,82,
-64,107,110,235,204,109,81,98,0,51,234,144,0,0,95,75,227,2,95,52,
-52,129,94,129,125,66,109,160,7,224,121,12,1,58,32,128,111,1,95,51,
-189,142,96,113,0,54,145,221,225,43,4,229,37,0,237,218,0,226,217,5,
-194,15,232,26,4,161,197,229,119,7,224,24,2,163,223,229,137,6,226,123,
-0,224,11,1,0,83,82,170,230,165,1,229,129,23,162,162,228,209,0,97,
-230,251,82,11,215,236,192,13,163,22,128,16,224,181,2,229,159,3,192,155,
-227,36,4,228,101,2,96,56,140,49,0,55,186,240,224,0,0,230,109,5,
-225,59,0,230,102,7,224,38,50,163,32,134,86,96,38,228,26,21,225,38,
-14,160,183,128,108,246,235,0,164,12,224,21,14,165,118,161,10,129,228,88,
-118,133,108,247,185,7,225,73,1,225,180,25,142,53,225,109,1,225,180,3,
-224,145,2,237,95,1,224,13,11,247,154,14,161,41,230,41,2,108,45,224,
-184,1,224,0,3,230,25,0,224,182,28,251,95,1,224,129,20,224,171,77,
-224,170,37,192,60,224,128,22,224,170,84,227,216,53,234,7,1,224,151,11,
-233,132,1,160,13,227,217,45,155,71,1,52,56,129,217,160,74,2,95,49,
-48,196,155,96,48,1,54,53,155,165,227,253,8,241,78,1,1,95,55,139,
-18,131,36,197,20,128,8,103,207,163,220,224,163,0,247,231,0,64,125,0,
-50,241,92,0,241,21,0,192,108,195,101,229,129,5,229,149,1,128,27,225,
-3,0,81,63,1,50,55,206,157,128,67,177,119,1,90,32,192,164,97,158,
-1,95,57,64,28,70,31,183,253,224,82,0,197,204,128,11,160,106,192,17,
-233,193,0,192,17,96,206,100,42,154,173,242,224,1,3,32,95,51,52,69,
-157,230,223,26,230,212,19,15,117,110,100,101,102,105,110,101,100,32,109,111,
-100,117,108,101,230,228,8,111,127,98,169,0,79,96,15,224,187,1,96,2,
-97,252,65,101,0,51,232,214,10,224,242,5,160,37,0,95,86,28,175,137,
-65,89,247,21,0,160,46,64,102,170,57,98,57,1,95,53,123,237,243,139,
-1,168,49,0,75,224,57,0,192,63,65,110,219,104,225,94,1,224,89,1,
-224,2,0,162,192,224,21,6,160,223,194,212,99,128,144,97,87,11,128,133,
-224,31,4,193,119,106,154,183,99,225,32,2,171,58,0,50,225,147,0,212,
-88,96,192,224,244,0,224,215,0,64,190,0,51,226,45,1,236,246,3,211,
-252,96,149,225,25,7,192,199,131,224,130,35,226,169,4,226,155,6,128,70,
-148,181,1,56,55,235,204,1,226,82,0,96,137,151,130,0,80,87,142,64,
-107,247,72,9,247,93,1,236,119,5,163,214,1,50,51,227,228,0,160,11,
-193,52,64,12,138,33,0,95,119,32,196,175,169,176,234,173,2,160,67,128,
-0,224,50,18,224,42,7,99,157,68,100,0,58,150,232,227,128,0,235,48,
-8,162,32,224,9,4,224,29,1,224,9,4,233,119,1,128,9,161,14,252,
-82,2,3,95,57,54,52,166,199,98,55,68,2,245,115,0,114,204,0,95,
-118,94,87,69,1,95,51,88,180,96,0,68,87,1,50,50,89,55,82,190,
-2,49,52,54,245,54,2,65,236,0,57,99,53,147,11,96,246,249,199,3,
-96,4,160,21,224,23,10,139,175,245,124,13,166,126,228,219,1,168,136,132,
-107,251,123,1,161,80,232,144,9,224,148,6,224,128,0,96,15,225,205,6,
-224,7,9,230,188,27,224,166,2,96,16,231,38,1,238,170,3,161,169,166,
-226,128,81,194,122,69,164,193,77,66,224,182,45,224,222,8,224,0,3,81,
-130,128,89,2,95,52,55,68,202,160,111,225,164,15,164,174,225,167,36,225,
-15,5,238,156,4,97,26,130,95,0,80,225,187,13,224,84,1,129,70,192,
-253,128,248,192,39,227,150,7,128,194,155,215,132,14,225,250,30,160,227,224,
-85,26,101,247,226,80,50,69,76,91,161,101,76,224,239,11,228,33,6,193,
-241,193,75,226,45,1,224,13,5,199,72,96,153,160,43,236,8,2,236,11,
-1,226,63,5,160,34,224,61,0,125,237,227,76,15,235,224,0,226,232,7,
-160,132,224,10,2,225,175,1,133,81,225,49,6,70,121,172,138,166,150,233,
-54,1,169,46,193,72,1,95,55,123,146,225,63,2,122,136,2,95,52,55,
-174,162,128,98,224,218,0,224,155,9,240,216,17,192,54,242,31,1,195,113,
-225,50,0,193,39,133,6,64,52,224,93,2,0,83,160,53,123,34,226,119,
-3,0,85,96,43,235,76,4,0,95,99,112,0,85,89,158,192,215,227,183,
-1,64,0,226,148,12,224,165,26,160,145,64,168,228,11,6,224,79,6,228,
-28,2,224,0,2,64,178,97,73,252,198,5,228,248,52,99,236,242,126,20,
-194,49,224,211,9,234,230,2,224,211,9,97,204,224,85,32,160,82,225,105,
-8,224,0,1,225,18,13,4,64,64,95,56,53,125,19,2,49,48,50,71,
-140,162,108,131,90,224,5,0,92,216,1,52,55,121,210,99,231,224,6,5,
-192,7,98,26,101,80,96,42,1,51,49,128,35,91,189,103,42,0,55,93,
-54,199,42,71,205,155,199,3,85,32,75,52,96,227,64,18,145,243,64,209,
-64,66,96,78,65,170,69,168,92,30,0,56,167,218,132,181,2,95,52,51,
-66,130,233,181,1,194,156,105,51,1,48,50,90,107,1,49,52,163,83,171,
-106,129,129,128,56,96,102,224,57,25,160,222,98,206,254,48,0,67,153,64,
-176,0,54,96,176,96,229,99,35,77,232,96,99,96,11,138,156,128,13,228,
-1,1,228,133,2,255,63,5,173,77,128,142,4,54,32,95,55,57,105,8,
-225,135,0,64,45,0,55,97,64,228,78,2,96,100,65,63,64,155,229,136,
-2,224,99,0,96,96,3,95,49,48,53,96,213,235,172,1,131,4,224,22,
-1,224,59,0,128,192,129,125,0,57,150,185,97,22,109,191,161,1,64,112,
-3,95,56,51,52,71,42,141,243,189,166,0,48,191,111,229,90,1,132,76,
-130,162,130,171,95,57,76,227,64,43,236,208,9,2,79,32,35,64,116,131,
-208,3,95,49,50,51,107,35,160,13,0,48,129,18,132,86,66,89,1,50,
-52,119,173,0,53,83,38,64,9,2,56,51,32,240,125,0,224,34,18,99,
-129,1,35,49,64,76,65,198,141,217,64,147,0,52,65,14,76,244,160,150,
-2,52,51,50,97,61,0,57,98,13,1,95,51,69,178,64,49,204,156,2,
-95,52,51,66,243,160,49,0,53,64,37,224,36,1,140,2,98,179,138,107,
-162,7,196,61,129,210,151,27,98,12,0,79,133,181,4,95,57,56,54,32,
-237,216,1,1,45,62,141,200,129,242,64,30,64,141,3,95,49,52,54,64,
-56,129,40,131,18,141,112,224,66,10,0,61,160,66,226,57,2,77,114,1,
-52,54,65,88,164,97,224,127,6,3,79,32,35,49,66,58,128,95,224,123,
-0,3,49,52,54,57,133,255,65,60,128,28,224,59,4,2,49,51,48,162,
-162,160,48,96,15,64,48,64,22,224,48,10,160,108,3,56,53,57,52,224,
-109,8,224,233,10,224,193,1,224,233,2,64,63,2,54,53,56,230,7,0,
-224,230,16,160,31,224,35,1,98,146,109,145,224,16,1,97,172,238,89,28,
-99,40,195,83,162,233,174,74,227,113,3,230,162,3,136,158,165,43,0,51,
-96,216,3,67,32,95,52,218,34,227,89,9,226,197,28,101,7,232,87,4,
-201,208,224,141,20,131,126,66,232,0,51,76,240,114,165,96,147,199,189,99,
-249,67,176,2,95,57,56,102,33,96,92,99,187,66,32,0,48,195,169,66,
-238,142,103,192,80,99,170,160,6,64,29,142,121,224,29,6,224,12,6,64,
-130,64,43,142,144,97,217,91,138,0,55,96,65,66,119,224,21,1,1,52,
-54,160,21,134,70,226,234,1,10,80,114,105,109,105,116,105,118,101,115,46,
-98,245,64,35,134,87,132,241,224,114,2,224,128,7,128,20,64,48,0,54,
-96,48,0,75,234,13,0,0,83,98,19,105,0,224,5,7,64,138,145,36,
-194,20,1,95,52,97,42,134,177,3,95,57,56,48,64,4,97,171,227,247,
-0,103,249,224,39,19,96,133,196,150,251,123,0,4,66,32,95,53,52,67,
-126,0,50,146,176,113,163,100,124,1,35,52,147,13,196,123,64,146,135,93,
-104,211,217,230,96,26,132,150,71,149,65,179,97,203,225,62,12,164,119,131,
-65,67,195,72,94,130,125,229,112,14,224,79,21,164,132,224,79,25,225,3,
-3,130,84,0,75,64,191,64,14,208,191,103,11,0,55,64,3,104,191,1,
-50,49,71,47,64,11,1,95,57,99,236,162,253,0,48,224,33,0,3,49,
-51,56,51,233,94,2,224,63,17,0,49,169,40,167,6,224,65,0,113,244,
-0,55,250,243,1,224,65,6,0,49,70,58,64,6,105,80,64,210,224,56,
-0,160,201,130,212,224,120,18,1,52,52,99,130,224,116,3,109,69,65,37,
-64,13,0,80,103,71,0,52,65,225,227,194,1,160,16,96,42,66,13,1,
-56,56,94,185,67,177,131,221,104,153,0,73,66,58,235,169,4,102,168,143,
-26,98,225,194,147,98,159,101,54,128,90,132,219,128,149,243,28,1,224,76,
-11,0,49,147,17,160,31,171,56,96,146,0,54,150,246,64,48,178,150,241,
-74,0,237,129,9,246,228,20,195,142,64,7,203,131,239,53,9,232,113,4,
-106,189,114,105,224,0,8,164,227,160,46,226,42,1,225,113,1,80,117,193,
-171,65,159,118,193,2,49,52,53,85,144,240,49,1,201,75,225,241,2,168,
-214,2,64,95,50,67,174,64,0,0,58,130,25,130,1,96,170,101,154,138,
-112,0,57,128,8,64,65,1,49,48,114,254,203,145,96,219,116,189,239,179,
-4,160,251,164,148,5,67,32,60,32,64,35,128,143,228,94,1,225,59,0,
-192,24,97,152,128,1,224,237,0,2,95,57,54,73,230,247,176,0,160,156,
-140,88,162,15,227,3,4,0,49,151,241,224,73,0,64,233,226,234,4,167,
-7,100,178,103,242,142,85,248,20,5,224,165,10,139,110,96,165,240,149,1,
-224,126,6,117,12,73,145,228,95,1,13,116,121,112,101,32,115,105,103,110,
-97,116,117,114,101,136,229,128,151,239,197,4,224,215,4,224,209,12,64,41,
-168,15,224,112,6,0,57,74,217,171,57,224,72,3,227,254,5,0,53,163,
-114,225,94,19,225,50,0,226,47,7,224,126,0,1,95,53,68,226,225,51,
-12,128,0,224,54,3,66,83,134,254,224,114,8,0,49,250,123,0,69,110,
-192,50,163,8,163,158,162,15,229,39,6,0,49,136,79,228,16,3,136,226,
-102,218,2,49,48,50,103,255,255,115,3,235,195,9,225,158,1,2,67,97,
-110,95,230,17,115,97,116,105,115,102,121,32,99,111,110,115,116,114,97,105,
-110,116,248,157,0,107,225,0,57,110,45,128,0,64,213,174,8,4,32,95,
-56,48,52,64,4,64,127,140,160,64,29,0,54,192,243,227,156,8,229,60,
-4,227,200,2,240,167,6,132,176,1,55,57,230,167,2,27,92,51,52,38,
-115,114,99,47,77,105,99,114,111,72,115,47,84,121,112,101,67,104,101,99,
-107,46,104,115,64,27,7,44,49,50,57,49,58,49,57,128,181,2,85,32,
-90,97,55,1,49,56,64,96,65,249,68,102,1,49,48,161,17,163,182,229,
-234,4,166,116,141,141,1,50,53,244,116,1,64,187,192,37,176,118,224,172,
-59,0,55,224,172,0,216,208,176,227,226,211,1,184,195,160,0,226,67,3,
-1,49,52,101,167,111,34,225,68,0,226,50,23,163,249,224,29,5,104,187,
-0,52,88,221,100,41,65,231,230,188,1,101,129,175,205,225,41,2,66,78,
-85,159,97,31,227,47,12,98,114,70,190,241,252,5,205,81,0,52,74,151,
-128,189,239,224,6,96,10,207,255,96,12,1,49,52,66,182,121,126,224,161,
-10,224,19,12,230,59,1,64,0,66,145,238,64,0,1,49,52,78,3,101,
-202,96,24,250,196,2,128,139,163,217,0,50,67,70,96,33,174,36,168,85,
-224,229,3,163,166,0,90,229,16,1,227,228,7,0,48,170,121,160,203,229,
-52,3,225,78,4,226,96,2,99,196,1,49,48,64,67,0,54,136,56,160,
-61,224,95,4,225,212,9,228,236,4,107,247,160,104,224,176,4,204,103,98,
-89,104,124,236,64,1,64,110,1,95,55,73,37,192,0,160,89,1,52,56,
-67,19,81,75,128,65,87,150,124,120,65,77,114,69,1,56,49,222,228,65,
-49,138,18,136,58,240,103,3,165,190,182,10,130,137,245,7,3,228,207,1,
-213,156,208,133,136,155,179,69,240,114,4,237,128,0,5,49,52,53,48,32,
-64,112,154,2,35,49,50,128,196,3,95,54,50,48,173,154,171,3,194,83,
-64,73,192,92,226,56,4,224,76,15,64,215,173,33,0,54,147,69,1,52,
-57,192,39,68,88,0,49,69,90,192,13,74,39,64,13,100,114,75,58,224,
-39,2,109,27,224,13,0,92,19,224,13,1,224,81,1,64,110,234,143,1,
-146,32,66,178,74,111,65,10,0,55,171,143,235,234,15,64,46,67,67,0,
-58,96,167,96,182,228,59,1,0,50,66,57,0,75,226,172,7,64,152,1,
-57,53,86,213,97,210,198,160,228,74,5,228,108,1,194,128,229,229,5,1,
-49,54,94,114,146,168,228,22,9,2,95,57,55,126,145,211,186,128,159,135,
-33,194,227,100,30,173,44,2,54,49,57,99,165,66,158,134,110,75,142,1,
-64,95,64,4,64,22,0,54,128,217,64,101,0,57,77,53,74,191,96,128,
-0,49,70,144,1,95,49,78,145,213,66,64,47,228,5,0,231,254,12,66,
-157,104,239,98,165,137,2,0,64,195,175,137,212,233,209,6,98,244,224,25,
-12,204,161,224,25,9,97,8,233,92,8,96,21,0,85,163,17,192,115,128,
-144,131,25,96,9,65,25,225,58,0,234,70,13,78,80,229,158,4,224,43,
-13,96,185,71,116,129,82,161,160,67,99,224,58,7,230,0,0,224,141,1,
-193,15,224,211,0,162,116,192,179,224,105,4,224,27,2,204,25,215,29,108,
-202,247,51,0,203,118,224,98,0,160,38,224,13,6,229,11,0,245,199,0,
-64,196,229,77,2,238,26,0,139,152,192,63,134,122,102,186,0,48,236,29,
-6,235,240,4,245,137,6,224,125,0,245,142,16,224,96,2,149,142,160,43,
-131,71,160,12,176,15,1,57,53,67,240,96,61,227,106,1,128,0,233,207,
-4,181,204,248,48,4,245,193,5,224,119,1,96,95,182,138,224,69,6,0,
-50,76,184,224,69,6,96,130,227,164,0,160,135,78,251,192,135,224,9,0,
-225,180,23,130,170,226,28,0,225,131,5,129,110,161,157,226,98,2,225,81,
-2,107,255,203,175,225,203,1,193,182,224,40,1,225,188,16,225,190,4,100,
-59,225,196,14,225,163,1,247,116,18,224,37,5,192,34,136,170,193,90,129,
-93,225,121,0,70,9,68,124,65,246,225,205,1,225,202,39,226,22,19,226,
-127,5,193,230,224,140,4,250,168,3,184,127,250,158,22,111,154,173,106,161,
-162,255,224,1,193,1,160,63,250,182,7,130,232,230,127,1,96,187,122,81,
-104,32,99,248,137,192,99,250,124,114,224,0,0,226,138,36,105,194,226,62,
-9,128,72,237,50,9,107,66,156,31,64,245,224,33,8,99,138,224,73,1,
-241,7,1,170,148,238,84,1,225,110,0,110,203,128,174,235,219,1,2,63,
-63,63,171,182,65,193,136,167,191,66,226,160,10,160,0,70,125,202,106,225,
-209,0,238,132,14,227,60,5,227,14,1,227,33,2,229,37,4,64,17,128,
-33,224,52,3,224,58,4,160,59,229,23,1,224,28,4,225,244,0,224,2,
-8,192,32,128,104,239,163,5,227,245,11,160,70,89,73,102,74,229,105,7,
-228,173,11,96,101,160,144,64,79,130,252,224,131,0,119,208,224,160,0,226,
-143,8,130,117,119,148,227,97,5,229,157,0,96,122,228,101,2,240,188,1,
-227,92,2,224,197,8,226,44,5,225,124,3,224,157,4,225,69,0,225,138,
-3,212,129,181,212,245,219,0,224,198,1,210,31,128,65,226,54,7,240,194,
-3,252,28,15,0,49,124,226,203,23,132,98,221,203,0,54,120,2,2,49,
-48,57,238,62,1,225,122,0,96,27,254,138,8,160,162,2,95,55,55,245,
-131,1,224,213,3,210,47,0,56,229,221,4,232,167,7,96,205,164,56,64,
-16,98,3,129,234,172,106,162,27,225,37,18,64,4,192,141,239,83,39,5,
-51,54,51,58,50,53,163,156,64,154,64,126,122,219,101,110,225,15,3,1,
-95,55,74,47,225,105,28,253,103,3,225,110,9,231,143,2,64,251,180,85,
-224,237,31,0,65,224,237,52,0,50,224,237,3,245,170,2,227,221,1,226,
-164,5,227,6,2,226,164,17,64,243,213,186,64,7,128,213,166,29,192,38,
-213,153,69,249,226,71,2,68,229,0,51,235,99,14,148,106,128,141,229,107,
-7,3,49,49,57,51,224,17,0,142,33,64,23,166,188,164,107,226,108,1,
-64,182,229,1,2,198,255,234,114,1,233,152,5,200,105,194,204,128,45,160,
-19,231,5,1,192,228,162,239,236,245,16,0,48,228,212,10,240,250,5,135,
-54,96,24,102,69,83,140,129,45,1,49,52,90,37,224,0,2,161,72,240,
-57,9,0,50,156,92,128,93,0,52,114,182,76,254,66,139,91,170,121,201,
-160,67,65,117,143,114,160,112,109,11,237,12,1,1,52,52,110,29,109,12,
-96,44,174,199,5,51,54,57,32,75,32,76,116,224,1,11,139,109,160,0,
-1,95,57,176,200,64,62,238,151,0,235,52,1,106,251,0,53,138,251,1,
-52,51,243,58,0,244,134,4,104,224,64,6,2,50,50,55,226,232,2,5,
-101,120,112,111,114,116,98,198,0,58,129,30,123,22,1,90,32,244,18,6,
-104,108,2,50,48,50,224,58,2,6,116,121,81,73,100,101,110,128,60,1,
-64,85,89,69,160,163,65,112,167,107,171,183,0,50,226,126,19,212,36,216,
-13,249,213,4,69,157,94,229,96,61,224,58,1,224,55,10,226,39,4,1,
-52,48,222,179,224,51,34,107,175,224,51,38,68,112,233,16,3,225,3,0,
-143,52,122,92,234,34,1,227,36,1,101,151,226,187,4,243,85,4,104,210,
-225,228,0,224,142,13,0,49,201,185,227,20,11,99,96,231,40,3,232,113,
-1,232,61,0,224,2,1,160,183,224,47,7,192,5,247,63,10,155,66,192,
-0,226,186,3,248,158,5,225,240,5,192,97,229,252,1,105,183,218,246,106,
-110,134,8,0,50,246,1,1,165,215,247,64,12,87,61,7,97,32,99,108,
-97,115,115,32,183,49,0,51,94,24,225,147,9,224,166,7,225,38,2,224,
-28,13,227,130,1,224,54,9,227,158,2,64,14,237,3,4,224,2,3,225,
-9,3,232,229,3,129,3,224,5,0,213,135,72,62,149,136,224,32,6,0,
-80,203,44,64,31,78,221,83,255,71,175,244,77,0,224,10,14,235,171,10,
-151,154,65,102,134,90,228,47,6,0,56,83,175,0,64,225,98,2,26,115,
-117,112,101,114,102,108,111,117,115,32,105,110,115,116,97,110,99,101,32,98,
-105,110,100,105,110,103,230,254,1,225,12,2,224,1,11,235,108,17,224,56,
-4,194,121,237,228,0,0,39,192,8,193,72,224,98,0,64,25,224,110,0,
-128,55,240,134,6,224,140,4,72,84,204,218,226,229,6,202,229,224,79,6,
-128,18,224,93,1,128,16,224,13,4,128,10,230,109,4,0,54,137,224,231,
-154,7,64,0,167,225,224,104,4,224,158,2,226,171,6,169,245,224,2,6,
-192,168,224,30,3,226,99,2,103,153,0,66,96,37,103,82,248,3,10,224,
-253,24,192,89,163,137,187,112,224,179,4,165,212,131,142,235,232,0,240,10,
-8,1,49,48,64,126,225,24,4,169,248,192,78,239,59,4,105,187,98,147,
-1,57,53,96,54,0,56,224,60,6,78,217,69,214,1,95,49,191,192,224,
-150,2,128,52,225,159,1,218,75,224,31,0,1,51,56,164,75,224,192,3,
-221,84,224,19,1,0,50,117,183,224,19,4,128,124,128,90,192,20,103,71,
-174,249,192,58,0,51,88,205,96,192,225,250,2,70,33,237,10,4,3,67,
-32,95,57,227,193,2,234,54,25,226,111,1,224,23,1,162,252,144,83,233,
-65,6,64,164,155,109,160,222,234,99,6,234,67,5,128,0,226,154,3,201,
-41,140,168,132,18,127,115,119,250,0,55,226,211,4,70,231,0,54,246,63,
-1,161,26,135,123,229,181,0,0,52,94,145,224,14,1,0,48,103,205,193,
-52,107,169,6,83,32,95,53,56,51,32,96,147,0,35,168,234,64,55,232,
-244,0,64,140,119,251,90,137,0,56,135,119,0,51,118,132,64,35,96,25,
-77,193,108,56,64,20,139,5,228,194,1,68,183,0,34,128,26,137,170,168,
-221,75,92,112,68,160,142,1,52,48,64,114,155,35,64,243,100,84,209,107,
-97,216,67,17,0,53,245,162,1,113,100,129,74,0,95,129,255,64,99,137,
-225,133,206,136,84,101,227,89,228,74,42,160,19,64,41,169,204,200,36,167,
-244,65,223,245,218,2,232,62,11,130,0,232,61,18,228,32,3,253,135,2,
-192,136,98,43,201,112,162,197,233,116,2,172,119,0,52,65,108,228,63,6,
-224,93,59,160,89,161,221,65,13,98,66,162,219,66,16,106,210,65,146,1,
-50,49,100,55,0,51,143,84,1,52,50,64,102,195,220,230,191,12,170,239,
-232,52,19,191,117,6,100,101,114,105,118,101,32,255,104,3,1,51,54,244,
-140,0,96,181,67,118,112,244,226,250,3,64,178,138,225,2,79,32,80,224,
-97,13,11,68,97,116,97,46,66,111,117,110,100,101,100,192,7,96,103,2,
-95,49,52,109,31,224,57,21,3,69,110,117,109,96,4,224,51,0,67,51,
-224,51,21,224,4,0,224,51,0,66,142,224,103,22,3,113,46,69,113,224,
-47,0,64,219,224,47,21,4,73,120,46,73,120,192,47,104,167,224,47,21,
-2,79,114,100,64,3,224,49,0,224,249,25,79,104,3,97,98,108,101,224,
-8,0,224,59,0,68,68,224,59,16,17,84,101,120,116,46,82,101,97,100,
-46,73,110,116,101,114,110,97,108,96,13,224,170,29,96,60,3,83,104,111,
-119,96,4,224,51,0,210,217,160,0,65,245,171,211,101,153,66,28,101,136,
-101,133,201,157,3,49,52,48,54,228,120,2,224,80,0,194,80,239,219,5,
-163,236,235,32,3,65,136,132,121,229,245,0,98,136,230,2,7,64,44,230,
-16,3,136,158,224,17,0,224,20,3,224,21,7,224,24,1,224,25,11,224,
-28,1,232,42,10,236,17,3,235,94,9,224,48,10,224,2,3,232,188,0,
-231,76,1,235,49,9,104,182,171,193,224,83,23,224,80,2,129,35,224,81,
-9,84,209,0,55,97,153,102,149,234,213,2,7,104,111,119,115,80,114,101,
-99,234,195,4,224,102,12,200,91,192,103,224,1,1,101,184,224,25,12,236,
-32,0,224,22,14,224,104,11,138,223,243,22,3,224,201,4,253,21,3,232,
-222,0,64,84,2,95,56,48,140,50,105,249,129,23,92,136,231,215,8,224,
-220,11,128,2,192,34,224,169,1,205,158,245,175,2,64,22,77,47,98,240,
-67,33,225,165,2,224,230,5,224,234,4,224,28,22,224,253,3,128,28,128,
-114,224,2,0,69,127,224,71,11,225,75,8,236,53,9,224,8,18,202,30,
-64,57,160,231,97,90,130,218,2,51,57,54,65,67,226,46,5,4,80,97,
-114,101,110,194,46,192,113,128,83,139,109,128,52,2,79,32,35,76,222,161,
-123,129,44,0,56,148,192,207,247,192,204,194,177,128,140,96,58,72,160,225,
-182,0,169,218,235,33,0,137,224,225,126,5,202,251,1,85,32,243,121,1,
-225,235,7,247,110,5,141,59,225,77,2,161,10,64,90,193,6,64,8,226,
-109,0,64,5,162,36,226,22,2,239,225,1,64,9,132,166,128,156,129,13,
-155,191,64,165,2,79,32,35,71,93,224,215,3,224,253,0,224,250,2,89,
-162,224,34,6,235,214,1,64,1,176,211,128,59,224,119,29,76,189,192,83,
-1,85,32,251,14,2,96,113,0,49,64,37,192,30,64,61,0,56,85,39,
-253,149,9,1,85,32,86,42,171,25,74,100,96,59,0,48,233,22,3,128,
-10,64,4,225,212,1,128,137,104,192,106,97,0,53,217,119,224,32,0,74,
-50,226,102,7,2,83,116,114,239,90,1,129,236,0,57,169,73,224,57,1,
-226,161,13,228,208,3,226,120,5,224,50,2,65,105,0,54,224,186,0,1,
-95,56,205,118,0,54,237,164,0,2,49,48,53,128,53,235,254,5,237,12,
-0,0,95,87,117,65,2,0,49,226,172,3,103,33,0,54,170,250,0,83,
-100,162,1,49,52,80,76,159,126,233,144,9,64,136,225,67,0,154,177,128,
-20,225,179,1,69,94,137,251,64,92,140,5,100,251,72,14,64,94,0,51,
-75,144,65,29,64,31,140,11,96,120,84,201,71,140,1,32,35,97,0,135,
-153,75,56,104,71,64,44,140,35,0,90,141,68,100,77,98,112,240,168,13,
-230,250,0,230,247,7,227,103,3,134,142,231,73,0,247,35,2,230,210,0,
-161,192,129,248,128,112,238,98,2,240,53,9,224,91,5,64,47,155,164,230,
-210,12,6,116,121,112,101,82,101,112,161,255,160,121,174,233,2,52,32,79,
-78,221,64,182,226,239,2,132,252,224,87,0,130,33,98,151,0,53,136,205,
-98,8,224,97,1,8,109,107,84,121,67,111,110,65,112,192,100,132,28,105,
-13,224,64,35,224,162,0,243,240,0,226,133,0,64,175,130,238,129,247,224,
-39,35,2,95,53,52,78,33,0,52,95,206,240,151,0,227,151,0,236,30,
-4,162,174,142,13,233,208,34,202,205,128,150,233,207,35,164,181,226,64,6,
-225,224,7,64,39,194,45,224,24,1,225,246,20,5,99,111,109,112,97,114,
-139,40,100,196,0,54,92,39,129,150,128,66,144,84,197,54,234,70,1,234,
-80,4,243,80,2,106,0,233,234,0,128,5,169,107,128,68,160,74,232,130,
-8,64,58,114,124,238,50,4,234,85,1,98,104,66,223,112,153,232,231,1,
-237,206,1,101,45,196,140,131,35,128,8,227,41,4,226,89,10,1,60,62,
-233,200,2,160,161,128,73,1,49,57,224,81,45,225,87,4,64,0,198,5,
-224,57,24,1,69,81,192,52,246,228,0,193,199,193,53,193,50,97,41,227,
-154,7,224,95,23,1,76,84,232,133,4,224,90,14,74,13,160,87,225,144,
-4,224,93,23,0,71,192,93,160,47,138,74,231,3,23,160,37,224,29,5,
-231,124,2,96,7,96,4,230,84,4,163,135,145,49,1,75,50,96,196,245,
-198,1,130,17,0,57,224,14,3,239,211,15,9,87,97,114,110,105,110,103,
-58,32,99,239,220,10,132,155,147,182,3,51,32,95,57,105,40,224,77,19,
-4,32,121,101,116,44,160,60,123,84,70,198,224,183,6,247,89,3,164,110,
-64,202,145,210,158,170,1,52,49,80,229,64,9,72,86,119,126,0,58,96,
-208,128,34,4,66,32,73,79,46,87,92,3,111,114,109,73,149,180,99,76,
-65,0,70,159,81,66,64,51,96,104,96,16,96,62,144,123,228,180,34,175,
-227,128,204,228,179,124,1,61,61,228,174,0,225,155,0,100,187,105,239,159,
-187,138,122,228,195,3,246,48,6,228,125,10,236,251,2,64,55,237,8,8,
-228,138,92,1,38,38,228,138,71,193,46,64,0,228,133,32,2,84,114,117,
-228,188,0,227,188,22,227,181,15,129,66,161,96,228,77,0,228,174,6,224,
-135,23,3,70,97,108,115,192,136,128,49,96,5,96,4,228,11,10,82,134,
-84,13,65,144,2,90,32,90,238,138,0,130,18,147,140,0,48,95,158,111,
-122,98,28,237,31,0,108,44,96,10,224,144,0,165,24,129,211,152,62,232,
-7,4,160,28,228,30,3,0,49,99,116,160,218,5,55,54,53,32,95,54,
-106,198,1,49,49,182,10,4,95,49,56,51,32,149,131,0,64,127,120,150,
-24,64,4,224,198,1,0,54,163,228,0,89,128,156,1,80,32,255,62,6,
-5,102,111,108,100,114,49,161,23,98,141,98,228,108,227,64,14,174,224,224,
-10,2,96,232,192,94,139,11,227,138,0,227,190,10,227,181,4,129,201,65,
-157,99,167,164,176,97,131,64,77,235,57,0,246,130,3,131,114,224,137,11,
-240,30,1,93,189,2,54,51,53,98,63,235,42,3,228,81,65,128,76,228,
-81,24,64,9,245,49,0,96,80,142,15,163,115,217,42,107,230,171,235,197,
-7,231,147,8,96,110,130,63,227,8,0,64,28,98,34,205,81,96,214,2,
-54,50,48,162,29,174,90,228,255,30,1,116,111,224,171,42,226,235,4,241,
-253,9,192,120,224,171,8,128,195,195,15,224,183,13,227,152,2,230,231,8,
-230,91,21,224,199,0,130,73,0,51,98,73,2,85,32,75,71,103,67,26,
-101,97,197,103,64,33,235,115,40,247,63,3,64,0,227,18,4,162,108,237,
-108,3,226,119,9,226,96,1,189,183,161,246,224,16,1,224,13,13,203,22,
-160,89,226,186,11,224,47,6,225,134,1,192,54,96,108,244,216,7,96,73,
-198,204,160,93,237,226,1,162,54,227,23,7,0,82,229,151,3,224,23,2,
-224,51,19,2,66,32,82,79,33,0,56,67,155,229,118,1,128,5,226,150,
-9,2,109,97,120,97,108,162,152,224,31,9,1,105,110,224,31,2,226,41,
-5,113,158,133,176,194,160,98,154,237,138,1,195,215,101,189,165,151,0,52,
-64,180,229,67,8,226,171,3,162,53,138,33,129,185,225,142,0,239,173,14,
-225,175,1,160,135,0,50,154,162,197,214,160,30,196,195,99,75,78,187,156,
-111,162,84,193,152,226,92,6,147,42,160,12,2,49,52,48,97,115,161,229,
-166,129,1,95,57,128,73,224,17,0,64,39,190,44,1,95,54,100,16,198,
-145,0,67,80,202,254,13,1,3,95,50,50,49,102,187,2,57,56,48,192,
-20,64,60,110,230,161,71,93,65,224,200,0,242,17,0,91,46,128,117,226,
-220,0,228,34,2,161,114,240,95,8,224,157,5,96,0,65,107,138,194,0,
-85,131,100,195,40,95,206,0,49,224,169,0,225,90,0,1,49,49,123,146,
-132,117,135,68,97,205,147,67,0,57,64,178,128,11,64,229,64,14,160,20,
-224,127,3,192,208,0,58,128,234,96,123,0,90,199,192,64,20,170,241,132,
-49,229,22,1,65,179,0,50,103,181,101,2,128,43,136,62,225,3,3,97,
-0,252,38,7,228,223,0,129,32,252,42,35,224,235,2,224,58,9,245,194,
-4,252,84,6,64,158,0,54,160,202,253,241,73,64,200,134,38,244,36,0,
-253,152,0,140,142,139,101,224,54,1,160,200,126,245,253,229,11,224,81,42,
-160,77,192,237,136,165,129,98,192,58,222,23,171,251,254,23,6,1,48,51,
-97,85,7,57,55,56,32,95,57,51,49,64,240,226,117,0,213,147,0,89,
-105,79,64,113,231,44,11,0,90,97,89,170,43,167,62,0,89,231,62,4,
-64,24,224,57,1,64,1,233,117,0,136,19,226,241,0,68,79,248,127,1,
-224,0,0,64,218,137,50,228,144,0,160,8,228,121,3,228,156,15,229,162,
-1,251,137,0,241,105,0,224,2,0,96,40,224,76,1,251,201,1,224,39,
-6,251,201,11,224,37,0,124,37,128,29,96,68,224,61,16,160,62,224,29,
-7,96,2,67,232,229,63,6,64,0,229,63,1,229,44,15,249,107,1,192,
-22,224,208,0,135,32,160,218,227,166,2,2,51,55,50,226,138,6,237,153,
-7,229,167,0,128,56,0,57,102,244,97,110,1,49,51,107,254,0,67,250,
-48,2,224,64,2,224,165,2,110,88,224,5,4,163,130,242,230,5,229,212,
-0,96,118,1,53,54,164,181,225,23,0,248,155,10,64,8,239,93,3,225,
-35,4,64,150,160,57,233,188,21,100,175,65,8,165,1,133,37,0,56,241,
-204,0,238,206,1,225,166,2,230,163,2,163,88,224,100,43,128,11,224,95,
-0,96,77,163,44,70,156,230,169,1,192,48,249,37,3,192,51,224,243,2,
-224,2,0,172,185,128,160,193,91,224,18,6,194,22,226,204,5,224,60,11,
-233,73,2,226,31,1,221,240,231,205,6,195,205,98,234,193,211,197,119,64,
-39,0,55,98,122,96,249,200,241,64,22,130,236,100,230,150,116,249,133,0,
-162,122,225,62,11,160,71,231,163,7,225,120,6,236,20,4,64,107,197,15,
-143,108,201,57,239,103,6,160,105,96,12,229,168,0,225,41,3,224,2,6,
-193,76,224,246,3,225,84,18,252,20,8,225,99,88,0,52,167,181,225,99,
-59,225,10,9,227,201,2,230,191,1,164,103,225,128,6,1,52,48,232,145,
-0,224,62,0,227,221,66,64,10,245,138,1,227,236,48,227,237,8,224,12,
-3,128,166,175,120,238,204,3,246,5,15,192,63,171,77,192,69,227,231,8,
-96,159,129,183,232,55,5,228,64,20,228,29,11,226,184,3,192,39,65,123,
-126,211,143,3,96,82,69,208,233,128,1,10,114,101,99,83,101,108,69,114,
-114,111,114,137,125,241,190,6,234,210,6,250,12,0,71,162,0,51,232,125,
-1,64,210,224,40,1,124,192,224,99,1,2,103,101,116,206,92,224,77,3,
-64,66,142,172,224,42,1,6,115,101,116,70,105,101,108,77,1,64,30,140,
-149,224,30,1,13,68,97,116,97,46,82,101,99,111,114,100,115,46,83,224,
-43,5,139,85,224,117,4,224,30,1,100,3,224,74,17,2,72,97,115,224,
-43,3,139,15,163,167,0,54,116,74,99,142,0,54,128,30,235,2,1,160,
-28,128,6,64,26,0,54,171,94,161,193,235,30,0,225,200,2,227,103,16,
-64,63,137,208,66,80,66,162,82,228,64,21,137,11,78,133,83,148,98,135,
-162,89,234,191,0,98,203,234,191,15,98,130,67,99,128,210,128,156,192,23,
-224,1,1,233,81,17,230,50,8,160,11,192,31,128,85,226,238,1,230,154,
-3,248,111,2,224,43,2,192,5,131,200,1,49,51,91,83,237,64,9,195,
-10,251,106,0,105,185,226,205,1,1,51,57,67,0,5,95,49,48,51,55,
-32,145,105,97,92,150,224,128,51,118,238,64,135,1,64,90,150,183,160,6,
-64,4,160,10,3,95,49,55,57,226,25,2,27,92,51,52,38,115,114,99,
-47,77,105,99,114,111,72,115,47,84,121,112,101,67,104,101,99,107,46,104,
-115,64,27,7,44,49,49,55,54,58,50,53,241,48,0,100,206,141,124,237,
-112,5,192,238,225,98,2,141,211,225,16,4,100,23,165,66,192,2,171,27,
-96,93,192,247,97,98,224,5,4,170,199,224,92,0,124,153,229,170,7,224,
-17,9,234,184,0,192,56,225,39,19,224,61,7,235,83,0,215,236,224,21,
-0,233,224,3,224,247,5,234,130,21,160,44,231,5,4,199,2,2,48,53,
-50,163,7,192,40,192,114,229,149,0,235,6,1,174,175,194,52,134,224,239,
-153,12,230,234,18,224,175,3,2,95,51,56,208,127,2,32,95,57,229,182,
-2,237,33,1,206,100,128,253,133,225,162,124,225,78,12,225,85,0,192,201,
-237,5,4,119,115,128,0,225,90,0,178,103,129,97,134,252,128,108,173,102,
-192,171,139,65,65,5,0,50,84,37,96,124,165,239,229,211,3,165,193,226,
-238,1,7,110,111,77,101,116,104,111,100,230,3,2,235,142,0,224,248,22,
-130,72,226,85,5,160,13,224,23,4,190,251,206,17,224,248,10,225,36,12,
-193,13,163,164,0,51,133,136,195,180,2,55,55,51,241,106,4,211,6,224,
-162,25,232,88,1,226,245,18,66,7,251,201,5,101,200,163,149,224,161,6,
-165,189,199,16,146,43,96,5,2,95,57,57,114,111,243,231,4,11,80,114,
-105,109,105,116,105,118,101,115,46,61,191,87,64,62,135,12,64,102,70,7,
-101,177,229,233,1,143,86,233,57,0,242,217,6,224,25,19,96,91,135,73,
-227,144,0,96,25,224,11,2,192,8,97,141,64,47,221,102,164,178,1,57,
-54,118,95,99,167,72,119,70,157,2,51,56,56,67,59,0,54,228,115,2,
-0,66,66,107,102,235,2,49,49,52,97,153,0,58,133,218,70,212,4,51,
-54,57,32,75,114,246,224,1,5,118,105,96,0,224,25,7,128,1,230,101,
-0,224,34,15,224,32,3,224,29,20,2,95,57,54,193,19,96,152,135,231,
-135,173,231,73,0,65,225,254,122,2,143,149,0,85,130,188,133,168,230,215,
-9,65,12,100,223,231,68,16,164,142,96,38,230,231,12,106,7,228,236,5,
-64,162,232,107,2,224,88,5,1,49,48,185,40,128,229,64,90,136,93,97,
-127,96,59,0,54,194,79,225,193,1,0,67,225,188,1,123,114,129,188,64,
-44,168,121,225,164,5,250,152,2,225,86,18,225,149,54,224,26,17,224,23,
-14,224,20,11,224,17,8,224,14,5,225,249,3,96,0,64,242,201,86,199,
-150,0,48,93,154,219,17,248,230,2,68,122,0,50,65,221,165,131,225,248,
-2,101,125,0,49,74,252,96,15,77,212,166,129,96,41,224,67,1,103,157,
-243,137,0,71,6,64,7,226,46,9,92,255,194,45,224,61,0,65,174,194,
-144,234,91,0,244,43,1,64,43,135,45,75,4,64,44,0,50,138,42,195,
-147,226,219,1,97,4,95,179,66,63,236,60,1,84,5,245,175,0,224,226,
-5,2,95,57,55,66,56,232,180,8,65,64,196,239,0,89,198,243,65,110,
-69,227,169,252,165,62,245,128,5,140,63,224,33,18,0,50,100,106,198,39,
-224,190,4,192,25,0,85,224,219,1,131,54,224,186,1,224,49,5,160,109,
-181,110,64,43,254,123,1,224,44,9,224,43,1,229,119,1,171,226,229,233,
-0,64,247,197,168,139,84,128,188,232,145,6,232,205,0,0,95,65,87,128,
-13,98,1,96,34,139,139,128,125,225,205,0,96,160,72,142,1,51,50,96,
-208,243,103,0,224,96,33,2,49,51,56,66,1,96,103,233,161,2,224,56,
-40,96,148,233,137,5,129,28,1,95,52,69,52,193,7,230,84,1,86,0,
-242,137,1,195,119,199,102,0,80,139,173,120,157,130,103,224,252,24,2,95,
-51,55,177,29,232,67,0,231,196,0,128,208,160,224,241,57,4,192,178,73,
-0,192,73,64,0,234,54,1,224,60,0,241,116,9,224,52,5,224,112,2,
-96,48,234,158,6,224,44,4,225,103,3,224,39,1,224,36,5,0,66,96,
-35,224,234,10,1,95,51,99,96,131,98,224,6,1,162,114,65,102,135,139,
-138,105,227,103,0,96,78,0,64,224,113,2,227,79,16,134,38,227,146,19,
-131,250,160,197,224,33,12,195,26,227,51,9,227,52,2,129,205,129,172,248,
-202,4,69,22,65,10,1,49,55,224,71,2,248,153,4,225,158,0,254,93,
-3,162,133,66,58,0,50,106,198,1,49,51,133,197,195,149,207,81,231,193,
-6,106,230,2,49,50,54,69,211,2,50,54,56,233,121,3,1,98,105,221,
-93,133,4,237,137,7,107,241,68,38,95,89,90,235,224,58,1,0,78,255,
-136,1,224,239,0,196,36,129,235,0,95,183,194,194,211,128,255,243,232,0,
-96,199,99,102,192,199,229,85,7,225,201,0,161,225,225,128,1,166,67,132,
-153,232,136,0,64,105,183,97,140,24,64,89,232,21,3,224,137,6,2,50,
-55,52,67,139,224,127,1,228,35,11,130,166,224,205,1,160,34,160,231,224,
-28,7,225,3,33,96,22,64,8,167,83,224,249,2,231,28,5,165,172,238,
-247,2,148,229,224,91,14,101,38,0,67,226,78,5,224,16,11,231,213,7,
-97,142,92,75,225,226,1,5,102,117,110,100,101,112,97,229,0,90,239,166,
-12,224,83,3,131,137,227,52,3,128,8,236,80,14,129,177,224,184,3,77,
-101,99,249,226,24,2,199,148,224,45,11,1,49,51,136,28,224,46,10,224,
-171,9,227,171,11,194,25,129,94,225,184,4,224,101,0,96,102,99,165,224,
-102,10,96,0,226,128,1,231,190,14,96,42,228,110,18,212,248,224,159,8,
-192,24,160,159,224,255,10,137,91,224,152,11,224,78,10,203,120,237,70,6,
-227,41,5,226,211,0,228,174,3,0,57,139,28,229,152,1,1,51,55,234,
-61,1,167,141,224,59,1,229,38,2,160,113,232,23,0,227,169,57,225,122,
-2,129,17,227,137,16,224,201,9,64,183,180,113,0,51,129,220,135,225,226,
-41,3,224,172,132,163,221,235,41,7,128,122,224,187,9,226,248,6,230,39,
-4,107,207,64,142,228,236,0,0,58,139,115,239,5,0,0,80,180,49,128,
-139,0,32,137,111,64,36,213,253,229,108,1,249,153,6,109,171,1,50,57,
-168,212,109,139,0,51,64,74,75,128,242,71,0,226,114,2,253,10,4,193,
-81,0,48,176,175,229,127,26,227,170,3,225,72,29,110,66,229,107,1,254,
-95,4,69,5,1,57,53,122,49,225,197,4,1,52,49,166,100,229,139,11,
-227,140,7,197,116,1,49,48,144,4,1,48,52,78,186,225,255,2,224,92,
-8,225,219,10,160,92,235,14,1,228,145,13,160,124,0,54,133,234,139,21,
-224,122,19,96,0,65,200,239,59,1,174,6,225,233,7,0,54,226,14,5,
-227,190,1,224,36,3,143,24,0,83,64,99,0,54,141,101,64,119,64,25,
-238,63,1,1,80,32,132,109,0,80,128,24,205,23,96,24,98,124,160,24,
-236,56,1,96,26,227,83,1,224,112,3,203,85,0,90,65,10,2,90,32,
-64,84,0,64,23,209,146,230,132,4,233,27,7,0,58,129,244,224,101,0,
-96,103,163,49,225,9,14,96,51,194,244,237,191,0,97,136,235,207,2,239,
-15,4,0,50,146,91,192,98,123,190,160,13,112,50,235,4,2,229,119,8,
-194,248,197,59,192,96,231,157,5,161,245,161,238,224,104,5,234,44,0,131,
-53,224,29,0,234,62,6,224,40,1,236,255,4,232,87,0,3,95,49,49,
-51,76,146,250,240,3,66,72,139,174,74,118,1,50,50,67,220,68,76,96,
-26,5,57,53,32,85,32,65,160,91,232,32,11,97,73,130,117,4,95,57,
-57,55,32,64,14,0,54,226,11,3,139,105,130,12,74,20,64,40,2,54,
-53,53,74,107,251,48,3,244,31,2,8,67,111,110,115,116,114,97,105,110,
-155,66,64,55,226,118,4,139,127,160,81,130,119,136,134,131,79,249,55,0,
-224,248,3,96,26,224,5,0,96,236,206,98,213,32,161,144,231,213,7,164,
-173,167,217,224,39,11,226,106,2,231,144,8,224,27,2,131,241,98,225,245,
-102,1,0,83,98,11,225,206,0,148,23,230,72,5,96,177,250,81,5,64,
-26,1,67,32,245,246,28,160,75,233,163,16,224,141,0,228,138,3,78,218,
-224,15,1,149,132,68,160,182,10,0,83,87,160,151,166,182,162,160,75,246,
-35,10,128,98,225,23,8,232,168,2,213,11,169,62,185,107,129,15,232,106,
-10,160,25,255,62,0,225,54,1,128,11,161,81,224,27,0,245,108,0,225,
-11,0,225,87,17,193,88,160,0,224,105,83,128,29,201,82,147,140,2,50,
-56,51,246,195,1,250,217,0,160,0,245,159,8,96,55,245,121,13,128,126,
-140,66,0,53,69,113,245,125,7,103,62,87,57,245,148,8,166,160,0,90,
-143,118,236,61,5,227,92,0,104,6,1,51,52,64,134,70,140,142,124,228,
-25,1,68,63,0,49,224,85,3,3,85,32,75,50,64,76,0,80,65,237,
-251,8,1,226,84,1,255,219,7,67,217,230,56,3,253,166,15,195,195,65,
-136,64,117,0,48,130,191,111,44,106,6,97,98,96,228,192,86,248,21,5,
-253,255,16,225,212,1,244,174,13,224,35,5,75,64,171,57,226,200,2,165,
-233,224,40,0,122,19,227,103,2,101,144,0,51,115,158,131,179,70,246,103,
-230,84,212,163,84,224,47,5,236,137,2,96,59,136,83,224,227,3,224,73,
-17,128,255,135,82,0,75,96,145,223,31,192,99,210,234,183,80,64,47,64,
-97,224,47,10,1,66,32,224,43,11,199,81,249,65,19,156,125,249,65,14,
-1,51,53,102,119,64,75,134,83,98,57,3,75,52,32,90,224,1,0,192,
-203,128,37,0,54,134,80,249,103,9,227,138,0,224,1,11,227,226,1,224,
-34,14,224,32,3,224,29,20,224,26,17,224,23,14,224,20,11,0,95,247,
-169,5,64,215,135,40,67,182,129,47,2,51,53,51,102,239,69,108,64,240,
-1,49,51,139,237,0,51,239,203,3,2,100,102,108,103,50,64,39,199,23,
-64,103,249,185,5,131,115,105,214,227,116,3,130,55,247,190,16,235,21,24,
-0,51,72,227,170,154,0,57,213,49,64,68,255,254,6,68,230,130,169,230,
-190,1,233,131,2,227,206,0,64,19,166,44,214,208,235,53,4,198,142,246,
-50,0,96,246,132,52,195,37,75,64,236,185,25,96,209,249,12,2,64,203,
-64,33,64,79,132,45,244,224,3,237,13,23,165,180,4,95,49,51,52,57,
-129,178,131,113,231,152,0,233,175,3,64,37,107,209,225,31,0,0,58,128,
-55,224,48,0,231,211,1,240,88,2,232,197,0,228,100,1,224,25,1,103,
-248,226,103,0,232,169,11,231,106,2,224,46,20,0,49,194,149,228,209,3,
-224,47,19,197,239,224,92,0,134,44,224,47,16,194,37,224,198,8,233,146,
-16,165,99,64,24,196,59,249,42,7,226,40,0,235,145,27,229,93,2,226,
-119,0,96,39,225,164,6,163,17,96,26,235,3,3,249,138,2,224,32,0,
-224,152,8,224,231,0,128,31,104,80,224,36,0,193,39,96,29,240,130,7,
-192,119,67,193,64,19,99,187,68,17,231,68,1,66,131,2,54,49,55,98,
-89,150,33,1,49,48,231,71,0,98,168,70,242,228,36,1,1,36,120,245,
-210,3,229,211,1,129,176,227,255,4,240,241,5,192,139,240,170,5,0,48,
-165,201,225,185,0,252,70,6,2,48,55,52,64,131,239,136,1,226,24,0,
-174,213,225,128,1,224,252,13,172,145,1,48,56,195,155,128,22,224,77,7,
-226,102,19,185,85,225,158,16,224,31,5,97,158,241,5,4,225,24,6,143,
-136,72,16,239,136,8,224,142,1,225,9,7,96,94,224,170,2,77,137,66,
-56,135,188,2,49,50,50,232,85,4,64,131,226,154,3,225,19,5,3,66,
-32,95,56,65,131,2,53,52,54,64,4,87,189,226,206,1,0,79,78,64,
-237,97,1,2,79,32,35,73,231,167,53,231,60,1,227,207,5,225,53,11,
-171,110,225,100,1,224,40,15,233,139,6,224,40,3,235,191,5,227,159,2,
-225,102,8,226,5,8,225,111,3,160,70,1,95,49,94,119,99,4,0,50,
-90,71,142,198,0,56,101,122,236,116,1,140,65,193,108,131,60,160,5,64,
-3,224,117,1,224,114,6,224,120,9,66,221,164,210,128,179,224,183,0,224,
-67,21,224,73,20,224,74,2,224,76,0,229,0,5,160,62,128,244,236,98,
-5,226,83,8,2,95,49,49,70,135,224,66,14,194,142,236,167,7,226,151,
-7,129,44,128,168,192,79,229,26,6,192,69,160,66,97,72,224,78,0,236,
-218,4,64,66,205,222,96,29,229,47,4,0,56,65,193,224,0,0,199,237,
-224,178,4,229,123,5,163,25,224,141,5,229,168,15,160,44,224,120,23,64,
-29,234,251,4,225,171,5,0,50,108,217,228,107,3,224,48,24,160,8,224,
-48,0,227,94,0,227,12,16,163,239,128,26,228,115,10,86,93,0,55,172,
-83,224,77,0,225,130,2,195,186,225,133,0,130,75,225,81,2,96,123,228,
-142,1,192,58,68,247,67,24,235,74,0,192,182,173,147,96,221,199,38,1,
-50,53,252,74,4,18,97,100,32,102,105,110,97,108,32,100,111,32,115,116,
-97,116,101,109,101,177,165,226,95,4,235,124,8,160,16,228,34,0,232,122,
-3,228,138,2,229,198,7,144,177,224,74,5,233,219,0,225,128,0,2,95,
-49,50,164,254,224,191,0,229,135,3,194,218,192,29,218,192,96,90,96,101,
-224,8,43,141,127,230,139,1,239,115,1,227,197,7,226,171,0,192,66,96,
-68,135,171,227,125,1,192,15,128,32,238,190,4,109,61,0,53,107,109,134,
-45,205,234,160,0,128,50,160,125,232,31,9,224,33,4,0,67,134,58,192,
-22,193,33,227,79,2,76,89,225,71,0,174,73,128,164,135,177,96,36,144,
-174,133,249,65,126,96,8,238,175,0,0,80,210,29,66,197,134,138,1,55,
-52,96,34,224,58,5,97,222,129,204,96,253,192,247,103,96,0,53,254,137,
-4,3,102,97,105,108,162,103,64,173,1,95,56,64,165,1,95,57,129,127,
-254,235,11,96,141,231,23,0,199,181,224,84,5,2,62,62,61,128,44,233,
-38,11,0,98,194,214,193,32,226,83,0,226,8,5,226,17,13,229,188,1,
-160,34,225,242,65,225,111,0,224,209,12,225,36,0,230,153,9,234,199,4,
-78,90,0,57,181,228,160,79,160,0,128,142,242,245,2,196,156,160,2,224,
-24,1,232,6,4,167,220,228,248,11,224,39,4,172,83,229,32,24,169,148,
-224,130,2,224,211,11,225,119,9,96,17,0,66,64,87,64,216,239,31,4,
-9,70,114,111,109,84,104,101,110,84,111,226,74,2,0,66,177,44,1,39,
-66,116,213,227,55,4,224,125,23,224,119,0,160,72,224,115,18,162,104,224,
-101,83,160,213,224,99,13,225,151,24,233,238,4,225,151,18,162,42,224,179,
-16,192,173,64,18,224,169,14,96,167,224,159,4,224,77,2,196,18,227,110,
-0,232,172,4,228,150,0,86,162,247,40,6,64,50,144,142,224,144,1,233,
-132,11,96,22,232,27,2,135,107,1,52,50,197,203,128,238,230,162,3,224,
-17,1,225,20,2,97,19,224,14,0,128,1,224,109,0,213,22,160,80,194,
-148,204,77,232,229,6,132,14,1,49,50,108,137,84,75,0,57,141,199,95,
-147,225,32,3,224,216,4,103,162,97,97,244,121,0,193,15,101,127,193,44,
-177,39,128,41,242,103,1,224,81,0,224,136,1,102,62,96,132,235,98,13,
-171,97,97,217,128,99,213,189,0,50,159,116,224,85,3,146,97,1,50,57,
-227,151,1,224,51,7,246,223,0,197,166,128,60,228,121,2,200,212,193,245,
-231,74,14,249,27,6,161,96,169,43,141,94,69,220,225,89,11,97,73,226,
-11,4,0,66,141,87,97,48,0,56,238,26,0,224,44,0,224,159,6,225,
-240,11,194,185,231,84,1,243,128,5,224,164,39,226,243,0,226,50,9,239,
-138,2,205,29,97,187,224,208,0,192,205,110,38,224,202,2,96,0,229,211,
-1,234,75,7,229,177,11,160,46,192,213,192,51,224,48,10,171,104,227,68,
-0,228,114,15,160,145,224,87,5,64,44,96,7,224,41,3,243,168,1,65,
-125,229,238,1,128,84,235,61,6,97,110,225,42,1,97,166,97,124,80,198,
-1,56,51,160,20,240,198,7,237,232,6,226,120,5,161,205,224,29,0,226,
-117,8,225,209,8,226,164,0,225,218,2,128,138,2,49,48,56,66,85,64,
-81,1,95,56,89,236,0,95,95,148,128,123,225,185,2,1,95,53,140,133,
-224,149,0,236,127,1,96,70,227,95,7,226,115,7,237,24,5,208,56,226,
-237,5,200,2,96,0,225,134,4,202,189,225,140,11,245,142,5,229,131,6,
-229,111,10,224,42,5,165,4,235,190,4,250,182,4,226,235,9,160,17,226,
-236,3,68,205,0,51,120,219,224,213,10,234,225,1,192,30,192,129,192,13,
-108,143,192,24,250,5,10,193,213,233,244,1,160,2,128,23,224,18,4,129,
-248,160,48,230,56,1,96,2,182,156,224,69,4,96,18,224,39,4,224,152,
-2,198,247,149,222,227,162,6,224,2,0,192,157,224,193,1,160,57,225,164,
-1,198,18,224,67,6,224,153,0,224,67,27,228,252,2,224,35,3,194,104,
-247,159,6,224,39,8,129,112,224,19,3,238,23,0,238,234,5,225,238,5,
-160,54,128,137,228,109,2,225,59,0,224,135,0,192,196,224,114,8,192,14,
-96,53,243,234,4,224,245,9,224,50,6,64,86,161,123,224,70,3,98,221,
-224,75,5,243,176,0,224,244,22,224,79,69,225,2,6,194,44,0,83,64,
-72,152,139,158,64,67,30,224,237,8,129,66,224,40,9,194,44,64,11,228,
-116,1,160,0,229,88,16,100,193,131,227,237,185,19,8,114,111,109,83,116,
-114,105,110,103,246,119,0,224,219,5,224,95,5,237,50,2,228,193,5,0,
-49,183,222,192,60,225,185,8,223,154,227,105,6,228,159,2,213,115,87,49,
-173,138,224,0,2,224,88,1,226,224,8,227,76,1,224,125,10,224,191,2,
-229,5,11,226,206,83,246,51,4,224,50,12,193,241,225,243,6,86,25,65,
-236,227,185,1,193,53,64,161,162,6,112,12,90,207,4,95,49,51,49,48,
-64,12,0,52,226,163,1,226,23,60,6,82,97,116,105,111,110,97,207,217,
-226,25,153,226,27,10,227,100,0,224,39,5,227,183,1,228,235,7,226,34,
-16,226,35,13,230,116,0,224,131,2,229,189,0,224,113,13,192,1,226,47,
-17,224,56,12,230,36,6,224,121,1,224,45,4,0,83,226,75,7,1,49,
-51,236,233,1,66,70,224,67,46,227,99,1,224,135,2,233,116,7,225,10,
-8,224,73,11,237,52,6,227,4,16,2,49,51,52,226,255,0,228,249,1,
-227,8,21,1,49,53,64,11,0,50,197,36,135,249,226,87,0,128,49,146,
-201,1,56,57,74,110,96,48,0,55,129,119,0,67,75,217,105,181,0,51,
-147,13,224,108,15,224,58,9,128,0,227,113,58,6,73,110,116,101,103,101,
-114,227,112,150,193,141,79,153,3,75,32,95,50,156,133,127,40,161,16,64,
-72,252,156,2,1,49,55,171,95,224,171,4,65,237,64,46,2,95,49,49,
-170,42,233,137,2,128,47,64,1,0,83,167,160,233,39,3,233,33,1,224,
-228,1,233,27,13,192,29,193,199,233,21,9,192,33,129,36,225,33,2,226,
-210,0,226,70,0,169,252,193,30,148,230,226,56,1,0,57,252,104,0,224,
-119,18,231,245,8,224,119,59,228,229,2,216,149,80,13,248,161,0,64,0,
-228,190,4,217,206,228,204,1,225,59,1,130,252,132,159,137,7,224,28,2,
-96,79,96,180,67,39,140,158,192,197,233,56,1,226,148,9,0,50,110,224,
-247,147,4,229,79,9,128,91,161,54,224,115,1,160,221,225,46,2,231,212,
-22,238,48,1,225,100,5,192,160,225,7,8,227,67,33,227,51,1,227,60,
-5,226,187,1,192,208,241,5,1,241,14,4,254,119,21,224,85,0,225,236,
-1,2,49,48,51,208,27,192,95,128,74,224,104,9,225,115,7,190,181,226,
-133,1,195,77,128,99,229,195,7,226,163,0,0,50,241,126,2,216,19,251,
-172,2,163,200,1,49,49,67,243,160,75,85,164,0,80,244,49,0,97,46,
-0,90,224,53,6,1,64,64,228,76,0,1,95,54,78,43,0,48,231,159,
-5,225,172,9,228,14,0,237,131,6,3,32,95,55,54,64,147,0,51,241,
-53,0,192,202,161,100,228,62,4,1,95,53,165,207,226,53,4,226,47,5,
-0,50,102,115,160,50,96,127,192,108,224,41,4,2,83,32,73,184,105,130,
-232,225,48,5,242,169,5,0,85,67,186,97,63,208,221,3,64,95,51,56,
-131,5,0,49,235,199,3,226,0,4,197,121,96,0,67,225,69,34,0,80,
-64,7,0,49,99,248,252,151,2,224,153,4,97,144,0,48,114,153,116,19,
-0,52,103,245,225,34,1,225,241,0,241,24,4,226,23,1,129,175,164,47,
-64,160,64,8,240,241,5,0,54,153,1,224,182,1,98,24,0,50,116,190,
-186,153,3,95,49,53,52,64,4,0,54,230,216,3,22,116,99,69,120,112,
-114,58,32,99,97,110,110,111,116,32,104,97,110,100,108,101,58,32,134,228,
-116,212,68,206,116,211,3,51,32,95,57,71,201,244,216,5,224,92,9,2,
-79,32,35,65,37,130,109,160,55,65,32,128,0,224,60,3,2,58,49,51,
-81,168,1,10,65,192,67,2,48,57,53,99,84,2,57,51,32,96,28,0,
-55,96,28,161,169,230,155,2,144,245,96,21,230,200,2,0,48,87,46,181,
-173,0,57,104,108,129,200,64,73,0,54,128,102,1,57,56,98,154,1,48,
-54,128,95,0,53,224,21,5,0,53,128,21,0,52,224,21,4,66,159,64,
-21,0,51,96,21,225,57,1,13,80,114,105,109,105,116,105,118,101,115,46,
-87,111,114,91,58,64,37,0,50,224,81,5,0,55,128,21,0,49,192,228,
-65,177,137,3,64,12,0,51,96,12,0,57,64,5,147,90,64,8,0,50,
-96,116,103,123,96,67,91,238,236,69,0,128,38,64,82,0,48,224,82,6,
-97,56,0,51,65,86,224,68,0,96,44,74,240,201,188,5,57,49,52,32,
-95,53,218,186,137,202,224,31,19,115,107,224,31,15,68,37,3,49,51,51,
-56,124,167,117,39,0,54,98,109,224,57,0,162,62,224,223,2,98,178,138,
-5,64,32,1,95,57,65,135,224,21,10,131,21,224,59,4,160,110,128,230,
-224,45,1,4,95,49,56,51,32,164,167,2,38,48,46,131,128,224,56,5,
-224,45,13,224,44,31,96,36,192,44,0,58,128,37,3,10,65,32,83,224,
-1,1,2,39,32,95,65,245,208,172,133,252,64,9,96,27,176,98,96,5,
-224,11,3,64,112,0,55,100,174,6,80,32,64,85,32,65,32,76,202,250,
-114,0,229,49,2,0,39,96,36,199,186,64,57,88,47,68,19,64,51,97,
-59,0,50,64,65,250,14,1,0,95,66,110,224,32,17,96,169,224,38,26,
-224,34,29,224,244,95,1,49,49,108,26,224,245,124,224,246,11,230,226,4,
-160,17,198,207,224,246,19,224,184,27,224,144,27,0,85,128,123,64,106,166,
-28,69,34,224,232,21,224,51,9,2,49,51,50,109,7,224,53,24,0,90,
-223,211,224,60,3,1,49,51,224,59,18,136,148,226,186,18,227,202,3,233,
-177,0,224,94,4,226,247,19,224,94,36,67,199,134,119,0,66,93,12,128,
-106,204,182,237,200,3,128,27,98,55,0,49,70,0,160,76,224,108,18,64,
-13,192,108,204,112,234,217,2,64,97,226,217,0,224,93,2,70,233,224,92,
-44,225,133,31,128,58,224,185,42,235,54,2,194,244,226,90,14,160,98,224,
-32,25,138,62,225,119,2,64,36,143,151,160,199,96,52,72,229,192,52,224,
-15,11,0,51,72,153,224,85,0,65,211,136,46,195,139,193,103,0,89,208,
-101,129,109,225,225,17,72,164,64,181,65,134,128,179,225,48,10,160,24,225,
-39,5,131,244,65,220,72,188,64,20,125,239,96,165,227,81,3,192,85,224,
-25,17,64,198,0,54,199,218,0,51,72,32,70,145,1,54,51,74,96,226,
-193,1,224,125,1,64,47,168,197,224,47,13,96,162,224,47,5,136,223,129,
-5,2,115,101,113,98,154,0,32,96,8,76,37,96,34,136,236,0,83,96,
-165,0,57,190,122,65,5,64,100,224,138,5,64,45,136,244,4,85,32,90,
-32,90,130,195,64,20,136,243,2,102,47,32,64,12,136,173,65,90,224,33,
-1,64,88,64,183,0,52,103,217,73,12,0,55,232,5,1,233,31,0,72,
-114,224,19,6,0,52,232,241,0,96,18,74,232,232,29,1,224,18,0,97,
-95,224,20,8,169,115,128,19,233,95,2,232,128,2,96,155,132,30,3,85,
-32,75,52,224,177,3,130,96,165,52,97,176,99,19,2,95,54,53,161,91,
-92,89,224,211,2,126,139,0,51,161,56,94,97,64,6,70,10,137,84,0,
-52,128,160,64,71,168,98,112,24,224,204,3,76,197,115,125,0,54,128,184,
-224,43,2,224,39,2,1,38,49,136,160,160,25,160,14,64,28,0,52,106,
-128,64,35,96,206,171,74,128,140,1,80,32,128,40,128,162,128,59,192,73,
-2,64,89,32,82,65,160,80,198,232,224,211,1,143,130,192,74,128,16,1,
-95,54,237,56,1,64,116,130,103,3,105,116,111,102,66,3,64,49,97,26,
-0,56,74,72,3,56,32,64,95,73,76,192,211,64,71,64,19,2,49,51,
-49,151,53,79,30,64,6,66,109,0,53,224,39,2,0,54,107,7,96,11,
-64,84,130,122,2,102,62,61,96,98,162,115,0,62,96,12,130,115,1,102,
-60,96,26,64,85,96,13,96,12,129,221,3,102,110,101,103,96,14,129,214,
-1,102,42,96,12,129,193,1,102,45,96,12,129,55,1,102,43,96,12,128,
-207,142,121,193,255,237,165,0,226,8,3,226,15,1,69,140,3,10,65,32,
-73,96,63,128,171,128,63,239,4,0,64,8,163,117,68,127,130,116,0,50,
-100,19,64,18,128,196,65,138,113,250,0,85,97,206,68,98,96,21,243,109,
-1,101,64,101,159,101,92,224,2,0,97,144,128,114,242,73,6,193,171,160,
-143,224,198,0,175,53,224,30,5,239,117,0,83,4,161,1,205,143,2,95,
-49,48,182,197,181,193,224,86,19,208,19,224,86,47,130,139,192,218,192,25,
-128,104,135,84,233,142,0,243,64,19,225,56,6,224,32,3,128,105,166,249,
-224,32,11,143,104,224,219,10,192,24,111,174,70,205,0,57,111,242,3,49,
-48,56,52,118,84,214,193,141,38,224,43,2,224,27,11,224,95,10,198,58,
-224,51,8,239,250,0,198,203,243,161,9,224,53,10,148,31,224,25,11,193,
-164,244,164,1,66,116,163,52,239,0,11,2,73,110,116,142,255,64,58,224,
-36,4,3,68,97,116,97,64,30,87,57,4,95,84,121,112,101,192,12,160,
-47,0,54,224,84,17,5,70,108,111,97,116,87,160,39,131,136,241,139,1,
-134,189,145,144,1,95,52,115,132,181,121,64,45,239,193,5,65,83,64,21,
-239,193,18,2,67,104,97,192,145,239,193,4,1,48,56,160,59,131,154,194,
-179,225,156,1,98,178,69,245,80,149,129,43,224,26,4,242,199,4,80,214,
-128,22,242,140,2,67,252,128,181,131,235,233,21,0,242,12,2,2,95,49,
-48,96,99,234,59,1,243,34,4,73,113,0,56,83,180,96,14,64,94,2,
-50,56,49,193,22,128,14,1,50,32,165,209,70,203,227,30,1,161,80,164,
-40,197,230,185,241,66,66,166,252,160,6,224,249,0,65,26,66,142,128,188,
-160,29,104,243,160,37,128,162,64,180,4,95,49,50,53,53,192,140,96,142,
-241,200,1,224,181,1,65,29,162,144,64,10,0,56,65,117,1,50,57,168,
-33,1,54,56,70,0,0,50,89,218,64,21,130,136,64,161,1,80,32,66,
-184,1,79,32,146,108,4,90,32,95,56,56,83,94,160,106,0,75,71,31,
-0,53,98,254,224,10,1,64,64,170,39,3,32,83,32,80,64,228,97,81,
-242,94,4,1,51,52,224,69,0,225,242,1,0,90,161,120,225,123,5,242,
-109,8,194,17,245,95,4,1,95,55,64,116,96,0,224,112,12,0,54,132,
-197,192,106,196,199,148,164,64,48,194,84,197,37,244,40,3,224,149,0,98,
-35,128,127,1,49,57,64,31,96,145,167,186,0,50,71,43,96,7,71,89,
-0,52,235,103,0,224,15,4,212,171,0,50,225,177,0,243,175,3,227,58,
-1,12,101,120,105,115,116,101,110,116,105,97,108,115,32,84,56,25,97,108,
-108,111,119,101,100,32,105,110,32,112,97,116,116,101,114,110,32,98,105,110,
-100,105,110,103,251,47,0,227,23,14,97,64,71,104,225,58,15,0,57,184,
-201,64,0,74,97,246,184,5,224,17,8,65,224,0,54,163,173,0,89,128,
-109,167,24,172,2,160,5,96,18,161,78,246,45,3,161,7,219,113,107,29,
-133,78,75,219,66,66,96,82,245,223,19,2,56,50,50,64,4,96,143,252,
-67,2,2,99,110,83,161,12,195,118,225,208,2,248,28,2,225,244,0,195,
-63,118,152,227,229,6,66,117,134,170,98,52,206,93,96,12,225,15,4,64,
-93,199,94,231,102,2,224,34,3,228,5,0,88,40,192,32,65,135,2,55,
-57,56,227,66,0,237,55,4,1,95,55,67,155,128,49,68,85,160,36,182,
-134,132,43,97,62,109,211,128,197,73,63,192,107,64,104,131,19,164,87,160,
-6,128,0,64,57,67,8,225,176,0,165,16,227,49,2,0,49,148,98,225,
-192,2,246,36,6,125,196,65,33,225,128,4,0,68,226,141,0,160,158,161,
-203,193,136,131,66,116,239,1,54,55,228,73,1,225,178,11,249,216,13,248,
-220,2,225,98,18,240,17,0,136,178,200,135,227,244,0,192,246,224,76,1,
-0,67,64,15,128,72,128,14,96,56,96,19,97,141,0,56,193,141,129,130,
-161,78,197,182,229,190,0,226,91,6,224,58,18,228,166,0,225,233,25,225,
-210,22,227,19,9,64,0,64,197,188,151,227,142,0,128,217,67,106,129,72,
-225,215,2,131,9,0,48,107,87,161,101,163,235,136,25,96,76,228,97,4,
-199,148,0,56,251,7,0,228,123,14,103,149,128,25,225,177,2,129,24,160,
-99,203,249,179,49,230,218,2,65,28,224,94,16,227,177,9,105,194,224,106,
-7,0,67,161,100,192,109,136,167,160,109,224,255,4,0,50,158,76,224,110,
-14,197,71,224,95,7,200,97,96,126,167,57,65,100,0,85,227,219,0,224,
-102,8,97,102,224,124,15,64,19,104,146,224,87,0,137,29,136,70,192,93,
-193,40,227,180,2,93,248,232,8,2,233,75,1,225,84,3,129,148,191,27,
-160,108,128,18,236,3,0,224,88,6,114,56,96,250,104,235,70,231,250,162,
-4,104,151,141,159,1,49,50,87,61,224,66,0,225,196,3,192,32,0,56,
-97,51,64,213,137,143,70,96,64,167,0,58,128,26,169,161,163,184,66,170,
-72,134,0,64,193,73,228,81,9,226,109,2,113,69,79,40,231,90,9,227,
-232,0,173,18,193,19,226,205,4,225,25,3,234,131,12,96,32,98,240,128,
-137,96,30,225,169,0,128,195,233,61,1,134,211,0,50,123,155,0,67,224,
-168,2,237,132,4,0,50,78,130,224,201,5,2,95,57,54,81,129,192,86,
-225,232,8,98,125,145,86,4,57,53,32,95,51,130,55,224,40,14,251,190,
-0,1,50,52,98,36,234,18,4,0,56,167,249,129,26,229,80,6,100,200,
-66,219,134,97,160,0,64,226,209,166,224,177,1,1,55,56,64,131,239,22,
-0,226,59,6,192,131,99,176,97,66,2,51,32,95,155,30,97,180,141,22,
-64,5,128,164,224,165,7,162,152,229,227,0,165,183,224,15,0,171,92,193,
-167,2,95,57,55,71,86,118,81,192,221,106,227,235,223,2,132,204,128,10,
-0,95,125,37,96,105,66,188,227,180,1,224,80,0,2,52,56,54,247,58,
-0,128,77,106,110,129,110,0,54,103,42,96,11,160,46,1,51,54,165,70,
-232,104,5,67,97,1,95,57,224,27,0,96,60,234,103,2,161,130,113,228,
-229,242,1,64,21,3,80,32,95,55,159,198,64,122,0,53,73,7,0,54,
-158,143,102,3,226,77,7,0,75,226,74,14,233,252,9,234,150,1,224,0,
-1,228,45,0,65,250,224,165,9,64,76,226,184,2,230,250,0,224,86,1,
-225,63,3,225,235,7,64,19,170,52,141,42,199,140,230,141,0,164,219,225,
-127,0,73,82,160,10,163,188,160,13,198,213,234,89,0,161,159,224,44,12,
-231,251,0,224,61,2,173,232,224,66,3,164,41,224,53,1,192,69,224,70,
-15,228,70,2,234,225,1,229,71,2,224,67,3,128,219,164,186,192,63,96,
-10,108,128,65,56,65,67,0,53,164,76,98,153,228,90,1,224,0,0,142,
-5,228,30,1,67,144,0,54,99,144,3,85,32,75,51,85,80,1,75,52,
-183,180,64,26,199,190,226,18,8,89,18,129,224,195,11,131,7,3,95,50,
-48,50,239,196,2,14,103,101,116,83,117,112,101,114,67,108,97,115,115,101,
-115,137,223,150,104,64,1,226,83,10,100,148,195,5,85,249,0,48,233,232,
-4,192,152,199,243,99,173,128,251,96,23,135,157,5,95,57,55,54,32,95,
-142,166,0,56,211,216,167,0,167,6,163,182,229,77,4,146,210,65,89,231,
-160,9,226,217,1,232,66,4,192,193,0,48,84,221,197,226,96,185,0,48,
-135,166,224,78,13,64,151,240,180,1,1,83,32,97,150,229,0,0,98,17,
-225,228,1,236,251,6,128,22,224,182,2,229,164,0,2,49,50,55,68,41,
-97,162,1,57,55,194,142,230,136,2,134,82,101,76,138,195,64,13,68,237,
-143,29,128,170,1,57,53,130,59,65,226,64,31,133,209,64,25,2,48,55,
-49,195,141,96,211,87,113,239,224,1,240,98,0,226,182,2,64,8,236,222,
-7,64,7,192,133,193,206,135,204,100,151,132,172,0,58,128,120,149,71,235,
-130,0,224,66,5,0,48,130,236,64,42,220,47,76,122,0,51,97,125,71,
-73,64,25,134,109,152,253,166,241,165,67,64,29,0,54,168,68,96,82,168,
-71,72,131,161,152,224,111,3,150,6,104,231,136,101,108,30,174,124,238,42,
-1,228,88,8,193,134,128,30,228,88,5,226,146,0,175,231,0,56,142,75,
-229,251,2,233,119,0,64,46,241,172,5,229,229,1,104,227,193,132,164,114,
-234,31,1,233,226,2,1,50,53,176,115,165,42,242,199,14,224,157,1,224,
-60,2,231,84,1,98,55,231,149,0,105,94,214,12,224,58,3,169,190,242,
-94,3,227,68,12,66,11,136,197,116,234,161,68,224,182,4,1,55,49,219,
-205,225,67,2,160,222,160,102,0,55,244,105,0,224,0,0,242,111,5,65,
-187,132,29,0,75,227,64,6,164,210,168,166,231,118,1,225,25,2,0,50,
-89,70,163,110,1,49,54,138,164,64,40,224,165,1,160,141,225,77,3,1,
-49,54,140,228,241,16,3,96,134,196,145,0,89,253,101,0,198,192,133,221,
-228,8,0,232,154,2,246,228,4,89,47,128,130,224,40,22,132,149,224,212,
-2,142,211,224,34,4,177,220,141,161,165,33,245,198,3,96,52,123,13,0,
-54,235,68,2,229,247,1,73,41,128,26,231,197,2,146,220,130,218,142,202,
-242,182,10,128,157,230,45,1,16,116,111,111,32,109,97,110,121,32,97,114,
-103,117,109,101,110,116,166,48,130,113,224,63,14,224,62,5,2,102,101,119,
-224,61,7,1,95,57,68,167,96,0,96,250,231,111,6,129,33,96,255,163,
-65,224,37,10,161,112,224,37,8,161,122,225,160,9,248,134,16,224,25,0,
-98,236,224,111,16,224,36,1,229,190,2,226,94,3,141,77,1,55,49,102,
-203,93,154,99,67,160,56,227,50,4,128,73,92,210,131,247,68,172,226,53,
-1,224,186,8,128,233,224,32,18,91,131,224,33,21,68,203,225,109,14,192,
-25,96,253,225,111,18,196,135,225,111,3,229,90,8,193,148,132,16,224,7,
-1,224,78,8,224,117,2,208,247,224,192,20,250,101,0,224,32,15,130,80,
-224,105,10,192,24,224,105,0,224,35,10,244,24,2,241,250,1,224,181,29,
-121,241,228,210,0,64,46,64,45,0,95,95,228,137,250,96,52,227,135,8,
-227,63,14,246,54,6,2,66,97,100,214,30,211,136,68,173,136,167,135,89,
-87,12,0,57,135,88,220,251,0,89,162,162,97,40,228,144,5,224,23,1,
-161,64,130,125,162,131,225,97,0,199,60,234,220,5,192,68,160,14,226,165,
-12,229,42,3,224,46,20,197,48,231,177,0,160,151,229,51,19,244,220,0,
-243,232,2,224,40,5,235,107,0,226,233,11,224,28,2,66,149,99,125,64,
-59,160,255,199,215,231,140,1,2,95,56,51,242,128,0,234,86,0,0,53,
-137,244,96,52,0,89,198,102,65,39,0,80,243,246,1,5,95,56,48,48,
-32,79,233,61,3,173,217,2,49,50,53,64,247,226,136,1,196,70,139,253,
-66,21,64,58,233,195,4,201,198,65,233,164,63,164,134,96,131,234,252,4,
-179,112,128,82,230,229,3,225,15,1,97,27,169,61,92,3,200,38,245,102,
-3,237,192,8,228,69,6,227,222,1,96,253,232,26,4,242,180,4,160,141,
-170,121,247,16,2,232,112,7,241,230,2,226,49,2,237,104,0,192,185,243,
-39,0,248,9,2,249,218,3,107,237,72,60,232,120,1,128,161,224,111,5,
-139,103,67,55,73,40,161,227,225,59,42,237,204,6,224,236,4,64,1,251,
-44,23,224,234,2,192,236,224,16,0,134,138,161,97,129,50,224,75,6,224,
-45,3,193,41,128,43,224,2,3,224,124,5,0,54,224,178,0,193,23,225,
-88,3,244,134,2,251,48,6,228,18,0,196,225,239,26,1,229,1,5,96,
-36,165,244,105,155,86,199,234,6,5,192,179,225,101,31,240,210,7,164,44,
-228,97,24,223,230,194,165,160,46,224,40,9,230,59,16,224,25,0,0,85,
-231,160,7,128,225,235,21,6,226,250,3,224,36,1,236,180,1,227,52,3,
-225,67,1,114,163,225,67,13,161,207,180,172,74,221,1,49,48,74,171,65,
-160,0,52,82,178,137,73,228,103,3,224,0,1,224,121,3,128,7,132,216,
-227,119,4,0,48,82,195,68,216,79,179,224,70,5,82,165,224,149,4,224,
-87,2,225,41,9,250,94,2,192,230,227,117,6,78,2,0,57,160,78,131,
-118,239,146,1,227,228,4,97,86,227,213,4,170,214,1,50,54,231,106,3,
-105,109,233,80,3,166,208,232,143,9,160,141,227,152,2,224,10,0,231,226,
-14,224,199,6,236,153,1,0,49,205,87,224,175,22,167,57,228,143,7,81,
-30,124,247,1,49,48,181,5,225,147,8,64,13,249,5,5,96,228,0,67,
-64,21,0,49,196,162,251,43,9,227,55,2,130,237,78,5,182,35,181,133,
-3,66,32,95,53,94,27,1,95,53,146,43,224,0,6,130,224,231,250,2,
-227,97,3,160,119,224,25,1,233,151,4,224,199,0,96,135,128,43,251,239,
-1,231,214,15,226,236,0,128,176,149,189,224,32,3,105,41,132,217,64,32,
-193,143,227,117,4,70,0,64,11,66,84,1,56,51,96,238,246,108,4,0,
-54,160,161,128,127,96,76,224,170,8,136,79,192,22,160,25,224,241,0,225,
-218,4,225,219,2,128,227,230,113,8,96,50,1,49,48,118,122,99,178,0,
-56,81,158,0,95,80,216,128,30,225,187,2,135,104,0,83,117,155,72,96,
-65,167,81,24,200,31,192,17,0,75,235,152,1,1,95,53,83,37,64,18,
-148,19,64,0,130,25,192,0,226,212,10,234,223,12,133,71,226,194,1,160,
-252,225,46,3,225,178,8,224,102,0,230,151,4,232,45,0,233,140,5,160,
-116,224,141,8,192,24,205,74,228,145,5,0,50,78,215,228,115,4,225,186,
-2,193,172,224,178,1,1,64,85,229,78,5,139,109,115,61,0,85,115,53,
-65,109,147,33,3,95,52,48,56,245,9,2,5,110,101,103,97,116,101,254,
-224,1,128,92,232,207,8,194,65,224,133,6,240,26,0,232,215,1,225,77,
-0,231,76,4,232,230,18,225,102,3,160,90,224,134,3,167,191,225,163,0,
-228,36,3,228,252,10,224,71,7,228,22,2,231,221,6,227,163,9,255,156,
-2,229,120,24,224,112,8,241,79,6,228,143,5,227,78,8,130,96,129,103,
-224,38,0,250,150,3,250,158,0,153,26,224,0,7,128,69,96,228,225,119,
-1,226,20,1,67,32,98,96,231,175,5,1,83,32,211,202,226,183,0,233,
-23,10,225,255,12,233,175,3,192,122,224,226,6,233,45,8,97,234,228,20,
-4,225,36,2,84,28,153,84,217,90,224,217,1,243,103,7,224,124,7,230,
-186,4,192,48,240,131,4,67,9,144,79,227,117,6,191,182,100,3,83,212,
-240,201,2,224,36,6,120,120,242,58,9,192,0,2,95,57,49,216,2,0,
-80,85,188,70,82,0,52,244,110,0,160,166,231,250,6,0,50,179,162,224,
-195,6,128,197,224,126,5,64,44,124,85,91,57,227,174,1,3,98,105,110,
-100,227,172,0,224,70,6,200,230,96,118,225,66,4,97,136,224,122,3,195,
-31,228,242,1,230,6,2,224,57,4,224,35,2,160,33,119,132,157,157,64,
-14,226,247,3,97,244,193,214,224,162,0,130,42,227,202,1,225,17,3,0,
-49,124,102,224,150,1,235,13,7,226,214,0,231,21,0,251,192,1,246,98,
-6,64,98,252,71,5,160,0,224,240,2,228,13,8,128,252,224,240,5,239,
-18,2,64,5,64,3,237,63,1,226,231,16,235,224,2,224,196,4,129,50,
-129,130,201,248,224,150,2,224,43,12,185,218,224,0,5,227,148,10,99,175,
-122,174,227,87,25,96,94,106,228,91,10,96,12,68,98,3,95,49,53,52,
-64,4,0,54,226,101,3,6,116,99,80,97,116,58,32,130,104,126,236,68,
-140,115,217,3,51,32,95,57,93,42,241,171,4,224,76,10,2,79,32,35,
-78,24,135,102,160,55,91,12,224,203,3,168,70,174,66,105,242,65,190,97,
-198,0,53,136,84,2,48,53,55,224,152,3,1,61,61,162,252,224,35,18,
-2,84,114,117,230,207,1,224,165,4,0,58,142,237,114,53,0,50,76,165,
-131,216,97,15,64,27,153,173,1,80,32,64,11,217,159,0,65,128,26,0,
-54,153,93,91,16,226,67,1,228,48,6,225,202,3,72,154,92,205,133,186,
-64,65,153,189,77,30,95,122,139,254,210,180,71,92,185,188,226,227,0,226,
-56,4,161,31,224,2,0,227,160,6,128,40,131,41,130,103,1,64,95,77,
-33,67,25,228,193,9,64,112,0,51,160,234,64,143,243,126,1,224,192,1,
-64,35,152,14,128,145,227,252,1,99,14,224,156,8,224,16,4,65,230,64,
-64,220,73,98,117,97,174,225,175,20,64,50,211,189,224,50,21,3,70,97,
-108,115,224,51,0,82,75,97,155,0,83,165,241,230,240,3,233,182,4,132,
-20,224,33,18,177,218,129,99,224,33,13,137,182,166,117,167,118,224,30,2,
-248,180,1,91,214,232,17,4,230,102,9,96,75,0,85,99,190,253,43,2,
-67,61,235,190,6,155,30,96,68,224,111,6,65,106,137,251,224,69,3,210,
-209,224,58,1,224,35,13,64,128,224,94,3,128,205,164,248,225,56,2,173,
-181,0,83,224,124,5,116,188,224,88,13,166,193,192,88,224,250,8,128,81,
-0,85,64,76,99,73,224,61,2,100,6,128,245,65,15,237,181,1,238,14,
-4,0,48,67,57,193,19,98,158,225,137,6,151,169,225,137,12,224,178,1,
-0,51,64,21,191,110,225,130,2,0,48,96,183,224,191,0,1,95,50,128,
-27,231,255,1,226,66,18,203,38,128,31,224,28,6,252,229,0,224,25,8,
-96,154,239,184,13,96,195,232,168,13,98,174,226,64,6,0,54,238,223,6,
-226,73,15,64,56,224,16,2,130,207,225,66,4,64,62,224,92,6,109,118,
-224,82,16,167,32,237,115,16,227,18,8,224,51,0,226,114,9,225,41,16,
-99,52,227,75,9,129,9,225,216,23,0,56,156,249,193,216,224,199,1,226,
-198,10,139,141,225,49,3,224,95,23,139,169,224,94,1,227,89,4,228,18,
-11,96,63,231,146,29,9,100,115,69,70,105,101,108,100,115,32,188,61,231,
-82,4,69,6,134,189,64,159,1,80,32,163,96,0,80,102,93,67,71,96,
-25,1,80,32,132,115,0,85,128,22,0,54,224,48,0,254,117,8,0,57,
-205,85,230,236,1,237,201,0,232,253,2,64,225,97,225,64,35,230,147,1,
-161,37,254,115,2,0,57,94,226,233,23,5,96,130,135,20,65,4,254,200,
-0,65,5,0,52,89,220,82,101,69,78,64,39,135,31,129,123,115,251,128,
-138,0,54,134,32,148,18,100,46,225,63,16,3,101,110,117,109,250,61,2,
-88,191,225,45,2,96,237,161,45,134,246,0,67,134,78,227,200,14,134,74,
-224,26,12,134,67,226,186,13,226,213,0,226,187,5,96,22,79,167,101,221,
-97,85,133,189,231,185,0,0,49,188,120,200,88,128,32,229,148,18,224,36,
-4,229,126,9,96,190,81,99,224,37,2,228,182,17,98,75,224,209,12,228,
-208,0,224,94,4,96,21,132,93,128,91,228,162,7,144,136,228,69,5,224,
-133,0,236,109,5,228,21,9,228,102,11,192,24,228,102,0,2,50,53,48,
-236,134,3,227,127,1,224,24,7,225,101,4,113,48,66,3,200,185,252,68,
-0,232,255,1,111,198,251,131,24,225,158,0,129,156,232,143,19,224,206,11,
-192,25,255,140,31,96,154,238,107,6,128,227,128,23,96,246,169,74,136,193,
-224,58,0,225,215,2,1,95,50,66,188,176,34,224,80,9,239,133,2,160,
-116,0,90,164,18,124,19,236,199,4,96,30,64,174,226,229,1,64,211,161,
-98,128,32,211,241,96,69,96,4,74,143,96,32,0,90,64,124,85,187,98,
-42,0,75,87,36,128,56,64,0,97,225,130,67,224,0,1,227,44,12,225,
-219,8,97,220,138,99,99,222,129,157,97,86,161,222,230,79,3,128,220,224,
-216,2,236,162,0,238,97,0,192,200,162,10,226,20,1,160,9,129,239,226,
-34,2,235,185,6,101,42,97,160,243,240,3,128,23,178,2,128,70,78,236,
-0,80,253,13,0,231,53,1,218,147,232,59,8,194,29,142,249,194,60,128,
-228,96,64,64,43,1,95,57,241,159,3,229,160,6,194,47,236,31,0,255,
-146,5,13,115,101,99,116,105,111,110,32,102,105,120,105,116,121,165,91,96,
-49,75,248,224,43,1,1,36,120,166,177,109,138,241,34,0,1,58,49,105,
-218,99,102,109,87,227,84,0,225,140,14,128,30,225,144,5,195,84,69,254,
-110,13,254,48,0,130,190,135,145,240,23,8,99,18,96,166,224,148,3,224,
-178,9,225,222,56,128,198,245,206,7,130,86,99,136,143,233,233,4,2,248,
-122,3,225,208,11,160,84,242,59,2,100,32,224,21,6,224,60,30,64,58,
-244,62,8,78,67,226,22,4,128,174,225,116,1,135,109,225,110,5,224,0,
-1,226,51,87,232,230,1,232,181,9,79,166,64,0,224,211,3,225,147,5,
-162,22,236,74,1,227,33,0,255,246,2,193,130,243,64,4,68,254,225,65,
-0,161,67,224,13,0,222,166,192,1,227,72,6,128,20,132,210,160,14,99,
-248,132,226,228,74,0,131,244,0,50,99,245,64,7,162,46,128,0,226,123,
-1,193,171,66,86,64,42,96,140,129,116,227,195,7,65,48,137,253,128,50,
-226,192,10,102,193,224,13,5,160,172,128,2,160,14,226,253,13,0,89,225,
-18,3,103,46,225,7,3,129,74,243,76,5,224,61,0,131,85,129,16,104,
-247,64,107,128,36,96,117,166,60,73,15,1,52,49,134,19,130,106,160,7,
-249,194,2,224,190,2,224,2,3,192,30,192,136,199,126,224,2,0,152,185,
-225,158,2,238,70,3,99,216,129,147,1,85,32,177,77,129,180,163,168,225,
-27,0,254,94,5,128,7,101,150,227,31,6,224,9,0,224,165,2,248,20,
-2,161,2,96,86,224,210,6,96,17,194,51,64,92,65,230,135,223,225,6,
-1,225,115,0,252,191,8,217,161,128,188,156,202,224,115,2,97,26,169,57,
-224,163,0,192,45,160,245,96,153,232,61,5,225,248,3,193,98,189,38,224,
-26,5,224,148,4,128,221,64,0,225,177,10,225,17,0,224,66,9,226,145,
-0,224,127,14,224,106,0,96,170,224,35,21,128,1,169,88,192,0,233,210,
-1,96,2,128,178,226,167,0,160,14,224,50,4,224,88,15,211,35,224,0,
-1,224,234,14,224,2,3,224,246,0,64,0,228,139,9,250,187,3,250,199,
-4,193,222,128,122,225,236,0,130,42,128,181,1,95,49,126,17,160,85,102,
-251,68,35,76,232,1,64,64,71,120,160,251,138,1,96,21,224,42,1,1,
-51,51,73,124,0,50,137,61,64,44,99,147,128,65,192,22,64,8,232,51,
-0,224,125,1,162,89,247,105,4,224,171,2,224,173,2,225,74,2,161,98,
-192,44,224,62,4,128,166,225,32,6,224,181,12,71,110,70,81,160,223,225,
-13,0,96,186,225,13,23,224,225,14,216,82,163,133,227,13,7,160,190,227,
-173,13,96,16,1,95,52,77,156,170,216,246,151,2,238,175,12,28,97,109,
-98,105,103,117,111,117,115,32,111,112,101,114,97,116,111,114,32,101,120,112,
-114,101,115,115,105,111,110,246,222,0,226,70,15,96,123,64,224,129,53,96,
-21,224,240,1,1,53,56,225,29,4,224,209,10,224,172,38,9,98,97,100,
-32,112,114,101,102,105,120,224,164,11,228,250,2,3,95,49,55,57,254,124,
-2,16,92,51,52,38,115,114,99,47,77,105,99,114,111,72,115,47,70,104,
-22,2,46,104,115,64,24,4,44,54,52,58,55,192,68,164,238,237,185,1,
-225,210,0,171,37,170,228,3,95,54,56,57,164,206,235,27,1,129,28,160,
-220,71,53,78,2,0,50,251,171,1,73,134,2,75,50,32,79,53,96,171,
-165,237,1,64,89,100,79,65,35,229,41,3,233,83,1,104,109,139,155,64,
-79,248,238,0,202,53,128,113,96,122,192,115,81,6,103,228,0,52,74,143,
-248,156,3,64,19,194,98,98,131,98,235,64,228,169,165,171,238,100,91,64,
-138,198,149,64,34,0,80,192,179,130,133,193,199,96,182,210,150,128,6,193,
-59,224,61,3,193,25,224,33,1,225,3,1,161,25,0,65,225,25,4,72,
-86,0,54,104,86,77,177,99,26,5,95,49,49,53,32,95,82,54,5,95,
-49,56,51,32,35,97,27,64,39,241,226,0,0,54,185,175,2,52,48,53,
-226,59,3,4,110,101,103,97,116,247,204,0,65,22,3,10,65,32,65,89,
-131,65,44,3,10,65,32,90,65,77,64,14,145,152,0,75,96,26,207,160,
-193,31,132,34,171,80,64,32,141,228,0,75,185,191,67,242,89,125,1,52,
-57,99,17,139,24,143,137,64,193,65,201,174,33,206,40,128,24,64,11,174,
-79,224,24,11,160,49,130,8,2,95,49,54,229,42,1,64,115,202,169,0,
-89,165,169,98,73,227,178,2,225,175,1,240,58,11,227,194,0,248,101,20,
-1,95,55,116,210,193,235,226,162,8,128,40,244,99,30,8,103,101,116,65,
-112,112,67,111,110,219,250,251,183,7,168,38,96,11,0,85,128,206,96,233,
-212,96,160,105,2,51,56,55,226,24,17,238,92,3,0,51,118,78,64,65,
-0,54,161,234,0,75,129,174,194,52,235,226,10,128,63,129,66,96,160,0,
-50,128,6,67,89,64,58,130,64,65,1,0,80,228,105,2,2,118,97,108,
-154,101,224,18,1,2,116,121,112,130,118,224,18,1,0,107,223,93,224,18,
-1,3,115,111,114,116,64,18,64,90,130,143,163,98,245,48,19,102,106,129,
-122,224,12,1,3,95,49,50,50,152,224,131,113,65,27,236,222,4,164,181,
-131,145,238,227,6,66,214,140,28,238,180,6,96,0,64,156,180,182,228,39,
-0,68,250,170,233,234,12,4,162,67,131,233,231,71,0,226,99,19,96,144,
-1,55,57,133,253,0,50,132,173,226,111,3,226,109,0,247,236,4,1,95,
-56,101,151,224,42,14,128,68,224,94,1,0,54,109,4,65,34,209,230,98,
-175,225,135,2,9,101,116,83,76,111,99,69,120,112,114,196,43,65,10,156,
-160,114,70,97,87,1,55,57,134,38,128,71,129,74,1,50,50,65,71,192,
-19,64,56,132,28,0,79,68,73,64,27,97,212,128,180,0,52,99,36,64,
-23,238,103,1,241,63,0,97,198,200,71,237,26,1,64,8,1,95,57,98,
-248,178,148,234,60,0,162,4,224,12,1,224,25,0,3,95,49,49,56,67,
-129,1,49,57,133,103,207,177,161,253,224,27,3,163,38,160,6,0,66,163,
-54,64,207,206,56,163,119,103,178,192,245,227,228,15,9,117,110,100,101,102,
-105,110,101,100,32,207,126,242,106,0,224,54,19,228,18,0,0,51,94,201,
-161,214,107,110,226,60,0,104,41,237,170,4,128,35,224,157,5,226,225,0,
-224,105,15,232,249,1,199,252,165,10,167,233,224,61,21,192,167,168,32,128,
-51,160,180,224,55,9,2,79,32,35,67,56,199,182,65,83,65,198,96,45,
-71,253,0,80,96,200,232,73,1,205,228,232,78,0,2,95,57,56,232,70,
-2,192,0,161,6,66,70,249,123,1,224,163,1,1,91,93,96,163,225,8,
-13,2,79,32,35,66,195,193,64,226,23,1,224,254,0,166,79,69,97,224,
-53,4,0,51,244,30,2,224,91,16,71,96,237,228,2,224,91,5,128,0,
-64,182,0,54,131,90,164,62,129,25,64,69,66,224,81,253,103,17,0,51,
-99,180,66,4,132,158,227,229,1,171,61,64,45,0,35,112,163,97,93,103,
-249,1,95,52,71,155,64,0,0,73,101,235,66,196,136,32,3,49,50,50,
-51,102,47,0,49,128,24,217,244,160,239,199,178,1,95,49,90,29,160,229,
-162,26,88,108,197,129,224,212,0,160,8,176,93,100,2,192,35,96,95,133,
-206,65,202,64,238,2,95,57,57,136,5,65,49,0,50,89,147,225,176,1,
-3,66,111,111,108,196,117,76,106,1,10,65,225,205,2,4,68,97,116,97,
-46,64,33,6,95,84,121,112,101,46,34,128,188,228,155,0,204,167,242,76,
-4,0,49,64,113,161,166,114,73,239,182,4,236,241,1,242,186,6,99,245,
-182,221,232,71,18,1,95,52,103,13,226,7,1,230,174,3,1,49,50,163,
-135,225,64,4,224,109,7,130,61,0,49,101,49,236,231,2,232,98,1,225,
-92,0,224,17,4,64,63,230,184,5,109,158,132,91,64,120,0,95,253,54,
-0,152,107,192,169,224,71,4,96,48,164,151,1,49,49,235,40,7,228,166,
-20,21,110,111,116,32,112,111,108,121,109,111,114,112,104,105,99,32,101,110,
-111,117,103,104,196,20,66,131,0,53,124,38,1,57,53,195,230,96,0,231,
-111,4,107,51,1,57,55,98,199,132,15,248,107,2,252,195,8,64,198,74,
-90,104,6,64,149,64,90,1,49,50,125,128,96,15,0,50,68,11,200,32,
-0,58,129,126,2,10,65,32,91,125,90,144,96,137,102,181,128,29,134,119,
-107,113,64,14,132,63,203,254,193,224,1,49,48,96,49,97,32,65,65,67,
-106,225,183,0,66,80,207,92,97,218,225,215,1,128,48,232,121,0,193,81,
-226,77,3,143,81,246,198,3,239,206,6,227,49,0,226,146,0,1,49,54,
-148,169,118,233,154,187,193,198,232,200,6,214,56,141,51,0,54,64,11,228,
-140,0,64,237,0,54,232,196,0,226,141,9,96,77,0,50,138,139,131,6,
-214,161,0,85,225,31,1,64,19,141,99,224,127,10,98,159,131,229,0,50,
-66,86,245,45,10,64,189,2,10,65,32,229,251,11,160,149,131,12,166,93,
-100,56,0,55,66,43,96,83,162,203,96,72,170,135,96,233,160,139,2,55,
-57,56,66,176,224,193,0,64,72,138,240,64,57,164,139,1,55,57,143,119,
-2,79,32,64,101,225,64,45,64,136,128,10,64,43,132,128,234,130,8,0,
-49,237,244,0,255,123,3,65,157,224,117,1,131,84,226,14,2,228,25,6,
-98,14,64,21,224,93,16,231,141,0,227,238,8,96,52,96,109,130,9,198,
-81,160,23,224,39,0,149,242,161,37,133,38,224,107,13,72,89,129,206,224,
-208,7,64,71,226,33,4,247,209,2,94,107,224,27,5,1,49,49,96,215,
-224,135,14,224,43,4,111,118,66,102,0,48,96,105,240,115,3,160,6,0,
-85,229,49,1,224,252,2,192,247,239,167,0,226,136,2,225,38,5,0,95,
-98,184,160,169,69,97,251,127,3,98,95,223,38,225,68,1,225,153,0,251,
-160,8,224,17,3,193,227,65,86,132,147,102,248,68,47,100,13,64,155,225,
-220,0,236,95,7,207,58,192,32,154,135,228,23,5,164,29,160,123,224,25,
-9,210,107,225,205,8,146,107,192,0,172,148,192,47,235,77,0,64,2,224,
-39,1,128,134,128,1,226,113,1,64,202,232,254,0,100,57,128,188,96,172,
-224,79,0,244,100,2,135,28,160,59,2,95,49,49,113,128,131,213,246,204,
-6,224,117,6,224,150,0,229,10,3,165,8,152,211,64,134,133,10,145,228,
-224,151,25,135,49,64,142,169,47,224,131,3,66,116,98,66,237,221,4,111,
-99,177,126,96,0,225,61,6,245,63,8,162,213,129,54,200,27,160,9,128,
-147,162,221,130,95,224,126,0,224,65,1,154,217,231,216,7,192,2,244,96,
-3,224,32,0,200,176,237,40,0,192,99,228,7,3,224,26,0,96,115,217,
-248,234,121,3,224,131,1,176,99,224,84,1,224,133,1,224,219,0,166,111,
-128,203,224,92,5,64,47,251,90,3,97,67,97,150,80,141,0,48,227,113,
-1,0,58,128,63,110,12,0,80,103,190,0,51,65,205,2,95,55,56,142,
-142,138,48,64,27,202,211,136,11,2,95,52,48,69,84,0,49,103,229,96,
-39,66,87,224,39,17,0,55,102,109,64,173,64,87,224,39,16,1,50,48,
-178,73,1,50,48,64,88,96,147,96,63,164,5,0,48,64,43,167,48,64,
-186,136,43,239,229,5,185,224,129,71,195,198,96,11,232,16,1,97,183,239,
-182,6,226,3,11,225,142,5,224,30,12,224,85,16,225,121,0,224,85,22,
-226,103,6,98,23,65,49,64,63,251,227,3,64,0,161,2,64,250,137,23,
-235,133,6,75,128,13,76,105,116,115,46,75,110,111,119,110,83,121,109,98,
-107,183,64,47,0,54,225,42,146,229,30,0,224,85,22,225,42,46,243,76,
-1,229,155,10,109,201,96,105,204,171,190,38,79,53,144,103,230,96,1,237,
-98,1,224,163,0,225,81,5,170,159,134,111,166,117,224,201,5,128,1,165,
-25,224,25,8,224,131,0,225,31,4,202,164,224,71,9,225,40,0,230,144,
-11,229,27,8,166,14,224,19,8,252,49,1,224,67,8,224,49,6,225,194,
-3,108,31,145,147,224,33,0,224,51,3,224,13,4,224,10,1,96,57,110,
-237,112,63,2,49,50,48,202,53,202,38,231,155,2,64,39,78,237,128,59,
-84,210,249,9,9,225,251,4,224,132,57,132,89,213,69,215,29,0,75,86,
-218,151,0,2,75,32,75,112,9,96,12,64,43,234,187,0,128,2,230,149,
-0,193,96,130,1,224,31,0,128,2,160,233,104,232,224,184,0,192,153,82,
-250,96,255,226,124,10,193,180,128,99,225,144,5,230,35,0,134,32,129,215,
-245,129,1,161,193,239,34,3,102,89,0,39,169,207,234,50,2,0,48,76,
-38,224,195,2,236,75,8,224,26,2,240,143,5,193,106,160,108,67,164,64,
-12,153,92,198,145,128,166,0,79,160,239,64,35,65,131,64,224,227,197,1,
-224,118,12,224,112,2,162,130,226,18,1,224,55,2,146,165,128,7,192,226,
-172,173,118,121,231,0,0,128,79,239,77,15,31,77,117,108,116,105,112,108,
-101,32,99,111,110,115,116,114,97,105,110,116,32,115,111,108,117,116,105,111,
-110,115,32,102,111,0,114,243,109,0,128,71,1,50,48,130,154,0,48,103,
-62,128,0,66,33,140,177,71,94,0,53,80,81,1,95,54,71,100,64,24,
-177,37,81,191,245,238,5,5,116,117,112,108,101,67,224,117,0,0,115,207,
-191,129,44,79,57,155,95,64,104,0,66,78,200,0,52,82,94,109,135,0,
-55,65,185,152,155,96,99,171,11,225,232,2,153,255,130,41,66,12,212,194,
-98,83,228,130,13,82,140,160,230,143,94,0,90,64,35,237,160,0,229,125,
-4,160,123,162,14,0,89,64,13,194,43,170,28,224,16,1,229,8,0,160,
-14,227,33,1,234,196,2,106,243,229,255,5,137,113,96,5,235,182,1,130,
-230,188,34,224,60,1,133,34,242,87,4,233,42,1,224,57,0,96,87,66,
-76,97,63,224,144,0,64,11,161,59,130,202,144,178,102,119,228,250,0,160,
-0,227,223,3,66,219,97,176,228,112,2,67,214,164,66,128,48,0,58,131,
-231,102,157,230,72,5,247,115,1,67,149,2,49,49,56,98,224,0,89,64,
-16,227,204,2,193,195,193,42,225,32,0,97,0,224,15,2,96,27,65,81,
-128,213,224,83,3,64,149,0,56,225,9,1,106,110,128,158,0,95,81,140,
-64,231,164,138,97,233,67,70,224,22,2,227,127,7,128,95,252,145,0,224,
-10,4,227,206,0,0,56,82,33,215,248,224,147,0,97,86,96,142,112,79,
-161,30,248,134,1,161,200,193,41,192,205,177,173,224,206,0,224,105,4,1,
-57,51,224,25,2,196,49,64,23,0,52,133,217,79,53,176,98,64,9,0,
-55,72,18,228,75,3,224,185,0,224,103,7,64,67,248,7,3,231,186,6,
-96,130,224,149,2,128,224,128,50,64,11,241,95,9,237,33,3,195,99,237,
-163,6,1,95,56,165,104,64,0,192,110,224,52,2,64,1,163,55,227,68,
-3,224,190,1,79,133,225,13,4,194,172,242,206,0,129,58,84,167,193,246,
-224,20,0,83,231,224,13,0,166,61,128,113,64,165,65,57,0,53,64,170,
-96,231,80,214,242,66,11,100,52,248,67,0,238,129,8,161,37,114,226,225,
-37,48,1,67,32,225,39,4,99,177,101,248,1,52,51,229,247,0,229,103,
-1,4,102,114,101,101,32,93,9,20,32,118,97,114,105,97,98,108,101,32,
-105,110,32,111,117,116,112,117,116,32,102,90,43,0,112,229,225,3,227,17,
-4,241,64,0,229,89,1,164,239,129,37,196,236,128,13,196,233,161,140,225,
-183,5,141,214,234,244,1,228,169,17,228,146,9,228,137,8,226,230,2,238,
-90,0,99,75,140,51,130,254,192,73,64,65,64,27,0,54,96,27,65,113,
-135,180,231,100,1,228,67,2,228,139,5,224,42,8,224,228,0,130,135,224,
-191,0,227,158,3,133,15,228,198,1,226,199,0,75,146,67,180,98,69,194,
-103,128,89,162,24,239,55,6,227,188,2,96,0,164,181,160,8,212,46,99,
-115,249,70,4,129,57,82,124,192,59,224,22,2,224,25,6,224,26,6,224,
-29,7,227,238,3,227,133,10,192,196,226,229,4,64,146,202,93,115,182,1,
-64,95,74,96,64,22,138,72,64,217,138,27,233,246,0,92,101,181,4,1,
-49,56,99,156,101,60,64,7,108,196,96,13,64,65,136,104,122,182,70,24,
-64,46,122,176,0,49,126,189,99,10,119,141,2,49,49,56,120,6,96,201,
-64,56,136,136,3,85,32,75,51,98,180,64,18,136,55,155,2,98,143,0,
-95,85,165,160,58,135,8,0,56,128,22,135,14,96,22,192,236,64,15,0,
-56,96,213,0,56,215,238,1,75,51,113,198,64,18,215,227,72,199,200,58,
-64,23,220,44,161,69,96,23,224,11,2,192,8,98,3,64,47,0,54,225,
-218,1,231,193,3,2,49,49,56,212,122,0,66,225,4,0,128,49,130,12,
-3,85,32,75,50,192,120,64,21,129,143,81,34,224,143,5,129,144,66,233,
-136,130,192,139,195,201,167,179,180,20,128,29,161,46,2,67,32,60,239,47,
-1,243,236,1,224,39,14,169,94,226,62,2,233,121,5,238,122,12,131,99,
-227,71,9,1,67,32,227,73,3,194,133,228,186,4,200,91,214,104,164,202,
-195,67,224,132,8,224,131,4,192,128,165,207,254,27,1,224,50,33,196,4,
-137,20,0,49,64,176,64,40,192,47,224,172,6,224,0,0,228,85,0,160,
-244,225,74,11,227,211,2,224,145,6,64,25,225,72,12,192,41,227,180,2,
-224,58,20,224,35,0,202,89,233,103,13,228,247,4,160,101,233,93,1,224,
-19,0,198,197,225,69,12,225,21,3,224,45,3,225,64,8,179,71,225,64,
-20,66,210,172,138,100,54,64,29,254,57,0,64,170,232,223,2,224,64,3,
-64,55,132,32,192,232,1,95,48,100,143,64,24,187,254,3,50,32,95,51,
-141,95,143,175,64,169,160,89,224,12,4,238,47,2,1,95,49,104,143,174,
-113,232,115,1,1,95,50,96,135,192,122,64,7,227,229,5,108,173,237,228,
-7,161,19,96,17,178,203,246,120,0,195,121,225,184,0,227,164,11,160,67,
-224,46,24,95,55,160,47,129,174,192,121,160,46,227,216,16,193,60,237,84,
-7,225,215,4,64,11,136,175,0,51,101,80,227,205,7,128,47,0,85,129,
-252,132,222,0,48,192,26,224,98,10,205,182,1,85,32,237,163,2,224,184,
-1,193,47,227,64,9,224,75,10,192,24,0,85,97,135,162,240,143,215,205,
-243,128,29,160,103,3,95,55,55,51,249,220,2,97,203,181,177,231,70,1,
-69,112,96,137,109,182,134,104,0,67,65,226,240,161,0,65,203,216,1,182,
-197,4,64,95,55,53,55,101,175,134,67,154,148,227,52,6,118,52,91,13,
-2,95,52,52,113,189,103,9,111,234,160,11,0,48,71,113,3,64,64,95,
-51,247,38,1,64,0,0,83,248,203,37,96,175,64,4,131,136,200,191,66,
-193,2,54,32,95,121,251,223,111,228,63,1,234,180,4,239,172,0,114,14,
-98,235,0,80,240,16,7,6,109,105,110,105,109,117,109,255,199,0,1,50,
-50,147,22,165,9,162,187,64,107,2,52,55,32,96,81,96,85,64,83,0,
-54,231,85,2,241,199,9,160,23,163,148,162,205,162,208,224,13,0,102,31,
-226,158,0,97,242,160,75,0,54,97,59,2,95,55,54,131,21,192,29,75,
-133,88,216,7,95,55,49,51,32,79,32,35,85,163,194,126,243,193,6,64,
-162,135,150,246,205,20,3,78,97,116,34,100,113,88,75,1,10,65,194,54,
-97,75,143,53,132,28,210,112,195,153,96,186,227,212,1,68,28,129,54,129,
-69,0,50,101,64,96,252,192,7,193,18,246,42,7,154,145,227,26,0,225,
-119,2,131,71,203,117,0,55,201,1,243,186,9,99,183,160,155,251,88,2,
-65,53,253,192,0,227,97,0,143,200,243,151,12,128,161,98,100,225,202,8,
-199,205,66,142,245,156,4,243,76,19,224,199,1,243,79,12,226,56,25,224,
-123,1,2,95,53,52,255,112,0,224,73,1,226,74,0,113,24,128,43,137,
-201,194,22,228,160,1,228,56,4,65,241,137,135,225,107,3,129,205,220,208,
-225,143,4,161,232,128,19,67,101,67,252,1,49,52,101,9,177,194,0,67,
-98,38,99,210,231,232,18,225,174,2,165,191,232,17,15,64,29,133,192,225,
-20,5,224,16,0,225,21,5,129,15,192,82,96,36,65,21,97,182,225,36,
-1,0,80,227,49,1,160,0,96,86,225,96,15,224,28,18,65,66,135,247,
-229,40,6,170,91,118,202,69,77,165,52,128,49,135,241,131,102,226,173,18,
-164,19,226,163,8,129,7,226,48,1,234,100,0,226,75,9,193,48,129,153,
-142,84,0,66,128,201,165,58,196,104,229,67,0,68,220,224,251,1,64,174,
-168,135,227,180,7,98,68,0,66,64,20,227,141,0,1,49,51,72,107,128,
-59,3,95,50,49,54,224,24,1,0,54,102,7,3,58,49,49,54,200,115,
-96,170,0,57,100,220,88,237,0,54,105,20,85,182,0,95,96,35,128,44,
-134,212,0,75,193,252,224,130,8,175,133,97,72,129,239,175,223,224,149,1,
-225,47,0,96,130,174,228,87,54,225,87,0,161,103,224,49,1,64,44,157,
-23,247,150,4,64,144,198,69,224,189,12,65,237,224,189,3,0,54,162,25,
-228,148,6,224,12,4,64,244,254,54,0,68,88,97,133,131,105,146,91,103,
-173,241,190,0,0,67,66,193,167,170,2,49,49,52,254,113,1,192,50,202,
-238,199,73,232,100,8,227,80,1,240,83,0,246,153,13,162,2,129,123,235,
-206,0,224,54,0,224,55,1,145,159,251,87,11,128,48,235,206,3,184,49,
-101,209,254,249,19,160,47,132,137,241,108,1,64,0,65,158,87,148,200,254,
-65,106,134,230,243,186,2,227,85,2,129,98,198,170,236,12,1,224,35,3,
-130,18,2,49,49,53,79,136,0,54,136,181,160,237,179,222,226,26,1,128,
-220,64,9,103,153,64,126,135,56,130,167,226,165,8,104,168,192,78,64,15,
-168,199,240,192,0,130,148,64,71,133,142,226,233,16,97,72,128,71,245,253,
-9,130,141,224,21,2,226,152,13,232,138,8,128,42,243,116,0,128,136,132,
-212,97,160,64,122,1,75,50,208,97,64,204,134,49,226,195,2,228,180,1,
-66,236,233,198,3,227,153,2,224,100,0,65,102,226,183,1,231,143,3,143,
-205,169,110,230,124,3,161,136,251,128,1,72,101,224,33,15,128,27,128,113,
-238,120,0,232,194,1,225,31,2,130,199,224,31,2,226,202,18,224,54,0,
-194,205,224,219,5,236,168,4,253,248,0,192,49,251,228,14,64,62,202,0,
-172,119,98,132,67,14,97,123,138,2,232,52,2,250,14,4,192,12,224,20,
-0,224,160,5,132,215,225,236,1,104,241,224,136,9,224,180,0,131,155,230,
-75,0,192,58,128,144,1,95,51,118,60,226,61,4,217,139,225,8,3,208,
-63,224,77,2,96,67,153,217,0,48,157,124,224,18,10,160,193,83,185,1,
-49,57,128,139,146,113,0,48,121,216,2,95,49,48,130,46,6,95,54,50,
-51,32,95,54,71,95,1,95,54,66,117,0,48,100,34,0,53,192,9,2,
-56,51,32,164,184,224,30,0,0,35,237,223,1,64,215,227,91,8,92,153,
-128,240,161,29,0,53,206,30,76,10,96,19,0,52,71,68,2,95,51,56,
-99,77,0,53,225,57,0,67,15,188,4,66,61,228,221,0,225,137,1,99,
-166,162,139,225,145,5,160,113,161,237,99,173,224,110,10,201,183,0,51,185,
-211,2,95,57,55,111,206,0,53,202,127,0,58,128,143,192,130,178,6,0,
-90,233,131,0,192,14,1,95,57,64,92,238,50,1,96,56,218,2,228,110,
-19,0,90,226,246,0,228,101,38,192,30,224,255,2,228,98,3,65,100,228,
-98,3,244,31,0,64,27,0,54,136,114,3,51,55,53,32,64,14,214,104,
-224,69,0,64,20,133,115,162,183,3,32,95,50,55,66,3,197,164,0,53,
-214,193,227,60,0,166,5,64,57,234,244,4,228,166,1,64,2,100,120,226,
-225,3,228,137,4,128,2,224,17,9,140,245,225,21,3,160,248,97,216,192,
-32,224,62,3,237,242,0,224,86,6,160,38,162,29,239,183,0,224,5,1,
-1,95,55,223,1,224,106,1,237,81,11,225,231,0,205,161,130,151,160,53,
-165,162,224,72,1,228,254,3,66,122,74,32,192,27,226,214,0,231,7,2,
-71,97,81,75,65,120,82,96,0,55,121,40,1,95,56,113,89,64,20,70,
-216,66,222,112,21,68,63,97,212,238,135,1,9,101,120,112,97,110,100,68,
-105,99,116,223,233,1,95,49,67,217,0,51,105,121,160,0,224,222,0,228,
-177,4,225,119,3,228,128,2,225,71,4,225,88,0,192,243,226,126,0,162,
-16,197,70,225,69,3,165,215,224,19,4,195,194,224,22,17,233,60,1,161,
-231,193,234,166,93,224,55,6,232,116,3,224,29,10,84,28,0,55,80,172,
-2,95,50,52,224,36,1,192,79,64,34,224,91,1,160,52,230,238,0,96,
-64,236,64,2,224,22,2,201,128,224,62,1,131,36,225,60,0,178,109,128,
-66,208,121,233,101,3,224,77,1,124,5,1,95,54,84,75,133,135,229,126,
-12,160,46,190,124,128,10,133,235,64,109,124,72,140,129,165,225,224,99,5,
-160,105,230,173,17,160,80,243,159,0,128,1,225,252,23,224,0,1,128,47,
-233,69,5,225,123,10,227,185,3,225,90,56,100,235,99,89,0,95,82,58,
-64,0,225,75,23,232,125,0,128,140,163,81,110,82,194,193,224,21,3,232,
-30,1,179,215,179,214,233,114,5,64,20,147,245,64,23,155,204,64,176,116,
-63,0,73,245,0,1,104,200,174,207,180,49,0,83,97,175,108,135,95,230,
-229,97,4,108,232,102,156,64,15,225,144,2,232,232,1,251,177,3,64,133,
-224,48,16,192,46,205,225,134,22,138,123,131,98,100,126,130,87,149,207,85,
-206,77,61,0,80,64,7,64,151,1,56,51,235,169,0,65,206,64,64,135,
-172,0,75,186,120,65,185,243,232,1,64,17,165,112,245,174,5,128,190,240,
-159,21,96,33,96,57,224,226,2,235,174,0,210,10,250,13,0,161,51,0,
-58,128,153,166,140,202,1,64,220,1,49,48,140,131,162,200,241,220,2,207,
-190,128,115,96,117,255,24,13,132,36,160,50,160,148,160,13,244,94,1,130,
-150,96,102,179,99,245,104,0,2,95,55,52,233,56,1,69,252,0,54,80,
-46,226,164,17,130,221,128,23,238,60,0,64,142,196,79,77,223,230,0,1,
-1,36,120,101,246,65,2,220,180,3,75,32,75,52,64,2,252,42,1,128,
-31,136,41,237,93,14,180,59,192,231,0,49,128,180,64,8,208,114,78,62,
-242,228,4,161,102,238,18,0,131,225,231,42,0,193,54,148,195,96,74,66,
-253,224,43,0,160,23,161,217,243,5,8,224,22,10,225,248,0,224,96,4,
-208,170,238,4,2,224,31,18,192,67,224,134,0,98,38,163,31,97,239,160,
-68,226,68,0,107,100,224,32,6,160,69,216,84,64,7,64,26,226,65,13,
-64,50,207,234,230,218,2,134,123,200,42,161,29,160,35,230,165,0,64,81,
-224,15,1,128,151,229,177,3,128,76,179,141,226,226,1,128,159,193,252,129,
-190,137,253,235,97,1,245,233,1,160,107,0,95,82,119,225,168,1,224,8,
-1,64,61,138,38,234,254,2,64,20,239,103,31,219,8,96,101,234,254,48,
-226,121,1,235,0,3,66,168,239,99,6,64,247,64,25,132,231,226,240,14,
-167,144,160,148,115,115,226,140,2,224,100,0,64,71,132,238,224,230,23,108,
-34,224,227,55,192,8,228,227,1,96,130,64,156,107,201,1,54,57,122,83,
-192,82,224,1,1,233,71,0,224,111,1,224,1,5,135,211,224,34,18,224,
-32,3,1,95,57,81,139,96,0,64,125,132,89,225,98,1,236,99,2,65,
-70,132,117,0,50,228,118,0,162,119,64,29,0,54,224,57,0,1,48,57,
-132,242,82,164,64,25,249,81,7,3,97,100,105,99,185,64,64,34,194,170,
-2,95,49,48,65,225,64,21,130,109,227,184,3,227,202,0,234,57,1,229,
-172,2,234,33,2,76,181,242,140,2,104,107,198,19,224,49,1,242,163,5,
-128,54,196,187,224,21,5,0,51,135,237,0,51,130,123,64,59,227,250,1,
-253,221,0,204,134,224,177,3,163,246,225,130,6,232,31,6,224,59,1,240,
-13,1,109,64,160,94,96,73,111,211,133,180,224,96,4,96,17,224,137,1,
-1,95,55,85,108,224,37,4,226,104,0,224,74,1,192,36,228,122,3,129,
-31,225,16,9,135,184,249,165,6,64,1,137,193,128,82,193,84,225,94,2,
-207,171,225,153,8,160,244,192,70,236,64,0,65,103,245,1,13,224,99,65,
-192,14,164,88,227,140,1,192,15,224,132,3,224,47,2,131,110,232,58,0,
-226,119,28,169,39,227,103,0,224,140,16,240,237,1,224,13,15,224,120,53,
-163,155,234,6,3,225,75,10,230,162,0,160,121,237,113,4,96,31,224,86,
-0,65,96,120,160,0,48,177,95,224,175,7,163,50,96,118,133,77,239,41,
-1,64,8,246,105,8,106,149,225,34,10,195,69,192,179,224,34,0,237,189,
-4,246,148,6,224,127,1,160,227,226,228,0,200,27,224,44,1,96,14,2,
-49,49,50,74,26,64,37,0,79,248,43,4,64,0,228,55,26,224,101,0,
-235,94,3,239,224,2,160,16,0,50,66,88,96,10,0,52,68,220,64,89,
-3,95,54,57,55,106,65,0,50,70,66,151,209,224,119,2,97,106,1,49,
-52,240,1,3,23,83,117,98,115,117,109,112,116,105,111,110,32,99,104,101,
-99,107,32,102,97,105,108,101,100,144,13,228,186,6,65,128,65,169,246,122,
-18,217,60,97,6,224,31,0,2,49,49,50,68,33,64,62,134,12,115,101,
-0,89,132,78,129,145,233,52,1,209,239,225,29,0,150,112,64,127,197,171,
-228,178,1,225,231,4,164,143,140,56,206,206,224,43,0,226,142,2,229,14,
-9,128,51,197,64,160,24,127,126,224,32,5,97,81,192,26,178,114,160,26,
-163,48,0,85,161,237,224,9,1,224,107,0,98,133,64,8,200,209,195,86,
-131,144,97,193,102,244,239,147,12,229,129,1,229,167,8,224,135,3,193,171,
-225,35,1,225,38,20,0,49,178,200,225,110,3,250,127,4,224,31,5,224,
-194,0,239,182,0,196,23,224,91,0,224,63,5,192,142,192,124,239,168,1,
-224,13,7,224,58,8,250,191,15,96,44,167,189,227,78,12,128,26,160,154,
-247,172,4,224,198,6,228,211,0,231,106,3,194,127,224,120,1,226,4,7,
-192,53,226,136,3,225,100,20,195,135,162,221,226,139,15,226,79,4,167,119,
-224,175,11,225,166,10,128,97,96,40,224,240,2,192,140,224,46,8,224,194,
-2,224,96,2,162,135,229,208,0,165,194,121,72,109,155,130,151,0,51,168,
-56,128,49,193,53,224,198,14,160,42,224,101,2,128,47,224,97,3,224,216,
-2,230,110,0,160,82,160,145,228,212,9,128,31,129,118,224,27,6,227,185,
-0,0,32,181,10,240,15,1,109,114,224,4,1,128,115,245,39,25,9,102,
-114,101,101,84,121,86,97,114,115,245,39,5,112,226,192,184,64,174,101,151,
-160,19,145,252,177,251,0,75,241,162,0,128,6,69,10,207,81,0,89,162,
-114,201,250,228,229,3,162,214,226,127,5,237,234,7,234,0,7,162,6,230,
-69,0,231,27,5,148,9,0,85,141,192,224,30,5,96,22,129,170,233,163,
-8,67,84,242,10,3,224,247,1,228,50,8,225,19,1,65,204,229,45,2,
-252,58,1,202,51,195,244,231,69,8,200,117,231,106,3,231,149,3,192,35,
-128,173,224,175,6,238,155,7,224,187,3,180,8,192,191,225,7,38,64,43,
-96,77,0,57,71,105,224,0,1,224,40,4,211,148,64,0,65,232,0,54,
-232,179,3,231,55,14,117,99,145,215,197,246,225,136,14,164,250,128,179,245,
-205,0,96,42,245,208,10,128,13,0,54,178,103,128,143,217,201,224,137,0,
-77,38,232,77,0,224,111,2,224,178,0,0,52,74,14,6,95,52,51,56,
-32,95,52,145,235,160,113,134,174,0,51,96,94,227,65,9,2,79,32,35,
-77,169,132,143,131,50,149,122,192,137,173,170,133,196,194,235,236,117,0,161,
-0,224,165,3,242,103,3,224,26,12,232,68,2,96,2,233,90,5,230,47,
-9,132,214,172,151,129,212,225,5,7,207,75,224,19,2,64,187,208,190,224,
-138,7,143,221,0,48,239,2,0,64,29,228,208,1,227,220,0,85,27,122,
-32,160,63,2,49,49,48,96,244,2,95,56,53,229,250,2,64,50,192,158,
-96,117,182,33,238,180,0,209,125,227,227,4,91,99,224,106,1,224,36,20,
-64,92,64,8,64,91,139,210,64,41,78,143,231,13,5,128,165,165,218,137,
-141,225,105,6,229,195,2,128,1,232,103,5,161,13,227,212,3,160,33,231,
-56,18,137,111,224,126,3,228,240,6,224,31,5,232,157,0,0,83,224,169,
-2,232,89,10,160,54,192,50,226,127,3,171,36,245,127,0,225,243,0,0,
-95,139,123,224,109,0,161,153,0,49,229,16,0,160,188,229,11,16,231,197,
-1,254,161,1,224,13,3,224,56,12,224,57,3,229,43,1,160,44,129,212,
-226,224,4,230,214,0,224,221,3,64,9,226,13,5,233,99,6,225,8,9,
-128,6,129,9,167,86,225,10,13,160,160,120,178,234,164,7,96,163,225,217,
-1,225,181,15,227,60,8,0,57,242,219,2,224,80,1,64,18,226,114,0,
-233,164,0,224,17,9,225,49,2,64,191,64,74,64,155,96,159,226,124,2,
-205,188,109,98,173,23,161,81,232,7,16,12,99,97,110,110,111,116,32,117,
-110,105,102,121,32,173,34,129,94,165,8,1,56,56,64,69,224,66,19,3,
-32,97,110,100,160,58,160,45,225,10,3,226,192,0,226,93,7,67,158,238,
-250,7,230,73,3,2,49,48,57,180,77,128,61,67,223,136,12,64,69,65,
-174,0,58,129,11,163,224,251,14,0,128,8,220,111,0,67,197,234,2,49,
-49,49,132,133,64,54,141,179,224,195,1,12,80,114,105,109,105,116,105,118,
-101,115,46,126,34,104,203,64,44,160,89,230,230,10,2,49,49,48,130,48,
-228,82,1,203,164,64,104,0,53,162,210,228,234,6,64,251,229,96,0,226,
-95,8,195,12,226,95,26,240,30,4,101,105,1,49,50,64,234,239,151,2,
-160,38,229,163,6,67,1,106,88,228,11,0,0,48,130,152,226,70,55,4,
-121,99,108,105,99,226,64,11,71,195,66,20,2,95,49,48,150,97,226,74,
-20,0,61,226,72,17,162,74,225,27,1,239,175,4,225,144,0,192,248,173,
-52,224,225,0,192,224,161,143,224,142,0,161,153,200,64,96,184,227,187,14,
-225,35,17,0,48,207,42,238,239,2,1,49,49,66,173,224,235,18,4,101,
-114,114,111,114,203,125,128,133,213,231,86,237,224,41,1,3,116,121,112,101,
-64,37,224,17,1,2,107,105,110,144,207,224,18,1,2,115,111,114,86,45,
-224,18,3,4,114,101,97,108,109,64,19,64,90,135,219,240,228,39,108,13,
-64,62,135,164,176,228,133,74,166,188,102,145,226,197,2,194,44,238,48,13,
-231,91,0,240,176,25,165,114,236,47,12,198,237,193,146,231,7,9,0,85,
-102,31,237,80,8,191,64,237,62,5,160,137,139,124,120,182,0,90,64,49,
-192,25,224,100,8,224,99,2,238,154,1,169,16,238,55,4,224,180,4,237,
-88,3,224,81,7,236,96,9,64,29,128,34,160,25,0,85,227,219,0,3,
-95,55,55,51,255,116,0,237,125,1,65,171,98,61,109,115,225,101,1,224,
-136,9,139,57,161,138,225,95,12,129,132,166,134,225,129,49,228,169,6,195,
-165,132,31,0,80,98,118,231,233,0,227,209,9,98,145,128,165,232,18,3,
-163,210,243,200,6,110,158,227,161,2,3,32,95,49,56,64,31,138,129,1,
-49,48,97,248,192,84,227,204,2,225,130,1,97,21,90,74,99,196,224,60,
-0,2,95,50,55,67,188,1,48,53,172,124,224,65,0,136,189,225,30,13,
-129,207,225,97,18,193,36,233,94,8,192,24,226,142,4,226,21,0,224,78,
-15,255,115,0,224,78,7,192,24,98,170,225,50,6,226,135,16,224,46,13,
-96,0,224,49,13,65,121,97,115,225,190,10,224,23,13,96,21,67,144,224,
-99,3,238,200,9,224,132,9,226,252,3,66,244,220,139,252,100,5,97,32,
-252,94,0,0,48,101,144,165,198,192,193,140,149,236,214,0,0,58,130,85,
-142,69,69,247,64,40,0,95,105,1,76,211,192,39,64,38,136,60,224,112,
-4,252,202,1,224,107,3,64,44,136,70,252,168,12,220,162,224,19,3,224,
-1,1,196,127,224,34,16,224,32,3,224,29,20,224,26,17,224,23,14,0,
-95,252,237,1,160,197,0,54,160,242,0,89,130,141,232,189,1,237,43,1,
-161,86,224,85,2,228,18,1,219,197,96,57,242,203,1,187,176,64,21,238,
-157,10,128,68,103,244,227,72,1,130,79,128,111,224,79,0,129,212,71,175,
-167,218,185,117,96,28,234,90,9,64,109,106,92,143,254,0,56,251,84,4,
-224,96,0,228,114,3,234,125,3,209,92,96,7,130,177,240,140,2,166,79,
-192,185,163,191,133,72,238,172,6,225,98,0,65,96,136,127,120,58,64,208,
-153,0,241,95,21,66,110,240,62,5,241,217,8,241,77,0,241,73,13,64,
-0,240,2,5,64,148,97,232,233,93,8,0,48,230,113,0,96,105,227,107,
-17,96,101,227,107,6,128,156,103,113,201,148,129,161,64,114,136,153,3,85,
-32,75,51,191,48,134,230,64,26,168,117,255,229,17,255,231,4,226,232,8,
-128,1,227,72,4,226,218,1,64,95,208,30,0,89,99,237,1,67,39,208,
-37,166,248,208,1,192,73,254,199,0,226,88,0,161,175,162,156,224,41,2,
-231,111,10,224,89,2,224,47,21,227,46,2,236,91,0,232,84,15,204,24,
-96,232,229,155,7,224,28,3,230,77,4,229,121,8,105,16,0,55,247,67,
-0,160,105,239,221,0,225,197,0,138,247,226,160,0,225,226,8,231,114,9,
-160,78,230,55,9,230,153,4,224,39,0,224,240,0,233,75,2,225,216,3,
-225,88,5,224,55,1,160,255,231,31,15,231,110,175,224,219,3,224,58,11,
-192,30,165,37,145,119,97,57,228,108,2,228,178,2,234,247,0,224,60,3,
-160,62,225,101,2,237,1,6,1,49,48,246,26,1,161,11,226,149,6,165,
-127,0,51,149,10,96,66,226,98,21,224,121,5,229,166,1,242,54,0,230,
-62,8,103,248,224,181,16,98,66,227,92,0,224,157,2,192,21,193,64,224,
-62,1,226,94,3,226,197,3,160,44,192,152,226,142,1,160,110,230,83,2,
-120,226,6,67,32,95,54,51,32,95,72,50,64,165,176,223,225,140,1,0,
-66,222,245,224,104,7,193,15,97,25,101,166,96,11,1,54,52,161,36,160,
-66,128,60,224,36,3,192,211,160,25,70,135,142,130,246,207,4,238,8,1,
-13,98,97,100,32,115,121,110,111,110,121,109,32,117,115,110,75,224,170,0,
-64,70,230,26,14,160,0,161,120,184,0,69,54,177,182,3,32,85,32,95,
-113,206,1,90,32,89,154,229,68,0,235,17,0,133,46,229,34,1,229,37,
-29,96,246,193,118,225,176,1,229,34,12,225,173,3,224,36,9,236,163,28,
-173,84,96,11,192,118,244,137,0,207,223,132,202,161,180,184,159,201,12,0,
-80,134,176,224,241,2,192,223,132,215,224,82,5,227,53,0,130,233,78,150,
-139,15,251,242,6,225,142,8,193,230,160,14,160,0,228,25,11,228,132,2,
-96,50,140,185,192,44,229,88,2,225,133,11,225,87,2,229,76,23,224,121,
-8,225,85,2,239,23,1,224,161,11,224,39,1,197,144,243,191,0,252,197,
-2,197,147,130,16,97,139,1,95,51,124,254,67,13,0,57,253,59,3,64,
-0,124,244,241,16,2,2,117,98,115,116,216,8,109,112,108,101,109,101,110,
-116,101,145,50,64,0,0,58,129,196,136,118,79,60,97,102,128,14,1,52,
-32,66,206,224,1,1,255,107,2,64,39,139,207,131,141,186,219,0,53,128,
-65,0,54,96,25,224,128,1,2,100,105,99,81,145,64,26,242,93,1,229,
-89,1,0,49,154,160,161,132,229,46,8,228,64,0,160,248,116,196,194,5,
-179,88,146,91,1,48,57,131,158,250,139,7,96,159,2,10,65,32,90,178,
-0,54,98,231,64,19,137,109,96,110,0,54,74,181,3,95,52,48,56,224,
-180,2,150,15,6,45,104,97,112,112,101,110,97,47,64,52,137,135,141,229,
-225,197,4,2,95,49,55,64,196,2,85,32,67,247,138,1,224,32,11,227,
-94,0,227,7,0,224,41,4,64,34,192,41,225,248,2,128,33,75,139,0,
-50,90,37,3,95,55,54,54,224,170,2,1,61,62,96,159,224,21,6,245,
-201,2,160,32,224,89,5,1,95,49,68,236,0,64,83,97,225,215,0,160,
-229,138,13,97,22,225,21,6,224,84,2,0,84,179,140,96,49,246,191,4,
-110,45,135,97,0,57,128,8,65,207,1,49,48,108,94,64,21,253,3,1,
-125,27,0,48,150,23,3,95,49,48,56,150,205,1,48,56,130,147,236,180,
-3,65,251,224,83,18,212,244,195,98,3,95,49,51,52,130,92,99,39,64,
-83,130,216,242,21,25,135,225,166,240,224,32,11,204,86,128,64,229,189,12,
-224,26,12,133,171,229,131,9,96,22,241,179,1,165,101,192,186,224,50,11,
-241,162,1,164,213,224,44,2,160,153,224,48,5,192,178,226,80,1,128,7,
-224,40,8,226,121,7,0,83,98,30,132,120,182,73,164,133,0,57,67,85,
-96,128,118,213,238,65,4,224,142,0,228,53,4,64,79,0,67,165,79,161,
-18,65,181,71,60,192,189,96,118,128,33,64,20,64,230,160,110,0,56,68,
-224,224,101,4,135,182,198,30,224,254,1,225,185,18,134,51,235,30,133,129,
-32,230,28,21,225,68,2,226,62,9,64,27,242,119,0,2,49,48,56,113,
-119,129,15,0,89,231,149,0,228,113,1,136,39,167,64,64,53,116,126,225,
-63,2,96,0,225,169,8,64,141,224,101,0,143,236,160,52,224,60,2,224,
-172,4,242,160,5,96,35,165,251,1,80,32,128,181,0,80,101,137,64,176,
-146,70,138,6,1,95,57,166,72,65,254,100,135,66,108,122,185,2,48,56,
-51,128,25,216,31,218,210,2,48,56,50,128,24,165,213,102,16,0,55,69,
-174,228,187,1,1,91,93,152,2,96,43,152,2,0,67,137,169,201,175,64,
-237,0,64,165,192,231,135,0,114,253,64,9,0,83,98,149,87,248,132,226,
-251,103,9,230,75,0,96,52,2,49,48,53,83,47,130,178,1,50,50,234,
-142,10,8,99,111,109,112,111,115,101,83,101,152,176,97,64,65,4,68,184,
-0,53,64,165,96,16,103,16,162,228,130,248,1,54,52,199,236,65,107,72,
-40,225,107,7,133,193,64,175,252,3,5,224,150,6,128,145,224,144,1,6,
-104,97,115,70,105,101,108,168,31,64,42,0,57,129,86,229,223,0,224,79,
-37,2,115,101,116,224,79,12,64,225,209,229,64,240,224,64,6,1,95,51,
-97,68,249,192,3,4,99,67,111,110,69,90,39,161,195,94,166,230,113,2,
-225,164,0,196,46,104,42,0,56,71,238,225,66,0,1,48,55,64,84,250,
-135,17,26,67,111,110,116,114,111,108,46,69,120,99,101,112,116,105,111,110,
-46,73,110,116,101,114,110,97,108,46,233,47,0,230,225,0,96,95,1,49,
-48,100,130,106,178,104,138,232,139,1,224,95,10,4,44,32,97,116,32,193,
-9,72,163,0,57,188,114,96,207,131,29,132,187,139,109,163,207,106,180,64,
-213,128,206,1,95,57,70,215,224,213,0,1,53,52,160,118,0,53,85,156,
-1,67,39,92,249,226,137,5,163,35,224,231,2,1,104,97,97,69,130,61,
-128,125,0,54,163,130,1,80,32,165,146,96,21,201,173,253,247,11,2,48,
-54,55,249,122,1,64,170,133,12,160,10,107,240,224,21,8,64,197,228,183,
-1,129,141,201,233,232,155,0,224,55,4,196,237,96,61,131,87,163,170,224,
-29,11,128,99,64,2,168,52,244,185,1,132,205,84,161,1,57,55,67,188,
-65,177,0,52,206,172,0,95,92,246,0,95,64,127,4,95,49,56,51,32,
-165,121,67,226,65,24,2,95,51,54,199,21,101,245,105,191,123,23,0,80,
-75,222,165,76,73,42,97,13,227,9,13,7,78,101,115,116,101,100,32,102,
-67,13,10,115,32,110,111,116,32,97,108,108,111,119,235,138,2,225,12,4,
-66,222,225,12,1,134,83,245,135,3,96,21,110,118,224,50,6,245,103,1,
-98,68,207,16,224,155,10,226,172,21,4,101,120,116,114,97,128,174,2,40,
-115,41,162,182,3,66,32,95,52,99,236,100,142,131,164,192,165,67,12,0,
-49,204,135,160,32,161,55,193,209,235,220,11,224,26,6,106,146,96,21,99,
-199,132,29,238,114,2,70,6,163,226,101,140,162,252,237,12,18,132,119,0,
-54,65,28,128,149,2,57,56,52,64,56,174,62,197,89,209,82,163,15,254,
-127,1,166,22,0,85,104,250,229,110,14,64,60,102,168,0,49,66,91,68,
-134,64,20,134,101,129,25,98,90,92,151,64,24,213,108,96,47,99,173,64,
-111,1,95,57,116,47,64,32,217,202,107,244,88,95,144,87,225,57,2,0,
-67,67,231,238,88,1,224,25,3,100,2,193,28,64,250,0,50,229,175,1,
-198,85,160,57,252,147,6,227,210,2,226,229,1,201,145,163,104,227,190,5,
-166,0,226,96,7,137,160,229,190,4,11,111,114,100,32,119,105,108,100,99,
-97,114,100,226,254,9,138,201,224,195,0,81,66,200,184,232,215,0,0,50,
-128,213,128,208,224,255,0,164,229,225,230,3,225,198,1,87,124,1,10,65,
-96,72,4,65,32,64,64,65,97,126,64,35,69,105,96,74,97,34,108,41,
-64,25,232,161,1,238,159,11,233,59,0,225,54,4,164,90,96,125,235,223,
-4,224,68,4,128,157,64,169,128,205,249,227,7,64,125,0,54,96,125,0,
-75,224,123,4,180,117,151,170,136,170,145,55,155,140,224,74,4,77,13,99,
-6,227,97,4,64,89,133,199,216,88,239,207,8,64,34,216,238,0,90,66,
-234,96,17,130,211,64,174,69,204,192,7,64,174,64,29,226,220,0,230,104,
-0,134,102,64,27,232,124,46,0,103,232,44,14,68,69,97,176,203,183,241,
-201,0,64,148,84,39,157,44,96,11,231,242,0,103,38,228,163,0,231,18,
-7,128,135,238,215,3,2,111,120,121,165,138,224,157,3,0,58,128,133,234,
-183,1,141,121,138,184,64,132,106,71,69,23,138,135,101,78,144,140,69,79,
-2,79,32,35,71,159,231,103,0,64,116,241,26,4,1,66,64,145,24,64,
-44,209,24,136,172,0,53,149,235,1,49,48,164,78,64,185,170,180,99,225,
-2,64,95,56,84,126,0,75,128,28,193,190,2,80,32,35,64,55,129,194,
-64,66,226,207,0,75,115,132,227,129,53,225,202,0,78,107,233,73,1,239,
-107,12,0,50,122,209,1,48,51,135,177,239,107,0,227,40,7,98,172,0,
-57,186,241,163,45,231,179,3,90,83,229,217,1,101,193,110,79,64,120,1,
-95,52,64,107,224,85,1,204,175,246,122,6,237,107,1,128,42,247,47,4,
-235,195,0,102,216,240,38,18,64,16,182,157,243,119,2,249,211,1,224,5,
-0,103,71,227,234,2,64,18,0,83,128,153,239,57,13,229,45,0,128,24,
-128,126,167,19,0,55,150,206,252,171,1,225,66,1,129,242,145,6,210,217,
-66,191,100,248,64,54,64,76,2,80,32,95,141,30,113,37,64,204,114,238,
-250,172,2,165,45,184,61,168,53,151,113,64,71,128,242,133,80,157,183,225,
-157,0,174,14,64,37,206,7,224,74,2,213,161,225,9,1,224,181,8,224,
-16,8,107,18,177,130,1,52,50,64,23,222,54,128,92,130,19,211,4,65,
-111,161,12,192,179,138,252,0,48,229,235,2,192,149,249,192,7,224,181,3,
-183,156,130,217,199,104,226,164,9,168,103,226,138,0,233,91,2,129,115,96,
-184,2,57,53,32,135,247,192,43,225,1,1,166,150,224,54,1,1,95,57,
-172,94,232,221,3,64,132,132,189,2,95,50,49,74,78,96,130,0,52,73,
-40,1,49,48,116,161,0,58,128,107,224,166,21,162,37,128,97,172,131,64,
-64,232,131,0,96,179,68,14,231,14,0,64,87,132,158,1,80,32,64,11,
-230,218,3,224,103,10,201,168,225,151,18,234,126,3,96,125,168,0,225,21,
-23,149,147,225,21,6,66,139,132,205,236,241,3,96,86,73,10,96,197,64,
-38,246,47,1,224,182,20,192,32,97,36,162,102,231,135,2,135,158,0,52,
-64,24,98,55,65,41,160,135,133,56,71,116,243,26,1,69,206,99,99,130,
-213,255,174,1,128,50,133,85,0,90,64,46,64,14,191,154,253,241,0,167,
-134,168,54,64,33,181,78,224,188,0,2,55,56,49,80,77,234,91,0,131,
-92,235,221,6,99,76,1,55,56,170,251,233,207,0,0,50,132,201,0,51,
-165,145,115,250,197,113,225,101,3,3,67,32,95,55,172,211,236,222,14,96,
-168,64,43,64,162,130,164,88,3,247,243,5,247,249,8,129,3,64,55,64,
-210,6,51,54,57,32,75,32,85,106,157,224,1,11,188,86,128,0,224,32,
-23,224,29,20,224,26,17,224,23,14,224,20,11,224,17,8,224,14,5,224,
-11,2,192,8,96,5,1,95,57,137,127,224,0,3,65,4,131,95,135,90,
-64,32,130,16,65,252,104,174,0,73,235,55,12,98,122,102,27,0,55,74,
-111,1,95,49,64,70,243,89,1,151,223,166,159,230,167,2,88,88,230,77,
-4,247,151,5,2,75,105,110,238,73,0,64,131,0,54,129,159,0,52,130,
-37,0,48,150,239,242,230,0,229,246,0,96,9,68,77,166,95,0,51,98,
-80,0,51,139,202,224,6,4,108,246,64,3,103,0,192,76,0,83,74,45,
-1,95,51,96,164,192,32,224,106,19,111,255,224,108,1,64,255,96,114,224,
-108,31,0,82,224,108,26,161,186,77,57,128,34,224,110,6,160,103,224,117,
-2,224,106,9,224,63,3,224,113,2,176,69,131,178,192,147,224,40,0,224,
-108,18,224,115,2,128,67,224,61,13,160,106,3,95,49,55,57,225,219,2,
-25,92,51,52,38,115,114,99,47,77,105,99,114,111,72,115,47,84,67,77,
-111,110,97,100,46,104,115,64,25,5,44,49,56,51,58,53,240,69,2,130,
-54,136,245,169,176,0,51,103,127,224,13,0,91,30,224,13,1,79,251,160,
-13,1,53,57,224,11,1,1,54,48,224,11,0,66,80,197,136,67,14,74,
-247,64,19,175,36,134,50,233,232,1,96,73,100,152,127,19,130,225,64,47,
-0,51,224,47,16,224,57,2,76,119,224,57,0,224,64,6,245,183,1,224,
-54,7,224,152,1,224,53,9,165,126,1,52,57,226,74,4,111,91,104,72,
-97,176,96,52,163,140,224,6,5,224,33,0,133,108,224,92,2,224,33,14,
-160,26,224,40,3,224,33,13,224,40,3,69,198,129,165,68,32,64,182,133,
-146,134,153,235,99,14,96,245,0,83,64,205,132,59,1,54,32,125,250,230,
-184,0,241,220,15,5,97,115,115,101,114,116,66,71,12,100,101,58,32,101,
-120,112,101,99,116,101,100,61,162,68,164,137,253,91,0,125,78,130,80,0,
-50,99,46,77,114,93,254,0,79,96,18,0,56,160,8,75,90,128,8,0,
-57,248,176,2,224,134,19,4,44,32,103,111,116,160,117,160,102,160,97,128,
-0,0,58,140,128,103,108,134,132,64,17,133,117,5,95,49,50,52,32,75,
-101,86,97,87,0,55,227,48,2,4,84,67,69,120,112,148,226,224,25,8,
-252,181,0,224,26,9,229,67,1,224,26,8,2,83,111,114,215,162,3,95,
-49,50,55,224,168,0,2,95,49,51,99,38,96,12,64,156,245,197,0,202,
-194,2,50,49,57,65,186,129,233,2,48,50,52,242,156,0,234,232,6,243,
-163,14,225,62,19,17,77,117,108,116,105,112,108,121,32,100,101,102,105,110,
-101,100,58,32,160,189,0,51,112,104,0,64,178,228,64,150,0,54,163,2,
-1,51,53,74,12,81,186,143,188,1,49,48,78,19,242,153,0,70,197,96,
-24,0,89,130,81,194,177,98,105,172,77,70,159,128,203,96,8,64,53,131,
-215,102,188,142,171,64,26,128,17,226,183,12,226,209,11,254,152,2,235,6,
-16,199,160,233,44,4,233,240,0,128,160,160,166,235,206,4,107,55,237,65,
-3,2,49,48,48,64,81,64,7,141,153,205,66,224,96,12,2,49,48,48,
-237,57,2,237,6,8,234,150,17,238,234,2,224,176,11,224,203,12,235,84,
-0,224,51,5,160,131,245,59,6,128,24,130,142,203,10,65,126,223,191,1,
-50,49,227,32,0,99,158,163,156,64,7,0,49,106,24,68,45,226,80,1,
-4,115,117,99,99,32,226,236,3,64,39,102,30,96,93,129,59,161,64,74,
-81,192,23,1,49,48,76,219,224,13,2,224,145,1,64,13,102,84,96,13,
-64,155,250,73,0,239,183,1,181,215,64,43,129,232,129,199,140,133,239,159,
-2,64,71,75,102,0,54,105,109,96,47,140,92,224,7,5,0,58,96,115,
-64,101,3,85,32,75,50,82,241,83,252,96,22,250,52,4,224,121,10,224,
-108,4,2,55,54,53,224,107,16,64,76,227,235,0,224,76,27,0,54,68,
-222,224,76,18,0,54,224,76,3,224,73,6,160,64,0,48,224,64,8,64,
-56,131,203,115,108,224,49,0,147,150,3,49,48,49,50,203,246,236,0,15,
-224,70,0,131,249,116,34,235,243,4,64,27,195,223,71,98,0,49,64,41,
-64,20,131,226,97,97,236,38,7,64,30,130,130,1,75,50,65,123,64,15,
-166,205,0,50,64,36,0,58,130,134,102,221,229,215,0,66,159,96,80,236,
-120,12,64,32,206,194,102,231,0,57,117,108,0,67,76,130,106,227,147,126,
-132,95,64,44,129,79,236,160,0,131,168,192,1,122,157,64,0,224,22,5,
-192,1,236,148,3,224,34,12,224,32,3,224,29,20,224,26,17,236,83,4,
-64,176,225,199,1,0,57,94,196,248,171,2,0,53,83,161,106,32,0,79,
-67,202,1,57,56,97,219,103,231,0,79,131,20,78,207,247,226,0,64,31,
-132,24,164,234,65,40,97,72,193,105,129,235,96,46,236,70,6,10,80,114,
-105,109,105,116,105,118,101,115,46,228,5,0,64,49,130,1,224,39,12,167,
-53,64,37,197,245,224,196,21,67,23,124,164,192,203,0,57,185,188,96,22,
-96,20,75,59,146,229,96,183,224,48,9,97,230,224,48,2,101,123,224,48,
-18,0,57,141,117,224,48,0,64,15,224,48,21,146,195,224,48,1,0,49,
-224,48,5,221,104,96,27,98,137,224,42,1,65,118,1,57,57,64,162,225,
-117,0,130,11,225,169,13,97,58,131,46,113,170,64,34,65,158,2,57,57,
-56,64,141,69,182,224,10,3,96,131,0,58,96,95,128,37,2,55,32,58,
-64,31,163,27,1,57,57,122,74,1,57,52,64,10,97,43,253,251,4,225,
-184,2,1,45,62,133,228,0,58,64,66,160,61,96,250,107,254,151,204,64,
-66,226,43,0,0,58,96,26,128,13,0,52,64,13,162,71,161,49,0,50,
-96,47,226,41,18,96,112,0,58,96,40,224,34,15,1,78,97,66,115,0,
-58,97,110,224,35,15,5,83,121,109,98,111,108,128,38,129,42,224,38,12,
-8,67,111,110,115,116,114,97,105,110,128,81,66,34,226,244,25,234,2,0,
-0,58,97,103,224,91,15,170,68,0,58,98,169,105,88,0,48,98,231,97,
-50,65,212,128,19,0,54,224,61,2,6,98,117,105,108,116,105,110,64,92,
-80,2,64,3,0,58,96,48,97,120,123,108,119,143,67,44,64,19,168,2,
-1,52,56,68,221,116,210,2,95,57,55,97,207,0,48,64,4,136,176,224,
-18,9,0,58,99,119,204,238,134,76,126,170,224,9,0,171,220,240,73,2,
-1,57,56,128,94,96,6,96,86,108,138,128,81,0,58,96,6,101,152,109,
-47,141,50,2,60,32,64,102,68,217,147,160,18,124,19,0,85,82,182,0,
-54,202,205,136,204,240,253,0,96,105,232,117,5,5,103,101,116,73,100,101,
-97,166,112,231,0,90,64,122,192,138,0,85,81,69,96,133,253,52,0,0,
-57,105,105,138,178,64,250,128,22,213,20,111,64,136,63,99,104,253,97,10,
-64,7,131,68,64,73,234,239,7,150,62,64,13,245,103,0,97,89,169,204,
-231,142,0,67,52,128,10,0,50,233,123,0,64,82,195,137,96,84,166,0,
-224,87,1,206,178,142,181,128,13,97,154,161,90,129,46,192,115,160,251,64,
-181,142,247,1,95,50,73,219,66,23,75,18,1,95,51,100,12,1,95,51,
-129,11,1,55,54,193,34,231,32,9,0,57,96,255,199,31,106,102,231,30,
-7,219,229,224,1,9,231,15,91,224,23,14,224,20,11,224,17,8,224,14,
-5,224,11,2,243,184,9,0,58,97,8,225,37,17,103,50,225,37,0,163,
-74,232,68,7,136,62,224,134,1,224,1,3,225,43,151,225,18,7,0,58,
-96,243,233,250,5,233,127,10,128,41,131,131,86,37,254,70,2,224,39,6,
-0,58,108,254,128,38,0,52,224,39,1,234,27,0,110,3,132,79,228,24,
-3,177,10,205,72,99,160,0,64,129,114,238,68,8,132,252,141,60,249,86,
-1,195,91,1,95,57,85,87,2,64,95,55,68,196,196,132,128,121,227,155,
-1,225,252,2,97,35,0,83,194,1,79,58,247,81,0,195,158,1,95,52,
-155,120,95,162,96,72,131,144,234,252,4,225,52,13,64,44,0,54,226,69,
-7,0,90,132,109,224,1,9,227,104,176,192,8,247,41,10,0,58,97,82,
-161,118,224,1,11,224,244,4,225,24,207,220,68,96,0,0,58,97,37,228,
-132,1,0,55,69,185,138,76,130,247,0,58,98,153,237,13,8,226,98,14,
-64,46,241,112,0,224,79,1,103,174,64,119,70,69,0,58,67,58,98,134,
-1,55,55,73,187,0,54,231,55,0,78,23,238,100,0,64,61,107,179,0,
-55,82,106,160,191,128,83,64,49,99,17,110,106,107,129,102,170,0,57,117,
-234,0,51,107,97,1,95,54,72,209,96,145,0,53,252,212,1,155,86,151,
-168,230,232,0,136,48,96,100,149,143,224,25,6,177,94,0,83,232,115,6,
-64,169,247,132,0,160,19,68,14,99,138,231,100,0,224,13,5,64,71,224,
-51,7,64,173,224,37,6,169,133,231,8,1,105,52,193,205,101,243,239,209,
-3,65,213,242,114,1,160,199,231,221,5,189,169,200,73,96,54,191,148,222,
-187,232,0,1,92,164,64,32,65,177,169,164,123,240,228,198,3,1,95,55,
-132,177,224,88,0,160,34,116,43,252,36,2,0,55,91,207,220,86,64,223,
-1,95,55,81,17,173,143,128,11,128,0,224,179,3,64,202,193,10,162,194,
-133,80,0,54,96,48,128,16,128,160,224,211,0,224,130,1,98,30,201,36,
-1,95,55,65,169,192,105,224,206,4,96,171,224,131,4,160,110,169,187,217,
-193,0,39,233,63,4,130,240,192,130,224,50,1,129,70,96,50,113,129,225,
-50,8,64,13,0,52,230,7,4,241,217,4,241,25,13,0,95,99,64,201,
-128,236,46,6,1,36,102,138,169,64,128,0,89,224,156,0,160,227,96,144,
-73,159,80,206,245,188,19,1,36,120,246,247,4,95,171,192,0,129,64,224,
-162,22,244,35,0,253,228,0,96,179,224,185,0,0,64,234,212,2,206,177,
-226,171,14,96,16,225,91,0,98,217,217,28,164,105,228,112,1,129,119,99,
-12,97,112,66,30,129,132,231,111,7,160,51,97,65,224,0,0,236,66,6,
-64,43,227,153,6,65,7,227,204,7,196,60,224,177,0,0,79,128,194,97,
-244,99,47,192,67,65,143,91,81,157,91,232,98,6,98,120,150,207,69,87,
-224,29,6,148,173,160,29,253,107,20,238,8,2,1,73,79,184,21,192,0,
-100,68,129,44,99,3,133,59,68,162,3,95,55,49,51,224,68,2,9,73,
-79,46,112,101,114,102,111,114,109,224,67,1,97,43,96,60,162,222,224,60,
-0,228,41,5,64,222,64,167,65,124,0,51,78,130,3,66,32,95,51,112,
-81,177,101,65,140,227,95,0,73,174,229,11,2,162,56,229,113,9,169,11,
-225,162,6,64,255,225,162,6,141,228,229,111,21,0,85,225,173,7,196,48,
-132,222,160,12,128,204,67,179,99,149,108,211,0,55,151,140,102,89,65,54,
-249,13,3,241,76,1,132,171,224,193,6,96,35,229,235,8,230,30,9,128,
-159,0,90,201,137,96,11,160,13,224,177,1,128,9,64,174,226,217,3,97,
-142,97,202,2,79,32,35,76,31,160,144,231,144,4,224,94,3,131,95,229,
-72,8,135,21,96,10,67,76,196,192,131,82,161,229,224,123,7,64,0,230,
-47,7,0,67,65,38,227,248,2,196,134,69,74,66,218,1,95,52,93,117,
-91,150,66,217,96,165,238,226,1,134,14,0,51,103,217,2,95,57,53,87,
-181,118,67,96,21,147,1,128,0,246,124,2,99,39,227,213,2,0,58,103,
-255,146,187,64,66,64,10,64,164,161,156,79,134,75,91,94,129,98,155,96,
-57,232,11,8,93,185,0,95,72,161,2,64,95,57,155,30,2,95,57,53,
-144,156,66,215,184,123,0,58,96,234,254,1,0,68,183,228,199,1,193,78,
-230,153,9,225,244,0,218,196,226,121,5,100,51,0,39,99,17,96,152,231,
-8,1,128,78,133,9,227,27,1,232,20,0,129,184,231,51,1,224,29,5,
-231,10,5,160,7,226,62,1,249,117,2,1,101,113,220,90,231,21,1,224,
-87,1,224,14,0,194,22,199,229,192,102,192,225,165,188,69,144,115,194,133,
-200,96,71,196,206,132,29,2,95,55,52,132,37,230,102,4,97,216,96,40,
-0,52,166,81,198,105,232,72,26,231,34,16,231,32,1,201,79,193,57,230,
-59,2,231,47,54,4,64,95,56,55,49,249,32,3,130,163,66,46,140,121,
-0,90,161,247,233,31,2,196,42,224,20,1,226,7,154,96,70,1,57,53,
-150,110,64,12,118,130,166,94,0,56,114,144,64,48,128,21,96,39,225,167,
-4,164,163,225,148,117,65,149,212,225,225,144,3,98,125,226,101,7,226,85,
-6,184,143,96,217,172,188,84,108,1,55,51,229,33,1,224,200,1,204,119,
-225,159,0,232,64,3,128,24,228,64,4,158,220,65,154,138,202,227,80,2,
-107,234,192,57,99,128,68,151,0,49,235,150,1,138,185,227,20,5,96,13,
-136,99,101,202,128,29,0,56,102,205,202,154,0,56,99,168,197,79,162,39,
-65,16,117,249,138,202,96,96,1,56,48,226,41,3,0,36,194,40,168,34,
-0,56,141,124,2,55,57,55,129,179,230,140,1,0,58,103,67,197,49,204,
-185,134,140,0,55,158,107,128,18,225,9,3,75,119,224,13,0,235,108,1,
-174,77,224,40,2,128,178,1,95,57,65,247,2,95,57,53,96,132,1,52,
-50,173,185,226,247,0,160,207,0,55,86,216,254,191,6,64,33,64,71,68,
-118,173,16,230,158,0,224,244,8,130,107,0,58,65,120,64,209,127,229,227,
-82,0,0,57,96,68,120,180,224,50,1,29,67,111,110,116,114,111,108,46,
-69,120,99,101,112,116,105,111,110,46,73,110,116,101,114,110,97,108,46,112,
-97,116,64,9,7,77,97,116,99,104,70,97,105,88,78,165,16,67,76,161,
-87,1,57,52,132,235,66,220,0,57,127,56,96,127,207,58,1,80,32,169,
-10,1,64,58,96,41,230,152,0,129,53,2,95,57,52,251,2,1,0,52,
-65,241,0,58,97,41,111,214,196,122,0,80,106,165,67,131,239,214,3,230,
-195,6,0,66,65,226,181,247,65,94,138,189,0,75,240,5,3,161,73,130,
-193,1,57,52,103,66,224,46,7,127,5,128,0,3,95,57,52,53,100,6,
-214,165,192,111,225,221,2,231,81,5,130,250,224,5,3,128,73,229,41,0,
-223,179,160,216,140,84,64,0,128,66,224,1,1,233,178,4,247,58,1,230,
-229,6,224,134,1,224,140,1,224,77,9,224,75,5,232,177,2,160,64,239,
-89,3,224,5,3,96,158,160,102,224,64,2,227,16,1,68,59,106,183,224,
-116,4,192,83,236,52,0,224,114,1,192,34,105,214,100,110,230,66,4,224,
-66,1,96,111,224,17,3,0,83,152,226,224,52,5,208,105,224,40,3,236,
-172,6,160,51,174,249,160,206,242,106,0,224,143,5,160,62,227,193,4,240,
-117,4,224,56,0,229,255,0,239,162,4,225,220,1,160,35,225,234,3,178,
-219,160,97,225,172,0,192,154,64,157,0,80,99,158,238,171,0,238,195,1,
-64,46,163,251,164,75,68,245,0,54,137,244,74,120,96,9,230,139,17,3,
-79,32,35,49,67,34,173,114,230,135,10,204,140,97,106,163,112,96,45,96,
-111,2,56,51,50,64,16,227,26,1,128,40,226,134,4,64,27,129,64,226,
-110,4,234,86,0,241,229,0,163,27,224,34,2,165,11,224,128,20,0,51,
-224,128,5,225,71,1,226,104,3,234,195,2,102,214,175,123,128,144,224,82,
-5,126,94,0,52,224,84,0,224,91,0,102,193,192,40,224,108,3,226,235,
-2,231,76,5,64,51,90,186,240,127,10,220,147,197,172,0,58,100,225,101,
-22,182,221,199,133,64,7,98,33,0,58,97,219,251,110,3,128,186,64,99,
-224,72,1,226,208,0,224,221,17,98,46,224,221,24,0,58,68,226,128,110,
-242,141,0,233,120,23,0,58,101,57,224,162,6,225,219,1,0,85,230,192,
-8,130,22,177,16,224,13,10,133,8,227,245,0,96,190,117,99,224,69,2,
-101,179,226,1,2,192,69,160,122,0,39,72,227,2,49,55,57,224,176,2,
-25,92,51,52,38,115,114,99,47,77,105,99,114,111,72,115,47,68,101,115,
-117,103,97,114,46,104,115,64,25,6,44,51,57,48,58,49,48,240,152,2,
-227,175,3,129,86,227,167,3,64,0,229,188,3,224,2,7,224,71,1,228,
-157,3,228,166,2,160,83,229,241,1,224,195,1,224,201,6,192,10,71,51,
-224,85,12,132,241,224,55,2,224,96,4,224,102,8,224,103,6,224,55,5,
-230,97,11,224,50,14,96,98,229,215,4,224,52,26,224,195,3,224,31,11,
-130,5,128,0,225,95,11,199,65,224,53,5,224,23,1,239,64,0,128,18,
-96,30,194,68,224,8,10,96,242,224,11,2,174,35,224,94,0,137,128,195,
-41,128,83,228,119,4,194,176,161,170,131,131,230,36,4,209,169,224,76,0,
-192,20,226,207,4,106,91,99,112,0,57,178,186,224,95,0,229,92,5,231,
-144,4,138,129,198,65,142,137,202,18,194,194,229,147,0,234,148,1,174,235,
-228,54,1,0,95,105,47,65,200,1,66,32,247,175,0,183,216,183,208,228,
-98,2,225,243,11,64,41,140,58,242,15,0,148,99,224,144,4,165,43,64,
-8,199,242,228,154,1,229,98,1,192,208,1,95,52,143,123,96,15,64,163,
-224,102,2,128,136,224,135,5,180,137,224,38,5,66,81,1,95,57,232,230,
-3,192,33,224,1,5,226,206,8,226,205,5,224,48,9,226,202,2,224,26,
-7,226,197,1,192,17,193,62,97,65,97,33,128,220,1,95,54,245,82,20,
-84,132,82,94,224,0,4,226,226,38,106,225,226,214,3,226,212,0,160,77,
-226,96,11,173,190,160,33,96,53,226,52,0,196,115,96,21,129,149,64,141,
-130,66,128,24,226,67,2,192,133,228,166,0,226,73,14,193,110,128,46,243,
-232,0,64,36,185,60,194,4,83,190,0,50,226,84,11,228,92,3,229,191,
-3,96,121,225,53,1,131,43,225,29,1,224,11,12,228,24,55,128,102,228,
-194,6,64,72,223,151,192,0,193,42,192,236,224,140,1,160,182,224,155,0,
-2,95,54,56,71,134,224,60,0,226,5,8,160,98,224,101,4,74,30,0,
-50,77,82,1,57,50,249,204,0,224,146,3,160,102,224,103,0,128,237,224,
-164,5,163,28,160,43,98,173,161,68,106,136,79,199,242,219,6,194,46,169,
-197,192,225,72,11,129,171,128,64,65,216,213,120,2,95,57,50,234,129,1,
-161,100,229,33,3,64,16,117,220,1,57,50,160,100,226,72,0,145,14,1,
-57,51,98,66,64,21,128,16,0,50,93,224,128,0,192,42,224,45,0,65,
-193,85,131,65,30,1,51,49,179,233,0,57,74,215,64,105,100,250,0,90,
-101,10,73,102,96,178,96,16,192,100,224,86,0,225,187,1,163,31,66,131,
-228,203,0,160,198,229,236,7,99,40,2,64,95,57,180,81,228,13,6,253,
-189,6,100,217,97,115,228,235,6,100,23,183,163,164,247,224,39,5,224,38,
-5,224,37,2,160,131,192,229,129,136,128,229,0,90,110,224,141,93,161,230,
-235,81,4,193,139,0,85,247,196,0,160,76,169,250,237,153,1,226,76,0,
-96,65,237,81,3,64,1,196,14,192,19,225,203,0,224,111,12,224,59,5,
-163,230,225,124,2,238,171,9,106,214,224,55,0,96,93,194,112,230,147,3,
-228,84,18,160,0,0,58,112,144,145,58,169,72,97,98,227,117,0,254,240,
-4,228,229,1,233,190,2,226,252,1,240,174,3,224,208,0,235,6,13,224,
-63,0,206,96,228,74,3,174,60,160,214,101,120,131,144,99,148,134,97,83,
-147,163,241,252,144,8,64,0,1,95,57,85,207,0,58,98,132,160,222,64,
-72,194,123,0,39,248,94,5,100,65,216,100,0,51,65,149,1,95,57,83,
-242,0,58,96,69,148,87,96,177,84,91,163,69,224,206,0,225,182,2,224,
-21,24,224,227,5,224,46,8,160,35,195,205,148,249,128,28,247,193,0,128,
-84,228,225,2,131,129,228,14,0,224,22,0,179,179,64,49,194,73,130,33,
-96,29,186,207,143,133,0,52,86,40,216,3,129,70,96,54,225,252,11,229,
-133,0,64,71,224,42,0,128,33,134,98,225,252,15,232,57,0,224,66,0,
-224,94,1,231,208,2,96,19,168,73,253,114,3,128,74,160,242,176,31,194,
-43,96,26,0,90,66,130,160,13,249,227,1,1,64,64,68,67,129,181,96,
-0,0,58,97,218,243,153,1,96,71,162,97,96,95,192,5,202,180,224,194,
-0,246,155,6,128,22,243,150,4,224,25,2,160,90,225,40,1,192,18,128,
-5,131,155,1,57,51,93,162,182,218,128,6,136,42,130,148,133,192,0,55,
-129,123,96,224,132,210,224,14,5,2,95,54,51,162,202,160,0,247,204,13,
-225,205,0,226,56,1,164,41,225,8,1,98,33,1,95,57,229,74,4,96,
-0,247,119,7,0,110,183,229,247,142,7,215,143,67,68,124,1,160,166,166,
-39,220,145,88,0,0,50,131,135,124,149,156,13,161,231,188,126,225,185,3,
-0,58,96,146,143,185,0,57,188,200,128,194,128,56,94,38,96,57,119,117,
-0,58,65,51,128,45,165,184,80,178,131,75,131,16,65,149,129,94,1,55,
-53,100,70,228,144,0,231,243,0,128,42,229,76,1,0,58,96,119,96,84,
-149,33,225,70,0,224,2,1,161,53,226,240,1,102,237,198,11,224,23,2,
-128,1,230,38,1,233,41,6,238,249,14,224,98,12,229,29,0,130,181,195,
-130,229,86,4,64,18,224,41,1,165,70,170,5,160,23,224,17,6,96,8,
-194,37,252,39,1,252,12,4,252,13,1,224,93,1,225,98,0,134,26,224,
-89,1,224,8,0,2,95,55,56,66,230,97,92,0,55,83,155,241,126,10,
-1,61,61,248,205,1,250,202,4,64,0,134,249,230,255,2,128,1,163,250,
-224,16,16,64,112,67,192,0,54,70,241,130,252,84,24,89,82,153,83,0,
-35,64,225,222,197,224,70,1,186,82,241,110,21,9,69,110,99,111,100,101,
-68,97,116,97,209,113,5,49,53,50,58,49,51,241,113,2,225,253,6,228,
-169,0,224,22,5,235,228,0,224,45,28,224,22,0,193,234,195,235,232,154,
-1,226,142,6,160,45,234,47,0,65,166,121,54,225,148,15,2,79,32,35,
-67,141,233,242,0,225,143,9,64,88,226,100,1,226,160,3,226,122,4,101,
-102,160,50,192,0,226,41,0,165,60,133,109,197,187,0,58,101,29,1,10,
-65,89,83,0,58,103,158,100,81,100,17,88,190,128,3,1,80,32,72,119,
-164,89,229,234,8,69,69,1,10,65,70,225,106,57,66,214,0,90,129,56,
-64,14,66,148,160,14,230,105,6,234,119,4,202,72,65,158,0,75,66,52,
-128,24,224,55,11,4,64,95,49,54,50,203,107,0,58,96,6,252,215,0,
-193,158,66,100,0,58,75,151,228,162,2,64,33,96,7,99,245,233,141,3,
-232,180,1,246,63,2,128,23,160,87,248,170,3,0,85,216,57,163,125,234,
-222,22,224,37,11,224,36,1,194,94,74,61,4,49,48,32,64,80,64,7,
-81,197,0,56,172,39,0,58,108,48,97,149,0,58,108,184,64,235,241,103,
-0,233,113,4,96,162,186,131,224,184,13,75,195,181,241,132,121,224,149,3,
-96,57,172,14,192,36,224,37,9,96,24,221,96,237,120,4,0,67,72,240,
-234,32,0,246,211,3,0,58,96,32,230,171,10,7,51,56,55,32,95,50,
-48,50,227,246,2,7,99,111,110,65,114,105,116,121,195,214,107,86,64,42,
-226,54,2,96,132,0,58,110,143,166,175,64,223,98,38,64,22,0,54,232,
-122,7,224,9,0,96,120,0,57,95,23,134,221,107,184,199,11,1,95,49,
-101,114,129,37,134,237,0,58,96,88,230,229,7,133,153,128,85,254,204,1,
-96,64,192,53,214,207,239,7,0,2,95,55,56,64,27,175,92,1,55,55,
-237,203,0,96,146,1,55,56,66,203,1,95,54,106,29,129,88,237,237,1,
-158,147,96,86,131,105,99,99,134,142,129,225,227,32,3,202,98,1,95,55,
-87,247,131,7,72,7,3,10,65,32,75,109,154,241,97,2,226,61,14,224,
-25,12,97,52,98,204,106,133,174,72,96,113,227,171,0,79,170,137,55,224,
-37,22,230,239,3,96,0,224,49,6,224,48,8,0,90,201,159,224,38,23,
-175,135,246,73,6,164,28,227,236,12,96,40,133,74,224,90,2,64,22,244,
-13,10,130,246,128,17,224,49,19,160,32,102,106,241,159,13,1,95,49,109,
-4,231,14,1,225,64,18,143,135,225,63,8,229,17,1,64,0,0,58,116,
-162,229,136,0,228,31,15,115,130,224,25,12,96,94,129,38,224,25,6,96,
-168,192,25,228,87,4,68,178,224,184,18,96,30,224,185,10,1,50,49,188,
-105,192,59,129,86,225,83,8,107,179,225,133,7,128,44,225,82,0,161,72,
-224,88,5,162,6,0,49,150,42,224,104,2,224,164,10,64,93,224,163,21,
-225,21,13,99,148,225,21,12,103,183,224,111,16,64,29,225,19,27,224,58,
-10,100,174,224,170,21,224,59,16,64,34,224,59,22,227,249,14,224,231,3,
-224,25,4,97,93,225,1,12,164,44,224,138,14,228,15,14,0,49,226,207,
-1,224,58,16,64,114,224,58,10,0,57,75,49,1,53,57,149,98,224,65,
-21,101,105,224,65,11,242,41,1,226,234,13,224,210,20,227,253,3,224,85,
-2,224,146,2,224,58,16,227,35,14,229,29,2,64,31,104,242,100,214,0,
-58,96,6,163,232,1,95,57,94,38,160,193,96,66,128,17,109,179,160,17,
-0,58,96,219,224,48,1,103,178,1,49,55,70,25,64,32,7,10,65,32,
-102,47,61,32,58,96,18,64,12,0,61,96,12,0,54,231,69,1,103,255,
-0,66,79,5,0,53,96,172,96,6,0,58,64,103,64,34,70,208,1,52,
-57,96,214,165,27,163,206,228,249,14,228,251,1,96,183,224,7,2,117,202,
-81,100,97,207,96,184,135,72,64,95,104,151,116,139,161,12,99,220,0,58,
-96,6,64,133,1,32,83,129,91,226,195,12,195,171,224,25,9,196,219,224,
-25,9,132,60,233,74,15,103,132,2,95,55,56,112,92,1,56,54,200,234,
-107,189,135,239,224,19,0,96,68,80,215,0,50,71,212,112,189,207,171,0,
-56,132,12,246,250,2,149,55,240,94,1,129,75,143,35,1,66,32,112,12,
-214,241,3,95,49,53,52,64,4,6,54,32,64,79,32,35,49,66,21,137,
-126,1,95,49,76,95,1,49,52,133,55,96,17,2,55,54,53,80,16,0,
-52,98,93,64,109,0,48,64,9,1,56,51,137,75,192,0,233,237,9,185,
-22,224,24,0,128,141,108,202,188,104,224,6,5,64,0,193,246,229,198,4,
-130,218,131,4,228,75,11,96,134,234,109,15,96,116,65,48,160,100,128,65,
-1,95,56,66,177,8,95,53,52,54,32,95,53,52,55,234,182,3,128,52,
-96,50,0,56,182,237,65,99,253,26,5,224,135,12,97,176,224,135,8,96,
-21,224,82,0,65,195,241,150,7,0,102,239,78,1,64,34,1,54,49,73,
-226,107,201,96,49,98,19,224,50,14,224,156,9,139,95,2,95,56,57,253,
-207,6,129,126,226,170,9,229,136,4,224,25,4,101,81,192,232,226,199,4,
-101,246,161,148,2,95,56,57,226,173,0,4,95,52,51,56,32,236,126,0,
-129,251,237,55,2,128,67,237,55,12,133,189,224,32,18,199,199,225,94,8,
-192,24,190,49,211,173,1,52,48,166,155,224,48,8,96,106,97,143,111,43,
-96,193,66,11,0,49,68,136,128,0,227,184,8,65,36,3,85,32,95,57,
-67,65,226,107,18,1,95,57,192,117,79,45,161,122,193,39,0,57,121,100,
-225,33,5,226,72,14,226,208,20,224,154,0,196,178,224,37,10,234,118,2,
-193,124,128,43,230,66,0,224,48,1,160,138,133,94,252,250,1,224,52,21,
-161,42,224,52,6,224,10,0,224,52,13,163,97,224,41,4,192,229,150,100,
-64,42,234,160,3,226,246,6,0,68,81,193,11,76,105,115,116,95,84,121,
-112,101,46,43,43,241,192,0,128,83,227,231,3,227,232,4,224,0,6,196,
-138,99,99,228,131,8,88,69,231,209,0,111,90,130,222,239,95,7,0,58,
-96,50,70,98,1,49,50,69,76,0,52,102,89,103,205,0,56,93,160,3,
-95,49,51,48,192,17,0,58,96,6,109,72,224,168,0,78,188,160,186,229,
-147,7,224,242,1,11,105,109,112,111,115,115,105,98,108,101,58,32,160,237,
-130,42,181,6,128,61,69,179,1,57,48,165,43,98,99,254,16,0,224,94,
-11,2,79,32,35,80,250,242,53,1,64,64,252,57,1,96,174,168,39,224,
-218,2,96,95,175,190,114,21,189,124,102,48,124,199,0,53,171,51,224,115,
-14,1,52,52,224,115,0,161,129,224,65,3,134,114,224,56,12,93,44,230,
-158,14,161,100,96,155,0,58,96,6,168,86,97,220,161,228,97,207,226,75,
-11,4,82,97,116,105,111,130,76,2,95,109,107,96,13,2,110,97,108,229,
-142,1,99,207,2,95,57,48,104,3,224,15,2,144,153,68,13,2,10,65,
-32,97,105,0,58,96,20,96,13,0,75,96,13,0,54,232,90,0,129,172,
-69,196,122,212,65,245,1,95,53,80,189,116,221,3,95,56,57,56,64,88,
-162,180,1,32,95,70,141,96,36,224,37,4,0,57,85,14,192,37,224,215,
-24,11,73,110,116,101,103,101,114,46,95,105,110,116,67,47,1,84,111,160,
-17,224,218,1,102,219,65,109,70,63,102,102,64,151,180,56,2,95,57,48,
-171,79,224,105,30,161,67,1,105,110,224,106,11,229,103,6,200,67,64,0,
-0,58,97,81,97,54,0,67,69,248,104,172,0,95,73,163,64,33,164,49,
-0,58,96,141,225,105,2,137,182,3,95,56,57,57,88,33,168,145,1,57,
-48,98,8,5,49,32,95,54,54,32,100,213,140,126,139,95,224,29,15,0,
-58,97,83,9,10,65,32,117,113,117,111,116,32,58,64,34,64,14,0,73,
-64,10,243,61,0,64,105,225,220,1,65,177,64,13,2,66,32,80,128,74,
-0,85,96,20,129,255,145,95,134,248,196,132,160,16,247,108,4,1,95,57,
-104,113,99,6,0,56,106,178,2,95,56,56,200,161,0,79,196,151,98,245,
-161,165,233,1,1,203,24,252,47,5,1,95,56,67,247,96,49,1,95,56,
-124,142,0,64,64,150,0,54,160,185,96,119,0,95,130,113,132,164,0,57,
-107,40,96,42,146,26,101,178,171,136,132,101,210,163,133,204,96,185,96,198,
-230,156,1,75,219,133,59,221,226,192,7,160,234,224,255,1,224,254,1,0,
-83,64,57,254,35,0,229,188,10,64,135,64,54,2,95,56,57,66,150,1,
-54,53,167,87,98,69,94,15,1,55,52,199,223,64,17,162,172,0,58,96,
-9,66,26,221,114,2,95,56,48,248,185,3,1,36,118,155,0,96,67,243,
-155,3,96,252,232,128,0,225,191,1,64,237,231,103,0,231,79,0,97,2,
-160,182,64,15,193,185,96,183,193,255,65,146,160,47,223,70,64,208,0,55,
-66,74,225,181,2,128,29,65,49,234,131,0,128,25,65,222,96,248,243,150,
-0,1,56,56,69,95,197,164,225,162,0,160,170,192,140,248,85,3,232,29,
-8,200,119,192,187,152,208,160,58,129,171,87,172,0,54,227,230,7,13,66,
-111,111,108,46,111,116,104,101,114,119,105,115,101,231,118,0,216,50,224,244,
-0,248,80,0,129,22,109,115,224,38,0,224,23,0,0,55,174,218,128,23,
-0,58,97,227,131,58,2,83,32,64,251,148,0,227,53,0,192,87,224,17,
-2,192,102,227,109,0,64,14,115,197,230,212,0,225,15,5,192,45,65,204,
-154,252,225,22,3,82,254,128,0,192,55,193,26,194,177,224,131,0,224,88,
-1,219,203,128,146,206,162,227,249,3,195,167,226,57,0,94,83,1,53,49,
-235,46,13,128,30,135,17,130,221,196,25,193,49,3,95,53,52,56,236,169,
-4,228,41,8,225,136,1,226,125,1,0,39,66,96,160,41,68,33,160,124,
-227,163,1,0,95,71,76,99,70,128,88,232,5,0,227,202,0,193,85,240,
-220,0,161,134,110,109,161,17,93,115,250,186,2,98,242,161,115,160,51,228,
-255,0,213,15,96,240,87,114,64,240,231,209,0,193,68,228,48,2,226,224,
-11,225,95,14,65,148,129,152,224,16,1,1,95,55,72,71,0,64,96,146,
-227,51,9,235,79,0,1,95,50,68,129,247,10,0,132,83,224,167,14,224,
-22,8,236,59,0,226,129,0,192,36,228,245,5,68,210,67,206,120,12,252,
-179,7,124,154,2,48,58,48,99,95,160,70,130,103,224,46,25,137,237,128,
-0,228,245,7,0,109,231,139,0,65,237,0,56,75,94,133,122,96,16,64,
-245,70,95,0,83,90,156,225,86,7,65,52,225,12,0,160,48,0,55,120,
-244,224,59,0,0,50,128,252,102,93,72,37,0,56,124,172,224,131,7,0,
-112,253,108,2,2,95,54,56,64,39,0,57,139,70,98,119,102,128,1,95,
-56,73,68,130,225,0,58,96,30,178,70,239,248,1,0,80,161,120,66,223,
-131,117,0,80,64,22,237,93,3,0,52,156,159,129,64,236,137,1,177,8,
-98,163,0,80,239,27,1,129,252,66,189,130,95,145,58,193,179,242,120,3,
-235,174,1,0,83,226,222,1,64,122,192,72,203,23,102,13,198,179,224,174,
-1,160,120,208,91,101,204,192,37,227,115,1,2,95,56,56,227,163,0,64,
-24,251,82,1,224,10,1,0,58,97,98,198,191,163,243,229,49,1,227,13,
-5,99,46,230,216,0,194,249,160,188,238,120,7,206,190,237,194,1,227,135,
-2,224,42,4,185,38,231,43,1,224,33,9,199,202,252,82,27,238,10,2,
-229,149,1,192,64,84,216,66,50,96,40,245,97,12,133,192,96,41,97,74,
-224,9,1,64,0,230,70,1,224,253,21,206,41,231,56,1,128,188,225,79,
-0,224,43,2,128,141,64,23,120,88,162,43,192,19,224,203,8,192,91,192,
-48,252,204,1,128,216,196,43,133,174,0,75,229,177,0,0,53,66,75,128,
-200,125,22,160,209,229,132,3,160,144,68,136,225,83,5,167,17,128,48,225,
-207,23,131,225,226,33,1,224,32,8,132,248,231,142,1,224,32,8,193,17,
-232,116,8,225,42,5,224,7,1,225,36,8,199,8,225,239,4,107,94,163,
-94,64,153,225,136,6,164,199,224,50,3,224,87,8,177,242,254,158,5,226,
-22,3,128,67,226,16,9,128,42,226,59,0,224,39,15,233,252,0,226,196,
-11,224,27,1,64,199,241,25,4,207,1,128,30,226,9,0,226,82,9,160,
-225,226,149,1,160,55,188,0,96,28,0,82,224,220,4,240,99,4,240,96,
-19,7,112,97,116,86,97,114,115,32,133,158,144,185,102,118,160,225,150,125,
-0,50,72,60,86,113,1,95,53,106,140,165,13,96,127,0,58,68,177,105,
-191,70,64,0,90,227,41,0,160,54,0,53,102,30,97,49,128,17,209,226,
-153,179,111,220,162,13,224,31,12,134,123,224,61,8,1,51,51,101,63,2,
-52,48,52,230,101,2,1,91,93,128,198,224,45,29,1,40,41,128,45,224,
-36,20,1,45,62,230,184,3,0,56,191,79,97,11,174,16,1,95,56,87,
-201,64,19,0,54,96,19,3,104,101,97,100,96,59,0,58,96,24,172,142,
-2,53,50,56,66,162,0,54,102,218,65,100,134,218,140,15,131,236,71,228,
-97,193,67,239,199,5,70,38,101,233,70,60,149,121,0,80,96,23,139,51,
-98,56,71,189,6,80,32,85,32,90,32,90,72,94,132,37,70,136,65,59,
-248,15,1,201,60,64,51,68,22,224,7,1,65,1,208,91,160,0,102,199,
-79,87,97,159,0,58,72,53,128,111,2,83,32,85,226,105,0,164,197,164,
-202,101,153,161,251,110,176,128,21,66,21,163,68,200,88,170,31,230,60,3,
-128,8,64,46,137,135,154,195,1,95,56,242,22,0,160,215,96,240,96,216,
-137,26,71,89,165,232,224,141,5,192,36,166,46,237,232,0,167,15,167,172,
-227,79,0,160,254,121,105,96,8,227,76,2,2,95,56,55,97,246,147,33,
-211,89,2,95,56,55,132,111,0,58,97,40,236,192,0,166,103,235,3,2,
-64,140,144,241,224,27,0,107,46,128,27,232,115,1,224,16,0,236,181,4,
-192,1,172,144,224,19,2,165,219,224,16,13,203,109,200,8,225,225,1,192,
-21,104,142,224,162,3,184,192,192,51,232,81,0,0,67,224,175,6,171,237,
-224,30,2,224,2,1,224,164,6,230,118,0,119,97,0,51,74,34,160,33,
-224,60,3,182,107,224,174,0,135,164,224,138,2,192,2,160,24,132,155,128,
-55,224,52,1,224,55,2,226,107,0,105,0,128,5,174,67,64,42,109,82,
-210,134,197,230,224,100,1,192,198,224,71,8,129,19,97,37,64,214,100,56,
-0,52,224,70,5,2,95,49,55,128,8,98,129,155,113,97,252,227,135,13,
-161,214,64,8,195,146,161,198,225,183,6,129,170,224,0,0,129,87,224,196,
-1,224,43,0,85,30,132,164,224,157,4,251,187,8,227,237,0,1,95,49,
-128,32,135,125,96,68,224,53,0,0,95,66,247,251,230,4,165,243,192,220,
-194,215,64,181,2,95,56,55,83,94,1,50,48,252,45,14,240,123,1,2,
-95,56,55,97,24,193,6,163,177,196,139,224,20,2,200,189,99,101,67,110,
-241,180,3,229,47,0,232,19,0,64,57,232,232,2,167,37,96,81,247,15,
-1,65,210,204,11,128,25,202,40,76,219,0,53,137,168,0,58,96,162,224,
-109,13,226,34,1,168,137,229,65,6,0,58,99,73,103,16,1,95,56,66,
-239,87,147,0,50,126,230,2,95,56,54,86,8,1,56,55,101,200,0,58,
-100,87,182,176,2,56,55,50,64,25,0,54,71,100,2,56,55,52,69,227,
-64,37,160,130,226,59,9,226,29,4,178,99,64,0,1,95,56,74,38,0,
-58,96,66,128,90,224,192,0,171,26,232,247,0,239,179,1,194,231,164,178,
-229,169,0,226,124,5,197,141,128,165,0,58,96,104,96,159,101,53,220,121,
-0,53,72,105,161,120,0,79,248,101,3,98,43,77,229,67,33,1,95,52,
-92,55,197,100,0,58,96,253,103,42,1,49,57,64,133,0,58,96,36,64,
-16,126,250,0,52,66,90,0,56,97,155,3,95,56,53,57,96,31,238,30,
-0,2,95,56,54,84,18,1,56,54,66,144,167,54,65,102,225,129,2,192,
-177,64,34,118,58,3,54,54,32,58,96,19,167,158,119,6,0,51,110,216,
-3,95,56,54,53,96,43,129,155,137,135,193,253,129,117,70,116,139,166,234,
-29,3,228,198,5,2,95,56,54,235,83,0,224,29,0,224,26,5,231,19,
-3,160,19,129,141,135,62,71,103,227,66,12,128,161,224,44,7,131,167,192,
-27,224,28,7,98,155,224,28,15,103,89,224,28,0,100,147,130,49,132,16,
-228,101,1,2,32,95,52,88,12,97,38,224,155,6,208,34,65,57,226,183,
-1,163,142,103,218,232,117,5,230,25,2,204,22,224,30,3,101,167,142,191,
-118,117,225,60,0,0,83,167,27,128,13,192,46,96,16,225,79,2,64,56,
-245,165,4,224,56,1,224,19,3,224,62,2,161,20,114,189,230,116,3,160,
-108,192,28,64,16,153,163,230,54,0,232,62,2,192,41,227,150,0,226,5,
-0,128,0,241,197,10,20,115,114,99,47,77,105,99,114,111,72,115,47,73,
-110,116,77,97,112,46,104,115,113,218,3,55,51,58,49,234,124,2,65,88,
-131,211,203,220,67,25,123,64,101,239,130,195,0,56,86,246,64,42,131,155,
-0,85,128,203,96,38,96,19,203,186,0,58,96,40,202,65,114,249,147,255,
-132,23,129,26,231,245,0,193,172,84,74,113,61,238,100,2,64,1,237,25,
-0,174,64,120,35,70,35,238,20,2,193,237,193,92,246,193,0,0,80,229,
-131,1,195,40,96,148,241,175,1,3,95,56,53,48,229,194,1,192,7,167,
-203,229,191,3,226,53,0,141,156,1,95,56,140,93,228,185,0,128,11,99,
-230,0,58,100,24,100,12,85,146,164,85,64,26,128,19,2,52,32,58,96,
-19,193,34,64,37,128,212,68,134,0,95,70,30,1,64,58,96,95,128,47,
-81,211,64,65,64,29,96,51,165,96,194,102,137,50,224,224,3,238,124,2,
-225,11,0,196,36,99,122,64,86,130,87,224,46,5,131,189,193,103,140,188,
-128,40,162,165,180,150,0,56,249,54,1,161,69,194,165,230,2,0,226,228,
-3,233,111,10,160,24,225,213,0,169,120,192,85,192,1,160,138,224,137,1,
-231,251,15,224,75,59,232,142,2,224,75,23,167,159,224,75,17,193,15,161,
-35,128,2,229,168,0,97,93,0,56,158,213,162,225,225,191,3,118,103,224,
-31,4,224,122,0,228,53,4,96,40,224,39,5,224,40,8,224,11,0,160,
-47,224,46,6,66,192,65,203,2,95,56,52,153,58,0,58,66,112,102,225,
-161,167,239,176,0,225,132,23,224,40,26,129,97,242,96,0,225,62,23,96,
-171,99,49,64,10,224,5,0,162,192,224,26,5,224,27,0,113,33,224,30,
-2,224,31,12,160,33,224,27,6,224,34,0,104,84,96,151,225,29,3,0,
-58,98,246,2,10,65,32,119,138,0,58,96,44,163,196,235,90,0,224,10,
-6,225,121,1,232,236,0,0,58,96,120,96,55,234,158,2,64,27,0,58,
-96,114,158,35,100,20,190,35,68,162,246,175,6,1,95,56,87,103,1,95,
-49,93,152,0,64,83,154,101,169,0,58,101,22,224,42,6,101,45,104,223,
-81,179,255,101,9,70,23,0,33,134,13,0,73,64,213,68,207,161,254,133,
-152,171,199,194,160,160,128,228,27,1,160,31,204,159,227,254,9,227,249,11,
-231,8,7,129,46,227,238,33,224,63,0,163,82,227,220,32,128,56,166,44,
-227,195,28,225,64,0,224,10,4,224,11,15,227,79,5,0,58,96,22,152,
-131,2,49,48,57,205,66,72,211,0,58,96,33,192,26,237,93,0,160,26,
-194,104,0,85,96,13,194,104,0,90,104,210,1,58,56,80,177,166,10,66,
-169,0,51,71,12,233,243,3,65,21,228,33,0,114,179,141,184,165,196,154,
-85,108,91,186,102,82,117,213,16,64,54,232,6,11,101,219,202,168,107,78,
-226,229,1,250,191,6,97,94,65,19,65,117,109,235,64,6,150,218,237,200,
-2,129,206,148,107,0,58,122,189,98,187,160,193,160,221,1,55,49,103,30,
-160,199,64,146,1,55,52,238,26,1,128,84,96,107,224,76,2,236,216,3,
-128,79,135,243,77,47,0,48,143,58,244,183,6,3,79,32,35,49,88,121,
-183,17,1,49,50,65,144,231,218,1,64,196,0,53,238,126,14,162,89,0,
-58,96,237,227,124,0,120,155,76,95,169,208,175,5,96,152,99,85,227,141,
-5,8,33,33,58,32,101,109,112,116,121,251,81,0,131,71,64,218,227,106,
-1,192,68,240,34,14,96,168,224,87,9,0,60,155,200,0,58,97,34,131,
-218,105,105,236,153,2,128,11,105,167,0,58,98,78,238,160,1,224,206,1,
-175,4,160,2,193,130,227,123,0,248,46,2,231,65,4,224,40,14,185,231,
-228,47,2,224,40,15,234,16,0,168,158,227,188,2,249,246,2,249,154,4,
-164,30,255,138,10,96,37,163,54,228,19,1,224,19,1,195,244,203,149,224,
-109,9,130,198,224,51,3,217,61,224,117,10,161,14,224,155,3,225,26,25,
-166,132,224,39,24,164,125,249,129,23,249,63,68,96,242,68,53,99,139,88,
-92,103,131,64,5,1,95,55,117,155,93,161,233,74,2,132,144,224,81,7,
-250,181,6,196,153,100,142,163,235,1,54,49,67,59,167,240,131,196,2,56,
-51,53,221,140,1,56,51,96,148,132,92,184,174,224,107,14,231,211,0,224,
-231,1,243,29,0,249,54,4,224,49,0,234,221,0,224,41,2,226,124,0,
-104,190,227,216,1,146,202,226,54,3,133,131,1,95,53,102,1,160,10,64,
-239,207,23,237,54,0,80,203,1,95,56,221,145,224,0,0,128,68,230,220,
-9,250,59,3,226,106,11,225,164,1,230,11,1,161,64,193,32,226,135,4,
-219,248,1,58,56,72,70,99,241,0,80,143,110,102,100,64,151,168,222,160,
-22,152,32,64,181,96,23,97,59,102,41,0,55,159,113,128,178,161,190,0,
-55,100,77,131,218,126,165,108,122,64,123,64,140,205,231,1,95,56,89,140,
-0,58,97,216,165,252,2,95,52,48,161,36,2,52,57,55,64,223,228,232,
-7,153,185,0,58,96,57,224,160,1,131,150,128,161,199,30,96,24,132,104,
-128,24,238,153,1,64,24,96,129,128,24,173,177,6,52,51,57,32,85,32,
-83,225,113,6,65,36,224,19,7,103,114,224,19,5,126,86,224,19,7,64,
-170,253,81,6,190,165,162,199,164,151,121,240,229,187,5,12,103,101,116,83,
-76,111,99,32,69,85,86,97,114,239,175,0,224,76,7,64,156,64,60,70,
-110,108,15,227,30,3,121,184,160,103,0,50,64,4,196,170,96,113,224,25,
-3,128,47,128,96,224,193,5,64,24,224,116,7,64,179,96,177,224,108,3,
-64,18,224,110,0,224,79,0,224,19,1,0,52,104,14,96,0,225,77,7,
-99,246,224,19,6,67,22,254,139,7,71,144,0,85,66,117,224,80,2,1,
-95,50,112,153,224,125,15,224,17,6,224,101,7,225,159,10,0,49,129,159,
-224,76,8,225,48,1,163,177,187,24,224,114,6,224,222,9,64,221,224,18,
-6,226,62,10,136,231,224,138,6,64,217,225,65,10,224,234,11,224,58,7,
-64,23,0,85,108,235,226,22,2,130,5,132,223,224,83,8,192,35,200,246,
-225,43,6,225,144,10,129,143,224,137,5,226,87,14,224,178,2,128,132,165,
-150,225,46,9,66,163,224,122,6,225,165,10,225,164,16,132,222,224,133,5,
-87,36,224,210,11,225,114,10,225,113,5,226,218,22,225,66,6,105,101,64,
-30,228,75,1,225,127,7,98,58,224,74,8,0,58,96,161,228,129,16,225,
-17,37,227,131,19,224,19,21,225,29,31,225,240,7,227,119,18,228,92,6,
-0,58,98,93,224,232,1,226,19,6,170,60,0,58,97,39,225,14,3,228,
-219,27,167,181,96,62,0,54,224,62,1,70,120,224,160,6,224,12,11,226,
-148,3,0,58,96,76,224,64,1,224,66,3,161,236,224,242,7,227,162,7,
-224,15,7,0,58,96,91,224,248,9,224,31,2,198,181,96,33,143,122,1,
-52,48,136,56,0,90,160,251,128,40,184,209,64,38,76,227,224,122,26,248,
-242,3,0,55,76,219,0,56,101,74,1,95,56,70,199,1,58,56,69,227,
-64,31,2,55,49,50,64,4,4,51,32,79,32,35,90,35,99,74,0,58,
-96,36,224,30,8,0,57,224,30,1,200,61,0,89,215,149,203,54,98,56,
-232,133,0,234,36,4,244,42,2,160,5,224,21,10,96,18,137,133,224,77,
-0,233,140,3,236,58,4,168,107,224,17,16,130,198,224,81,3,211,37,224,
-39,7,224,141,1,224,25,3,254,75,7,128,80,2,95,55,57,162,180,224,
-70,11,168,251,224,117,7,110,215,72,220,160,24,170,254,160,2,64,50,6,
-95,56,48,48,32,79,32,139,74,233,176,0,224,97,1,131,167,160,91,160,
-144,245,229,2,96,62,233,125,3,225,131,12,160,87,192,221,84,150,0,67,
-235,114,0,224,60,2,193,212,128,85,128,20,128,72,224,77,1,2,95,54,
-53,79,21,79,196,192,89,224,75,1,160,104,224,21,6,96,50,96,190,144,
-110,103,198,3,95,56,48,51,233,3,2,1,36,104,239,16,0,96,36,128,
-50,224,49,20,1,118,115,248,219,1,129,111,1,95,56,103,230,192,13,139,
-152,139,66,1,95,56,103,237,160,23,67,19,65,10,0,79,65,8,252,98,
-1,161,13,213,17,224,73,0,80,118,209,27,203,100,224,25,0,194,23,130,
-98,1,58,56,72,207,244,45,0,74,175,137,138,128,45,212,0,64,77,234,
-210,2,64,33,106,159,64,164,146,42,0,56,64,55,220,140,64,214,121,139,
-234,177,93,209,70,3,95,55,56,54,68,99,233,6,0,84,129,163,5,234,
-158,15,173,193,0,54,241,124,0,144,116,249,99,0,128,216,128,78,3,95,
-56,48,52,160,233,160,83,224,161,5,98,218,224,103,6,234,145,0,192,54,
-158,53,128,114,160,20,224,99,3,224,28,2,154,14,224,111,2,234,157,53,
-225,12,1,224,130,12,1,48,52,102,78,224,169,0,225,84,0,1,53,56,
-99,59,109,148,225,92,1,161,16,160,155,234,189,36,225,9,1,1,95,56,
-106,13,224,145,0,109,184,224,148,1,207,94,225,41,11,234,205,74,225,122,
-17,66,98,207,29,225,149,7,234,222,14,224,75,1,2,53,55,55,129,121,
-221,52,162,70,83,240,128,92,2,83,32,73,180,191,143,243,240,222,4,1,
-95,56,96,178,226,125,9,225,118,9,235,8,17,160,53,224,68,8,226,9,
-5,128,150,97,224,226,117,17,64,22,233,243,31,226,102,13,1,95,56,97,
-112,131,161,0,50,227,162,1,224,157,0,0,48,227,179,0,233,246,29,224,
-102,13,227,75,21,227,135,23,254,225,2,0,58,96,22,100,207,225,45,4,
-64,227,162,193,0,58,96,210,228,242,11,225,46,40,227,3,34,228,74,33,
-224,28,7,235,80,32,226,56,0,225,202,15,194,197,226,91,9,0,58,98,
-184,225,54,9,96,53,151,114,226,113,3,0,58,97,73,224,46,14,96,100,
-160,90,0,58,96,61,102,117,0,80,225,144,12,224,234,2,224,97,3,0,
-58,96,70,96,55,224,57,6,194,28,226,124,2,224,87,15,74,196,162,25,
-224,9,0,0,58,96,95,224,185,14,104,73,226,37,0,64,92,127,61,3,
-49,51,32,58,96,28,246,208,1,71,90,163,11,179,247,128,73,97,27,0,
-48,210,83,2,95,56,48,67,50,87,122,0,51,82,104,104,1,224,63,0,
-102,180,224,61,0,197,194,128,10,120,97,149,39,166,231,248,76,6,249,1,
-3,103,226,0,58,72,193,160,118,84,245,104,223,0,55,73,173,0,55,89,
-233,64,31,171,242,243,108,0,115,94,0,79,64,201,1,55,57,104,16,251,
-39,11,160,31,248,179,10,131,114,96,197,192,64,115,143,0,58,106,111,211,
-136,2,55,57,56,147,136,2,55,57,57,201,247,65,59,96,42,64,60,224,
-53,1,130,82,2,80,32,58,96,42,192,10,204,24,156,227,224,7,7,125,
-15,0,58,107,7,232,243,1,97,136,72,243,105,63,224,243,81,96,32,128,
-189,106,191,192,105,97,189,154,29,2,55,57,50,122,24,1,53,56,204,234,
-96,54,224,41,15,234,130,1,1,91,93,153,112,96,166,1,10,65,253,116,
-7,10,76,105,115,116,95,84,121,112,101,46,34,96,231,244,148,1,254,59,
-2,234,19,0,117,71,213,156,169,136,64,21,205,178,5,56,56,32,58,55,
-56,217,178,93,154,77,224,1,64,58,64,24,96,33,64,159,1,52,48,128,
-175,235,38,2,0,102,139,37,151,102,123,100,123,76,224,38,14,64,79,129,
-167,0,75,98,254,65,15,64,3,0,58,74,10,98,48,74,156,0,51,75,
-157,254,47,0,107,6,99,65,0,49,67,65,149,182,160,29,67,28,94,47,
-98,93,161,166,247,74,4,2,58,55,56,246,18,2,3,48,32,95,55,78,
-113,121,19,142,95,2,95,55,56,128,72,224,30,2,2,95,55,56,100,60,
-132,30,77,157,224,56,0,155,53,220,132,129,108,97,198,64,159,160,34,64,
-36,1,95,55,221,212,107,207,2,58,55,56,161,242,224,99,2,0,49,110,
-231,0,95,72,111,128,57,67,43,0,56,73,195,0,50,67,200,96,220,224,
-85,0,212,158,0,58,96,155,131,228,98,210,120,185,0,90,98,174,143,216,
-96,66,226,241,0,64,30,0,83,87,51,160,134,163,151,202,60,159,241,103,
-214,144,23,224,10,3,192,30,0,58,97,35,64,82,96,142,124,249,224,126,
-4,216,107,64,214,68,112,96,201,96,8,3,64,64,95,51,112,45,96,156,
-3,95,50,49,56,192,11,0,58,96,215,96,167,64,18,164,174,224,82,0,
-66,180,0,95,112,40,161,26,224,112,21,0,90,224,112,2,66,126,192,111,
-97,110,160,110,162,200,0,51,225,180,1,160,76,217,37,224,188,0,100,82,
-1,64,95,96,71,102,139,96,6,102,50,0,58,96,51,165,100,252,248,0,
-96,56,1,58,55,80,236,96,37,0,73,96,13,129,242,247,144,8,9,105,
-109,112,111,115,115,105,98,108,101,163,223,89,62,96,54,1,75,52,64,2,
-82,145,224,1,3,238,62,2,96,45,254,224,1,98,195,221,94,255,84,0,
-155,189,128,210,65,232,72,37,64,67,192,73,133,148,158,232,166,129,131,185,
-96,7,158,223,0,55,100,240,99,136,192,118,228,63,2,171,53,64,21,130,
-24,4,73,32,58,55,54,196,60,96,34,249,70,0,1,55,54,129,119,135,
-109,250,102,4,163,196,84,221,251,61,0,224,32,11,154,111,64,27,208,152,
-224,41,4,97,129,160,41,96,29,219,158,160,252,1,95,50,78,160,3,95,
-55,54,54,225,132,2,1,45,62,97,124,224,21,6,10,80,114,105,109,105,
-116,105,118,101,115,46,160,32,224,89,5,132,109,186,132,225,148,3,0,54,
-198,125,3,85,32,64,90,96,40,135,242,104,213,0,52,72,14,96,37,130,
-58,107,71,65,235,160,21,130,53,142,220,1,95,55,65,115,167,244,1,95,
-49,81,24,2,49,53,54,230,22,3,4,36,115,117,112,101,185,200,232,20,
-5,2,58,55,54,130,114,68,127,64,70,224,52,2,0,67,64,48,2,58,
-55,54,130,106,0,75,129,75,0,90,225,121,3,1,95,52,137,87,0,55,
-124,143,128,78,130,106,4,98,115,43,43,46,65,225,228,60,0,66,123,101,
-114,0,57,232,220,5,209,94,1,57,55,101,199,1,51,50,192,25,241,210,
-0,111,174,163,54,100,147,102,172,100,161,64,85,0,80,64,148,0,90,129,
-181,143,228,2,52,51,53,206,199,244,143,4,225,34,19,20,100,117,112,108,
-105,99,97,116,101,32,100,101,102,105,110,105,116,105,111,110,32,161,49,0,
-51,65,110,192,0,227,153,6,7,99,104,101,99,107,68,117,112,163,151,64,
-164,227,233,0,64,211,1,95,54,102,139,1,52,51,221,180,232,27,6,129,
-56,102,127,96,7,71,242,0,58,65,36,128,70,234,55,2,156,182,230,96,
-0,157,162,2,95,55,53,102,52,238,91,1,234,18,0,236,223,1,0,58,
-96,85,1,10,65,172,18,101,39,64,155,106,126,64,7,64,172,0,50,156,
-173,0,58,96,80,64,43,68,145,242,120,1,245,94,2,128,66,0,75,65,
-118,132,29,64,116,72,62,245,21,5,160,49,64,5,0,67,224,52,10,233,
-148,8,140,156,64,58,244,107,1,224,218,0,224,88,3,224,236,4,224,23,
-8,224,17,17,140,252,192,122,128,1,245,134,1,224,188,1,160,119,224,61,
-8,224,64,2,224,65,2,97,18,224,46,14,160,93,129,180,245,101,0,65,
-17,173,156,64,71,109,144,226,35,4,170,80,96,0,225,69,1,224,2,5,
-228,77,0,224,137,3,131,98,67,5,1,95,55,250,25,2,128,137,213,169,
-128,8,224,5,16,2,95,55,52,218,178,225,39,3,140,246,96,85,2,85,
-32,65,224,90,0,192,29,225,111,13,0,89,225,110,1,226,13,3,96,134,
-225,219,8,129,70,129,24,244,240,2,192,98,185,136,226,60,0,224,40,0,
-224,72,14,225,132,5,224,31,4,129,196,128,87,69,248,138,49,97,135,227,
-52,0,162,166,160,6,96,4,168,64,162,121,97,48,97,107,128,181,227,126,
-1,103,24,112,96,131,178,224,9,1,224,68,21,225,101,0,161,192,98,5,
-224,60,3,199,213,225,150,1,128,254,97,25,64,191,64,217,167,214,192,232,
-0,85,64,143,65,208,224,208,10,232,39,3,225,26,0,224,8,0,226,214,
-18,224,28,1,224,29,41,224,195,8,65,219,227,87,0,227,42,0,160,138,
-226,8,3,224,51,0,194,107,227,84,0,64,35,1,95,49,90,187,97,194,
-230,93,2,161,86,204,13,1,54,51,224,25,1,1,95,52,76,64,160,116,
-160,157,161,138,129,135,2,64,95,54,166,129,225,60,10,119,114,205,200,166,
-151,146,239,128,156,2,32,95,54,111,65,104,131,160,96,67,14,129,253,193,
-95,225,49,5,229,63,5,128,233,226,245,3,225,18,0,226,242,95,226,214,
-3,242,80,0,129,74,1,53,50,239,7,15,133,196,109,40,224,41,22,70,
-238,80,143,97,66,97,64,96,4,227,57,13,1,90,32,224,13,2,129,15,
-227,1,31,0,75,160,112,227,2,19,225,59,15,224,13,4,101,116,226,161,
-0,161,215,129,67,226,115,2,160,221,64,157,135,215,96,9,0,54,93,230,
-145,252,66,28,76,113,226,168,6,77,72,128,59,224,8,1,225,42,1,225,
-8,0,165,126,194,105,0,89,161,255,161,232,235,200,26,97,52,0,80,129,
-24,160,18,130,3,229,216,1,64,24,106,177,224,118,1,64,239,1,95,55,
-96,13,137,144,174,208,206,217,202,64,2,79,32,35,74,82,161,86,193,170,
-64,5,1,58,55,73,114,106,13,234,65,7,160,92,105,246,234,250,0,64,
-77,172,29,1,95,52,110,222,2,95,55,53,112,96,64,40,112,130,3,53,
-50,32,58,96,19,170,114,64,13,174,202,240,93,1,0,58,96,181,235,68,
-2,96,229,0,58,66,123,64,21,134,153,1,95,55,75,17,129,179,111,66,
-254,113,2,80,227,192,207,165,151,0,58,103,37,96,131,3,52,55,32,58,
-96,60,96,217,131,163,134,159,226,24,6,202,208,230,182,1,227,159,1,129,
-136,224,13,10,236,151,0,131,194,231,107,0,98,126,226,65,6,227,192,12,
-201,181,227,15,0,201,244,229,41,7,1,95,55,113,38,252,75,0,169,209,
-128,2,98,249,1,95,55,92,191,192,27,224,7,1,113,74,102,244,198,181,
-128,0,110,210,80,212,161,197,68,255,224,228,5,231,196,10,228,110,0,163,
-223,74,134,224,247,7,229,228,9,228,170,2,160,138,253,19,4,234,142,5,
-161,163,225,62,6,232,82,0,178,66,233,164,3,0,67,75,31,79,187,128,
-43,161,42,239,22,4,197,217,197,161,224,23,0,228,47,0,192,252,161,71,
-227,64,0,160,165,209,174,225,33,0,105,61,128,27,76,1,162,129,224,30,
-0,96,238,224,32,1,201,44,224,186,3,97,85,231,32,0,139,225,224,204,
-11,204,222,230,154,0,224,58,40,224,55,11,97,167,237,208,2,196,68,249,
-119,1,109,172,84,204,237,153,9,2,79,32,35,66,164,128,244,246,200,7,
-246,199,3,226,111,2,132,100,65,91,248,3,1,223,76,129,22,183,23,128,
-182,192,189,229,0,1,192,17,82,198,181,161,64,16,224,77,24,163,221,226,
-19,3,64,175,226,93,2,192,29,224,89,3,215,240,131,24,193,230,229,113,
-0,226,75,0,230,131,1,131,203,162,149,224,183,2,162,237,0,58,119,180,
-68,148,65,84,65,65,0,53,128,174,0,58,100,121,143,229,0,50,115,91,
-196,196,209,161,0,90,64,89,96,4,247,33,4,64,38,213,201,124,224,0,
-55,83,231,1,58,55,73,106,110,35,102,99,67,162,225,21,2,99,127,128,
-41,192,6,64,7,78,167,0,75,96,60,133,43,96,246,228,11,1,224,235,
-1,128,70,111,221,167,99,0,83,228,234,5,96,99,87,2,163,65,1,95,
-55,142,187,228,3,3,65,153,129,21,163,127,137,218,160,135,115,252,127,53,
-64,143,132,161,229,187,0,1,95,55,89,196,0,83,161,125,133,61,1,95,
-55,102,149,163,225,0,66,98,218,96,38,253,61,2,128,35,233,39,1,0,
-55,90,52,64,39,138,84,160,140,128,101,242,149,0,224,70,0,224,40,1,
-161,68,129,62,100,203,98,243,1,55,51,154,105,96,236,0,58,96,224,175,
-210,169,109,128,162,2,95,55,51,65,12,202,75,224,104,9,160,32,1,95,
-55,97,75,0,58,96,86,129,203,224,239,11,192,173,96,63,98,194,235,152,
-1,192,172,226,147,0,1,95,55,188,44,196,134,165,180,233,158,0,99,51,
-118,202,124,31,129,34,98,236,64,253,0,51,64,4,164,27,161,251,65,201,
-225,1,2,103,253,64,183,103,121,96,48,1,51,50,96,19,162,248,231,182,
-3,83,96,100,63,0,58,96,36,128,50,104,20,160,35,241,197,1,1,67,
-39,145,234,0,58,96,109,225,13,35,224,233,1,192,22,129,1,224,191,1,
-0,50,228,181,0,160,225,64,249,0,58,97,132,224,177,7,87,167,160,177,
-64,37,224,177,19,0,83,224,177,0,64,95,249,197,0,194,48,217,138,0,
-50,209,204,224,206,10,230,73,1,160,200,64,30,225,168,9,96,190,134,6,
-192,18,131,73,0,50,129,152,224,193,4,87,121,166,168,64,33,0,53,96,
-131,0,54,226,169,4,163,207,128,131,130,56,231,236,0,227,72,3,224,160,
-7,224,153,0,226,72,10,229,144,1,226,92,9,194,83,226,143,2,224,75,
-15,0,49,230,15,0,224,255,6,195,59,128,78,119,184,64,219,196,53,227,
-238,1,161,227,226,133,3,0,54,225,17,1,105,16,64,62,202,214,201,53,
-138,166,65,178,226,18,8,0,48,226,18,1,194,196,1,48,53,224,25,3,
-0,58,97,136,224,55,7,88,32,192,55,212,147,229,228,1,0,90,75,236,
-96,28,69,65,128,59,106,244,0,55,64,135,68,122,224,79,8,166,74,64,
-30,229,47,0,163,5,149,147,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,64,6,224,73,24,
-108,190,224,36,15,120,184,160,73,229,108,10,0,49,162,197,67,253,227,58,
-7,98,78,224,250,0,96,41,227,46,3,228,126,3,0,66,188,236,227,77,
-5,1,56,50,227,77,3,224,55,9,0,66,164,4,224,54,7,193,171,224,
-24,7,93,186,224,24,12,0,54,224,49,5,160,176,64,6,0,58,96,6,
-226,118,3,163,225,0,58,96,222,228,91,8,131,221,238,122,10,206,129,66,
-247,153,109,229,76,1,185,149,134,11,224,32,5,235,236,1,0,50,64,111,
-234,33,5,226,148,0,167,89,224,126,11,192,101,128,76,246,134,7,160,6,
-192,115,205,47,224,151,19,128,35,0,80,96,75,224,44,3,178,98,70,157,
-96,152,231,237,1,236,202,0,224,202,4,160,185,224,35,21,2,79,32,35,
-78,166,160,228,166,106,128,154,224,38,7,0,49,224,38,0,238,193,6,226,
-47,1,1,75,52,194,47,224,35,18,0,51,224,35,26,0,50,224,35,0,
-128,0,241,82,3,224,57,0,66,34,196,235,1,80,32,97,69,124,0,0,
-49,132,230,156,169,196,134,132,219,234,131,4,192,7,170,139,64,81,194,135,
-231,185,7,0,58,99,166,226,165,2,199,251,0,58,99,221,224,24,3,165,
-142,0,58,99,209,224,24,2,197,48,0,58,100,89,224,24,3,235,68,0,
-67,200,96,164,140,13,75,203,106,221,255,11,13,252,130,0,252,120,3,122,
-147,160,32,96,31,225,197,3,96,230,0,48,236,112,3,0,75,64,133,121,
-204,0,55,113,0,64,94,128,16,76,73,128,9,0,58,100,138,5,10,65,
-32,79,32,58,96,37,123,172,0,58,96,28,241,108,1,192,1,65,80,231,
-90,4,167,17,64,97,107,68,2,58,55,48,204,20,192,1,128,32,224,68,
-0,206,105,224,11,0,192,8,152,147,0,58,96,72,135,240,108,109,1,64,
-95,65,66,98,176,99,193,244,0,0,2,58,54,57,129,156,96,163,239,160,
-2,224,107,1,224,178,2,224,19,20,99,25,0,39,84,34,94,235,224,47,
-9,0,66,92,64,92,9,1,57,51,64,130,94,120,160,0,225,9,2,239,
-79,5,99,151,128,53,0,54,77,72,224,53,3,160,110,224,2,0,128,38,
-0,51,148,224,224,38,0,160,72,224,85,1,3,67,32,95,52,160,159,2,
-95,54,57,168,81,73,88,209,144,239,45,5,96,0,2,58,54,57,237,47,
-2,64,69,252,12,3,64,163,237,61,1,128,152,239,96,0,0,58,96,86,
-225,202,0,97,51,192,145,65,171,0,58,96,131,66,234,7,51,54,57,32,
-75,32,85,32,94,135,224,179,4,132,151,82,106,0,51,137,104,160,87,130,
-164,156,228,96,244,84,17,0,54,65,92,64,29,130,143,159,190,239,38,0,
-157,69,160,14,253,131,12,2,32,61,32,254,163,3,1,54,57,224,198,0,
-130,213,2,95,49,50,64,52,1,52,50,192,27,64,127,0,53,74,255,2,
-95,54,57,148,152,0,51,80,23,96,27,0,58,96,6,227,73,0,1,95,
-53,78,235,96,142,80,192,0,53,239,172,1,3,66,32,95,53,78,2,192,
-67,128,6,128,254,224,43,15,65,179,0,53,79,108,64,16,79,235,1,53,
-51,143,112,231,176,0,128,111,0,64,192,24,80,148,197,157,224,96,1,96,
-29,2,64,95,54,84,179,64,176,164,225,2,54,56,57,101,223,65,54,2,
-79,32,35,68,218,96,59,0,58,97,107,226,10,13,166,134,193,109,96,45,
-71,170,128,79,4,55,32,58,54,56,130,70,2,114,110,102,99,126,0,58,
-64,21,194,28,225,147,17,6,84,109,111,100,117,108,101,161,152,135,148,128,
-98,99,82,67,23,0,51,64,149,161,47,241,197,9,224,189,0,195,106,160,
-160,99,243,1,95,54,72,171,224,38,6,1,58,54,89,152,149,175,149,172,
-0,58,96,38,144,191,131,198,227,105,2,2,58,54,56,174,16,2,52,55,
-57,64,231,130,44,64,142,81,87,228,86,2,80,82,68,133,246,214,2,240,
-50,1,161,64,64,41,0,95,240,77,1,224,20,6,163,247,96,67,255,96,
-3,0,54,73,169,1,10,65,114,34,193,147,160,99,160,6,96,238,228,54,
-1,2,95,54,56,195,193,224,127,2,228,131,8,96,94,130,120,224,38,0,
-127,190,160,122,224,130,0,227,243,2,64,88,96,138,1,95,49,73,186,230,
-165,0,1,58,54,76,49,227,70,6,77,175,0,64,195,247,226,5,17,226,
-4,5,227,214,38,14,40,46,46,46,41,32,119,104,101,114,101,92,49,48,
-38,163,226,1,54,55,239,23,0,131,181,96,138,0,58,96,6,164,90,163,
-218,0,55,76,148,96,46,97,214,1,95,53,69,31,100,113,2,83,32,83,
-166,57,165,6,64,151,173,143,5,67,32,60,32,64,35,131,10,225,91,1,
-231,136,0,192,24,0,85,74,10,1,95,54,121,167,224,41,13,133,140,160,
-41,224,43,3,133,186,1,53,53,75,235,96,20,99,206,226,196,0,64,182,
-98,196,242,32,0,224,146,1,224,18,6,64,249,224,18,6,98,97,247,179,
-0,160,19,65,226,229,85,0,228,136,1,64,8,160,16,96,130,225,122,1,
-6,112,97,116,116,101,114,110,193,114,97,170,196,146,91,118,228,146,0,155,
-131,224,92,6,224,83,13,6,100,101,102,97,117,108,116,160,83,1,53,55,
-96,32,71,85,132,241,132,215,69,50,96,7,0,48,128,7,1,53,53,224,
-70,7,0,44,229,235,0,102,58,150,251,161,86,224,246,6,67,121,0,85,
-96,149,64,192,224,149,13,7,105,110,115,116,97,110,99,101,224,234,0,160,
-79,64,55,128,209,96,252,227,112,4,128,229,229,216,4,224,92,13,4,99,
-108,97,115,115,224,89,0,147,69,129,76,64,7,178,194,64,183,225,194,4,
-96,91,224,202,5,66,242,0,85,250,255,1,101,14,224,132,14,247,21,12,
-224,239,3,2,102,105,120,128,146,164,114,229,115,4,0,56,161,219,224,23,
-6,75,143,166,159,224,24,1,162,4,230,143,1,247,109,5,225,198,35,194,
-2,64,0,66,75,225,107,10,224,243,19,225,120,8,19,102,111,114,101,105,
-103,110,32,105,109,112,111,114,116,32,99,99,97,108,108,226,120,9,68,42,
-224,184,2,0,51,77,134,92,20,128,0,231,137,3,224,89,1,1,58,58,
-164,204,226,42,3,160,178,229,137,10,135,237,234,46,2,234,164,1,192,26,
-226,89,44,128,216,193,199,237,214,1,1,54,54,112,192,0,54,102,225,128,
-230,224,193,7,13,123,45,35,32,83,79,85,82,67,69,32,35,45,125,205,
-144,72,233,131,141,224,44,4,8,113,117,97,108,105,102,105,101,100,192,39,
-193,170,225,244,0,97,79,226,20,5,65,88,233,172,17,1,97,115,193,250,
-0,51,93,169,224,125,4,228,71,1,201,36,64,99,122,195,224,65,2,5,
-104,105,100,105,110,103,232,89,0,228,53,0,137,116,154,113,226,115,1,73,
-69,226,190,2,100,53,0,55,226,110,1,128,0,229,69,6,65,54,227,149,
-6,116,249,227,149,5,64,189,229,86,36,3,116,121,112,101,194,134,226,92,
-23,130,54,224,94,18,227,91,7,224,231,10,195,86,224,102,18,226,195,0,
-108,78,66,253,128,53,192,82,229,237,2,225,18,8,230,106,10,230,105,40,
-225,18,2,230,102,19,128,166,228,26,14,224,108,32,2,110,101,119,224,111,
-29,0,55,103,188,1,95,54,177,143,1,64,85,96,248,101,124,96,236,227,
-161,26,3,100,97,116,97,224,104,4,224,78,0,64,57,240,167,3,224,211,
-53,224,103,8,224,208,10,226,46,11,227,79,2,0,124,160,63,163,27,206,
-69,224,254,1,64,0,0,58,104,170,115,183,0,85,64,65,66,159,72,215,
-224,149,14,3,101,114,105,118,227,164,0,96,127,227,163,39,168,90,160,123,
-139,199,229,104,1,229,71,3,97,50,225,70,23,2,95,53,53,117,121,199,
-135,163,27,0,80,132,109,238,139,1,143,103,0,66,64,9,132,130,224,177,
-1,96,33,192,130,165,190,225,169,12,227,66,2,227,117,12,96,99,224,248,
-9,224,236,0,140,151,224,100,0,238,42,4,70,171,193,40,224,18,0,247,
-100,0,96,180,129,40,162,170,163,60,96,229,224,69,1,65,190,160,68,163,
-92,0,58,96,149,109,43,0,80,226,237,0,0,85,233,158,0,248,0,1,
-229,161,3,224,28,0,225,223,4,0,54,77,101,231,217,10,224,208,3,225,
-31,9,3,40,46,46,41,193,33,96,31,0,58,101,166,203,211,97,162,226,
-48,13,0,58,96,112,5,10,65,32,65,32,58,102,249,109,212,79,11,129,
-2,204,210,211,64,64,15,135,247,118,170,78,16,76,211,103,58,0,58,96,
-6,226,230,21,97,114,224,125,0,227,92,11,226,207,9,229,200,22,225,44,
-4,224,66,0,246,166,1,224,39,12,192,0,0,58,106,75,224,179,9,224,
-101,3,97,229,1,95,53,105,156,225,120,6,1,61,62,161,118,64,72,0,
-54,162,62,161,227,238,188,0,178,29,198,183,163,162,132,42,0,58,100,120,
-140,179,229,38,0,131,160,247,171,8,111,34,99,163,151,171,67,76,64,30,
-2,95,53,52,142,153,224,219,0,96,116,131,124,241,71,4,66,64,226,73,
-21,231,70,9,0,58,96,170,98,74,1,54,50,66,36,178,24,68,100,0,
-58,97,26,128,13,0,48,162,25,0,58,100,125,131,131,0,89,248,29,0,
-102,232,79,91,128,138,128,186,169,217,175,245,96,109,174,87,96,17,148,219,
-132,169,64,1,1,83,32,127,207,239,158,2,224,61,2,138,59,224,46,3,
-225,55,0,225,240,0,255,19,2,66,219,128,5,102,147,160,81,238,210,2,
-129,133,96,10,225,136,14,160,106,119,77,229,90,3,192,11,96,74,160,208,
-197,114,160,96,160,58,128,35,1,95,53,66,172,96,20,64,64,239,83,2,
-152,243,229,158,5,128,90,225,26,5,225,234,3,224,139,5,160,31,98,201,
-128,228,236,10,1,97,249,129,233,129,33,218,46,224,181,47,224,166,6,96,
-163,224,160,10,224,133,13,224,125,2,226,0,0,226,21,0,193,13,129,139,
-193,161,223,29,250,7,4,0,64,100,61,160,151,160,24,115,235,64,13,1,
-55,53,87,193,64,117,71,144,130,24,96,10,128,48,213,123,192,227,249,240,
-5,227,36,1,1,91,93,163,36,192,143,224,105,5,224,92,2,174,118,1,
-95,53,84,140,2,95,53,52,238,183,2,83,138,132,83,64,132,0,50,198,
-105,107,216,1,95,53,96,72,160,41,192,4,96,153,66,110,161,65,96,159,
-211,15,161,105,195,35,161,182,129,51,161,56,66,233,170,125,99,218,196,112,
-224,26,5,118,114,224,26,12,223,211,235,240,6,69,206,234,203,8,139,223,
-1,95,53,142,19,144,73,239,95,23,0,95,201,140,239,12,5,129,203,224,
-95,6,64,86,2,85,32,75,230,25,4,232,166,1,225,19,1,122,14,226,
-128,5,128,48,169,71,230,121,6,82,88,202,201,69,167,192,128,129,230,225,
-15,7,244,179,0,101,182,224,26,4,97,253,96,126,224,31,0,96,30,232,
-76,17,224,26,8,1,49,50,240,40,2,224,203,2,227,78,6,245,78,3,
-201,187,227,95,7,225,99,1,0,45,198,176,197,74,96,86,193,69,230,31,
-15,75,18,233,106,6,226,60,13,99,74,225,44,12,0,49,98,250,225,200,
-8,0,49,145,158,224,211,4,192,12,66,29,129,134,225,25,6,247,217,1,
-231,206,4,160,202,164,57,234,219,19,128,31,106,132,225,109,1,225,137,1,
-194,31,226,28,6,238,34,8,0,53,163,206,224,67,1,255,28,2,193,176,
-232,251,4,232,150,2,225,40,16,167,177,226,85,10,156,177,226,8,15,224,
-232,17,226,8,11,238,200,12,224,173,3,224,42,1,1,105,102,163,151,2,
-53,55,48,224,27,7,226,79,0,224,152,5,230,147,7,224,21,0,0,53,
-165,109,226,181,2,103,137,2,66,32,79,163,28,224,127,17,226,236,6,224,
-48,17,2,116,104,101,181,127,199,13,224,43,17,3,101,108,115,101,160,43,
-226,222,3,64,0,64,100,229,67,17,194,234,224,25,9,101,65,134,65,225,
-219,7,98,172,228,49,12,118,104,225,219,18,225,213,1,226,243,2,226,10,
-25,225,252,0,224,51,0,245,233,13,192,96,74,196,211,231,238,148,4,0,
-111,97,36,234,60,21,0,46,160,37,163,66,2,54,48,32,112,212,96,133,
-216,63,1,95,53,245,188,1,70,32,89,32,64,0,227,11,12,96,41,225,
-46,12,255,205,1,99,172,199,242,229,238,15,128,15,251,51,1,227,214,13,
-229,243,4,160,76,225,24,3,160,7,224,245,6,1,108,101,180,76,224,243,
-19,163,7,226,226,16,226,175,0,224,38,0,226,123,19,244,252,0,224,25,
-8,228,60,17,228,59,1,228,40,5,111,211,229,50,4,224,162,13,1,99,
-97,227,40,0,224,25,6,0,111,195,159,225,0,18,155,122,64,0,71,181,
-96,28,253,134,1,128,22,230,3,7,229,241,3,253,228,2,83,104,245,111,
-12,228,138,3,64,0,203,43,202,69,131,39,227,143,5,192,183,129,229,231,
-199,10,225,52,2,64,33,4,64,95,54,49,55,137,133,97,61,0,54,104,
-113,65,58,96,9,1,95,54,245,150,0,128,87,96,41,240,0,2,0,85,
-72,244,230,177,7,192,114,96,128,227,158,1,128,3,193,252,139,111,234,39,
-0,193,65,163,29,3,95,54,53,57,171,0,248,186,14,2,115,116,36,129,
-30,202,31,129,104,160,69,235,135,1,234,130,7,246,105,2,225,67,0,228,
-107,4,160,18,163,93,97,38,75,13,99,72,234,158,2,65,246,94,87,128,
-9,129,203,93,4,128,9,128,17,0,58,78,69,78,58,97,89,144,101,112,
-204,73,150,142,81,226,184,1,0,50,106,119,1,95,52,92,176,64,255,124,
-177,64,52,176,245,98,119,1,52,50,119,204,0,54,160,9,64,8,0,54,
-65,25,160,24,64,49,239,254,1,0,79,161,156,96,146,80,2,239,185,0,
-96,51,96,45,0,54,160,159,0,80,127,208,1,64,85,96,116,143,193,64,
-149,1,80,32,130,83,0,80,96,23,143,55,130,40,163,14,161,187,129,30,
-226,31,1,193,68,167,29,162,142,230,233,3,96,141,99,159,193,108,196,90,
-193,97,230,233,1,103,168,230,206,0,0,58,118,154,253,22,11,64,131,224,
-18,6,65,76,246,170,6,65,40,230,52,13,97,29,106,194,161,204,161,48,
-1,35,57,195,194,0,56,65,61,1,53,56,228,253,0,0,85,172,158,224,
-98,6,100,130,224,98,5,68,136,160,45,64,104,250,101,10,224,22,14,224,
-209,7,65,30,224,110,6,152,162,224,110,4,64,161,224,80,0,160,75,100,
-146,128,226,103,67,96,28,1,53,56,81,189,237,200,1,224,36,2,98,136,
-96,36,0,54,227,227,0,225,56,7,202,237,128,49,130,4,224,12,2,160,
-62,224,94,0,224,43,6,237,25,8,0,58,101,64,66,241,83,85,100,135,
-123,147,66,231,0,52,130,250,0,53,148,80,1,50,55,192,150,191,251,96,
-11,0,58,96,6,5,10,65,32,73,32,58,96,41,192,74,2,95,49,52,
-83,215,160,67,64,112,160,54,96,17,0,58,96,6,9,10,65,32,102,115,
-104,111,119,32,58,96,32,224,58,0,2,53,57,50,93,30,0,54,131,58,
-75,172,224,128,0,96,216,192,73,64,11,0,58,96,6,96,58,1,48,52,
-64,53,1,53,57,64,193,1,54,51,96,169,1,54,51,96,132,108,7,1,
-54,51,97,25,140,19,0,48,96,76,160,11,0,56,224,35,1,101,35,0,
-49,129,162,64,17,0,73,67,135,64,9,99,135,143,28,165,141,67,172,3,
-95,50,48,50,230,65,2,21,73,110,116,101,103,101,114,58,32,100,105,118,
-105,115,105,111,110,32,98,121,32,48,230,220,0,245,197,0,135,150,64,79,
-0,85,126,7,0,56,82,251,98,234,133,220,224,17,9,128,64,248,187,7,
-64,9,236,176,1,113,98,130,45,224,16,2,138,242,162,191,100,17,229,115,
-0,70,47,3,95,54,51,53,252,193,0,101,177,210,157,228,69,4,2,95,
-54,51,161,32,233,3,0,198,91,98,52,73,204,0,85,133,159,131,180,234,
-68,4,171,162,119,17,96,71,167,49,81,225,175,208,101,213,224,119,0,64,
-81,71,160,132,206,1,95,54,204,6,128,0,0,58,97,166,1,10,65,225,
-128,9,5,105,110,105,116,58,32,177,94,129,95,193,64,247,68,5,197,151,
-192,88,0,58,96,9,69,199,97,39,64,152,2,95,52,56,98,73,85,27,
-0,58,96,142,119,160,228,8,0,1,95,53,66,55,64,91,97,49,98,14,
-128,107,100,199,96,55,97,88,0,52,178,51,244,71,0,130,84,183,241,239,
-221,0,148,238,98,22,239,241,7,88,22,68,10,0,79,229,148,1,230,202,
-3,129,213,193,209,236,229,6,194,7,160,98,64,70,2,95,49,48,71,236,
-64,222,64,0,129,194,135,105,96,28,68,34,192,28,97,160,242,246,0,4,
-67,32,95,52,49,211,2,119,179,97,158,0,48,100,239,199,44,97,4,0,
-58,98,18,99,53,96,198,201,26,0,67,112,208,244,27,0,64,11,64,25,
-224,7,0,66,139,1,53,57,105,218,103,152,162,132,0,80,98,58,99,252,
-128,6,194,66,96,26,65,110,64,21,66,206,78,254,2,95,54,51,162,196,
-64,32,160,49,96,28,230,235,1,136,102,96,46,96,26,81,44,227,63,1,
-169,24,96,12,0,89,162,76,139,77,64,5,160,33,137,111,64,69,0,48,
-76,203,1,54,50,197,117,161,119,161,122,235,77,2,65,128,97,211,227,180,
-0,1,95,54,201,54,128,95,160,163,128,220,160,12,99,165,169,101,0,54,
-84,176,201,132,224,197,16,64,39,135,137,128,66,225,16,3,105,124,228,96,
-1,96,232,131,130,64,142,1,52,57,185,34,226,183,1,244,142,1,98,232,
-136,35,131,229,236,246,0,224,78,2,224,13,4,0,58,100,48,101,158,224,
-20,0,0,79,107,224,137,175,64,205,227,5,0,133,126,0,75,66,60,64,
-189,104,113,0,65,96,13,133,226,65,86,72,238,196,224,226,245,1,246,42,
-0,2,95,54,48,137,206,144,234,160,14,0,58,100,117,170,23,65,76,105,
-249,105,67,0,58,68,255,96,160,1,50,50,118,2,73,229,122,155,0,58,
-96,38,202,53,97,240,1,95,49,72,137,128,146,164,15,224,27,6,128,188,
-167,82,103,1,129,126,130,149,65,157,1,95,54,85,60,130,44,88,16,64,
-1,1,95,54,70,154,99,128,162,246,1,95,54,170,120,160,13,97,190,100,
-55,70,216,225,79,8,170,116,0,58,96,39,224,29,2,0,49,224,29,5,
-64,83,224,59,5,195,172,64,102,97,111,0,75,226,27,5,0,58,96,167,
-106,223,100,79,230,249,1,230,162,10,229,98,1,231,42,11,224,48,20,103,
-18,132,24,249,64,1,198,208,228,203,3,184,207,64,13,234,229,7,96,97,
-225,251,1,98,251,65,237,132,157,248,33,2,160,62,160,110,229,31,0,224,
-116,2,227,159,0,229,88,2,217,52,224,117,21,224,115,5,224,113,5,224,
-51,17,118,238,224,0,4,0,58,98,44,235,253,0,0,49,70,107,0,48,
-167,58,96,16,109,174,105,172,0,57,103,192,99,184,99,160,2,95,54,50,
-73,30,76,222,250,105,1,130,237,224,157,5,0,58,96,119,108,238,1,50,
-49,64,67,248,222,1,1,49,49,160,10,3,95,49,56,51,172,147,230,205,
-5,224,34,13,1,73,32,64,2,0,83,166,78,64,168,224,139,0,64,62,
-224,96,0,160,46,131,201,69,96,129,100,192,56,197,67,102,37,160,10,224,
-60,1,224,137,6,160,119,200,138,88,101,231,157,3,225,16,4,211,113,225,
-251,0,128,75,80,41,128,44,161,234,224,70,0,1,50,54,224,71,1,64,
-72,64,40,128,72,224,42,8,224,113,2,224,41,6,0,58,96,8,163,95,
-1,75,52,238,181,0,0,58,64,37,129,228,167,250,232,67,0,162,50,167,
-40,0,82,224,22,4,225,35,0,0,58,96,122,162,36,224,1,1,153,236,
-226,211,0,224,20,5,224,17,8,224,14,5,224,11,2,192,8,130,246,96,
-109,132,123,0,85,128,195,224,197,2,207,117,160,197,64,164,240,169,2,192,
-18,1,66,39,224,21,3,166,227,224,29,0,162,217,239,241,1,1,64,58,
-66,229,128,88,233,233,8,5,102,111,108,100,108,49,182,87,81,83,64,45,
-132,196,224,134,0,0,83,228,45,4,96,79,164,204,228,83,0,113,62,104,
-116,235,0,6,233,108,1,234,64,1,211,79,136,22,128,169,233,77,5,201,
-19,134,19,98,28,70,74,233,85,5,233,56,0,164,101,226,216,2,233,95,
-3,128,176,0,54,96,176,224,79,0,71,37,128,169,0,57,120,124,101,226,
-64,6,106,164,68,78,96,45,200,58,134,108,0,58,102,126,101,196,0,73,
-197,53,0,83,75,113,64,212,229,129,1,138,110,230,58,2,231,216,7,96,
-144,203,7,168,205,229,71,0,252,249,0,131,85,193,117,234,205,10,164,255,
-192,86,196,215,169,122,133,254,128,8,1,95,53,68,212,232,230,0,103,150,
-128,64,71,215,224,64,1,151,22,224,25,4,131,44,65,6,162,109,230,53,
-2,224,174,13,224,124,7,106,136,105,209,224,127,22,224,101,3,224,130,8,
-224,156,5,225,91,4,192,247,65,102,1,55,57,226,219,2,12,92,51,52,
-38,108,105,98,47,68,97,116,97,47,174,83,2,46,104,115,64,22,4,44,
-49,50,56,58,130,246,0,58,97,225,101,189,0,49,68,222,69,212,0,58,
-96,109,162,225,97,124,128,222,244,34,3,96,5,65,92,226,241,0,229,202,
-7,197,84,225,228,0,64,57,227,211,4,195,250,192,7,3,80,32,95,55,
-73,211,1,50,32,224,202,35,3,54,52,58,54,249,153,4,227,92,1,139,
-37,132,26,227,108,1,174,97,227,93,3,0,48,238,57,0,228,88,0,202,
-76,0,48,115,176,166,235,196,101,224,80,12,235,201,2,224,80,2,97,153,
-96,69,97,108,196,227,131,61,100,51,0,52,80,69,64,116,97,50,142,55,
-227,235,11,228,36,13,160,47,235,107,4,224,61,11,103,43,228,39,4,224,
-79,11,228,85,18,231,43,3,0,58,96,208,164,36,207,33,233,153,19,168,
-171,97,10,101,101,75,81,181,34,245,19,0,2,53,53,48,240,68,11,174,
-17,0,58,96,57,96,51,0,48,81,89,130,169,66,253,226,169,2,163,136,
-193,68,229,147,6,161,199,229,149,8,226,33,15,97,1,64,109,161,204,230,
-117,1,67,173,0,48,107,141,202,23,226,121,45,224,91,1,226,121,10,224,
-95,3,226,121,31,224,80,2,161,110,104,60,0,58,96,24,226,121,1,226,
-100,38,132,119,226,11,2,224,10,1,0,58,96,97,1,10,65,67,240,0,
-58,96,173,108,180,0,56,211,67,2,51,51,57,64,150,97,126,143,146,1,
-53,57,131,82,68,41,142,243,88,53,204,184,100,132,64,10,0,58,96,6,
-202,187,0,50,72,29,160,65,0,58,96,53,102,63,224,16,0,227,87,1,
-160,42,192,27,1,64,58,96,111,96,45,134,102,226,40,3,96,19,129,112,
-64,19,112,218,165,176,1,95,49,175,45,179,104,196,186,101,190,229,215,2,
-96,97,130,205,65,154,128,98,230,26,1,134,215,1,95,50,73,99,103,153,
-195,237,225,212,0,98,101,110,50,97,125,226,173,0,230,108,0,0,89,160,
-36,208,45,226,98,2,192,148,96,170,197,71,208,37,144,104,64,14,251,195,
-0,209,49,97,38,97,112,224,143,3,194,96,236,96,0,96,148,224,146,5,
-65,253,233,68,5,6,108,116,87,46,99,109,112,219,149,177,191,184,218,179,
-125,96,5,0,58,97,49,98,30,0,57,65,62,121,248,111,62,98,42,225,
-234,8,0,52,96,25,168,141,237,170,1,224,166,21,104,209,192,13,0,49,
-79,18,192,185,0,58,96,81,160,126,200,168,75,42,65,209,193,237,64,15,
-124,19,161,231,3,95,49,54,50,192,85,0,58,96,6,105,1,1,95,53,
-115,214,1,53,57,78,247,86,105,128,163,96,24,0,57,197,142,0,53,64,
-159,131,162,64,165,71,104,195,176,172,237,165,19,2,53,57,48,96,70,167,
-117,230,22,7,96,38,65,24,99,62,195,122,229,143,1,6,95,49,52,57,
-32,35,54,77,253,192,82,224,46,11,64,36,183,179,0,58,96,113,244,168,
-0,194,19,66,96,130,103,169,141,228,196,2,228,225,1,76,162,196,99,224,
-232,31,128,148,254,74,2,169,41,224,87,4,87,131,224,87,37,128,236,74,
-130,224,91,1,128,206,160,198,192,197,224,93,5,110,81,224,91,17,224,126,
-38,227,14,6,7,78,117,109,101,114,105,99,46,88,147,26,73,110,116,65,
-116,66,97,115,101,58,32,110,101,103,97,116,105,118,101,32,97,114,103,117,
-109,101,110,191,173,161,105,164,37,137,202,65,113,146,163,192,213,64,5,224,
-178,22,97,189,108,249,0,51,224,22,5,224,75,52,0,57,224,22,3,64,
-0,224,236,29,12,117,110,115,117,112,112,111,114,116,101,100,32,98,255,177,
-1,128,140,117,9,226,120,6,194,110,3,83,32,95,50,212,100,168,130,164,
-248,224,49,6,194,60,160,83,192,11,226,72,8,224,70,4,110,31,160,49,
-101,25,162,245,160,22,225,64,12,103,16,132,65,224,10,2,224,55,2,225,
-86,3,2,53,56,56,98,218,0,80,192,65,205,132,225,81,16,0,58,100,
-47,131,137,98,191,130,119,160,34,96,82,224,204,1,0,58,96,95,143,59,
-0,50,79,62,96,36,0,58,96,34,227,204,8,236,133,1,227,100,60,193,
-128,236,242,0,128,88,129,122,240,253,4,125,71,225,103,1,129,52,0,35,
-85,148,193,9,128,162,226,132,22,224,64,8,228,217,0,224,86,11,225,225,
-3,224,98,32,160,66,164,157,65,72,0,54,197,129,65,26,81,110,64,105,
-142,226,173,191,150,250,64,76,1,50,54,152,44,224,249,2,215,186,98,204,
-198,158,65,14,64,38,64,54,126,217,192,22,3,95,49,51,55,227,75,2,
-2,32,37,32,163,39,224,45,5,130,7,92,185,87,47,96,239,64,15,67,
-38,160,15,0,58,96,6,188,92,237,94,2,90,66,234,43,2,65,244,98,
-81,0,52,225,226,2,1,52,53,86,95,167,117,2,95,53,56,254,192,0,
-107,142,160,16,0,58,96,51,130,98,136,56,200,169,0,49,119,5,0,35,
-86,172,64,245,224,28,12,232,217,3,160,18,134,166,0,58,96,93,251,130,
-11,2,108,97,115,251,130,1,137,86,1,85,32,96,209,252,24,0,0,58,
-96,8,99,12,136,16,1,95,53,123,237,0,53,65,243,3,64,95,53,55,
-64,189,1,51,56,224,84,2,1,45,62,161,95,1,58,53,79,60,96,58,
-255,166,6,140,30,224,18,4,148,116,162,238,128,18,65,115,95,19,96,117,
-89,8,1,53,55,241,177,1,225,247,0,96,142,162,152,224,12,0,224,25,
-1,224,21,0,1,95,54,66,60,96,171,2,79,32,35,92,65,164,185,128,
-24,128,25,224,197,1,1,46,46,201,105,128,30,191,159,224,137,5,224,117,
-81,224,110,14,224,97,21,224,189,20,225,112,7,64,22,225,112,6,65,209,
-64,117,224,115,2,224,102,30,224,173,19,123,236,64,70,64,8,225,15,5,
-99,251,235,77,0,1,95,53,68,124,64,7,1,53,53,130,84,225,50,4,
-119,21,1,95,53,68,14,192,0,0,85,64,108,76,213,192,228,1,58,53,
-79,0,234,226,0,224,140,1,224,15,1,255,20,1,224,103,14,186,108,64,
-76,0,55,250,241,0,194,245,68,132,160,49,74,71,160,153,192,17,0,51,
-160,17,0,58,96,117,99,113,2,58,53,55,171,141,0,53,74,35,154,173,
-0,53,75,167,213,43,0,53,90,158,241,191,1,2,95,53,55,107,177,85,
-191,143,154,0,58,64,57,128,46,0,89,141,70,231,174,1,131,29,169,126,
-87,2,100,175,205,83,166,66,64,5,96,12,233,5,1,224,59,4,227,133,
-5,224,25,1,224,27,5,133,96,226,48,4,65,138,3,85,32,75,51,228,
-87,7,8,115,101,112,49,32,65,98,111,118,200,146,224,37,17,4,66,101,
-115,105,100,224,38,0,224,124,1,228,11,12,1,95,52,78,100,224,37,2,
-105,113,234,228,0,232,121,5,2,32,95,53,125,145,161,5,96,189,226,150,
-0,79,200,110,216,71,152,225,47,0,64,51,65,119,1,95,53,101,63,160,
-0,169,51,225,56,1,224,97,0,225,31,4,205,185,199,180,167,197,192,207,
-224,42,3,165,253,224,195,2,224,79,0,94,86,0,53,144,77,161,189,128,
-69,167,23,64,11,249,78,6,224,71,19,234,233,1,224,71,6,97,1,2,
-95,53,55,96,137,64,19,254,67,7,224,90,0,232,143,12,228,66,1,128,
-22,135,187,64,1,1,95,53,125,197,225,102,40,224,195,4,96,144,0,53,
-86,190,64,163,251,111,1,116,184,67,15,135,38,99,15,202,209,224,159,4,
-96,182,86,239,225,143,5,225,192,21,199,147,128,26,198,100,64,191,1,61,
-61,224,30,8,225,109,0,0,90,192,121,194,96,224,66,18,193,178,224,66,
-2,129,39,71,211,1,53,55,65,79,64,13,1,95,53,96,231,193,197,89,
-88,128,22,100,19,247,252,0,1,53,53,111,243,164,209,193,199,0,53,65,
-199,129,105,226,206,12,132,95,65,68,136,20,231,156,8,64,29,227,250,49,
-7,111,110,101,76,105,110,101,114,227,254,25,224,41,0,228,2,6,227,249,
-20,0,85,104,155,97,30,64,0,224,167,6,64,22,224,62,6,65,181,136,
-186,131,86,224,60,0,224,20,0,112,97,192,81,224,61,6,65,111,73,209,
-228,120,0,70,113,150,101,97,66,137,26,127,111,235,26,5,100,192,225,244,
-3,164,140,224,63,1,0,58,97,239,98,197,0,85,193,223,112,92,2,95,
-53,54,117,136,73,90,170,12,0,83,64,32,158,238,128,90,98,217,128,169,
-230,9,5,179,92,227,127,2,224,19,0,128,17,167,134,64,5,102,182,166,
-193,199,65,248,44,7,160,152,98,63,68,36,126,152,0,53,148,175,0,58,
-96,168,192,193,233,148,5,64,100,231,245,1,160,17,232,61,6,1,32,124,
-129,243,64,29,231,249,37,160,174,0,58,96,136,114,18,0,80,234,157,0,
-232,110,5,106,166,224,119,6,1,60,45,233,28,5,160,6,97,128,72,33,
-224,44,4,1,108,101,176,66,96,30,1,48,32,98,99,193,18,192,152,163,
-93,0,58,96,162,181,49,81,190,131,135,0,58,64,86,225,201,1,97,237,
-251,201,0,160,181,0,53,82,206,225,156,1,224,129,3,3,119,104,101,114,
-195,29,224,132,26,96,134,211,205,65,24,96,96,0,54,148,31,0,53,96,
-233,225,42,23,2,79,32,35,64,39,234,169,5,224,53,15,77,215,224,177,
-6,1,58,58,225,96,1,99,87,224,56,0,224,40,6,5,100,101,102,97,
-117,108,209,163,163,3,64,199,2,95,53,54,101,110,0,58,96,14,98,98,
-193,49,64,37,69,115,126,46,0,58,96,39,120,173,3,54,49,32,58,96,
-194,169,253,1,80,32,133,177,0,80,97,128,182,201,230,87,0,133,24,0,
-58,65,76,225,176,5,137,159,65,142,160,71,125,135,200,4,227,225,0,227,
-110,1,229,217,4,208,94,164,13,232,147,7,224,46,7,2,95,53,51,132,
-97,64,12,64,5,0,58,96,133,226,209,19,98,44,143,25,227,44,4,0,
-54,227,44,6,175,110,225,207,17,224,72,38,235,250,14,2,58,53,53,218,
-46,2,32,95,51,75,18,122,98,86,42,3,95,50,50,49,97,88,0,51,
-68,51,134,145,170,236,64,54,0,54,161,97,86,10,186,30,0,89,129,221,
-217,54,218,62,168,16,64,27,103,212,176,148,110,237,107,150,128,0,0,58,
-64,198,129,229,225,43,2,226,116,9,5,102,111,114,97,108,108,228,122,5,
-128,235,0,54,163,67,225,11,8,2,58,53,53,130,134,2,80,32,75,102,
-128,129,20,224,9,0,2,58,53,53,199,76,98,98,0,52,64,158,172,112,
-0,52,105,204,204,125,4,53,49,32,95,52,101,28,2,64,95,51,64,84,
-128,93,130,182,2,75,32,89,176,91,96,117,194,233,139,223,132,31,0,52,
-102,59,136,240,165,222,0,83,175,243,0,50,137,99,0,53,71,254,65,93,
-193,59,189,239,99,191,240,31,4,96,223,169,83,128,246,156,25,1,51,51,
-94,26,144,65,96,34,225,95,0,198,176,161,168,225,186,0,128,138,238,96,
-0,145,241,160,51,230,196,0,152,64,3,95,49,52,48,183,69,113,212,3,
-48,32,64,35,87,37,1,64,58,96,219,162,18,168,94,64,20,131,15,96,
-20,64,38,128,20,130,115,96,20,65,16,128,20,130,81,120,30,224,228,2,
-97,211,224,20,7,88,74,224,20,8,133,27,224,20,6,143,218,224,20,7,
-128,190,224,20,5,67,185,224,83,9,64,179,224,20,8,224,125,11,97,105,
-224,20,7,174,26,224,20,6,224,125,11,0,51,224,62,12,103,133,224,251,
-7,225,16,11,99,157,224,146,8,224,167,12,224,83,11,111,200,224,21,10,
-224,148,11,101,217,224,20,7,1,56,55,69,114,224,22,9,0,54,225,85,
-12,0,56,122,99,224,22,11,128,177,226,230,5,1,56,55,99,130,196,130,
-250,114,0,224,7,179,1,58,53,66,131,240,155,16,67,86,240,155,5,68,
-167,164,203,73,88,166,243,66,53,200,164,64,68,150,244,225,63,0,0,51,
-98,127,100,194,80,222,0,53,230,67,0,1,58,53,66,27,160,45,196,219,
-129,94,164,213,0,58,101,25,230,24,27,96,214,230,24,1,64,186,107,83,
-0,73,234,83,3,231,57,0,97,3,81,53,156,248,69,112,192,35,2,95,
-53,51,116,140,67,30,0,66,192,116,96,113,96,95,139,181,0,58,96,8,
-160,254,95,173,139,143,0,58,96,189,225,21,4,129,102,67,66,232,9,93,
-140,232,64,12,136,9,64,133,160,121,100,232,96,249,171,255,136,254,0,58,
-96,52,225,99,9,73,199,225,99,0,64,21,231,124,7,67,22,114,146,3,
-48,57,32,58,96,21,225,113,18,102,172,225,113,21,168,79,193,113,101,251,
-192,7,64,110,233,149,1,229,220,0,224,201,8,198,91,225,56,0,242,233,
-1,225,60,1,161,61,225,63,9,224,24,0,224,168,1,192,19,252,183,4,
-96,71,129,101,225,103,0,130,112,2,65,32,58,96,56,97,23,0,50,72,
-249,88,10,2,58,53,50,130,23,3,95,53,50,54,94,74,0,48,190,204,
-253,239,0,89,187,97,86,224,20,7,192,253,64,70,180,10,69,15,134,162,
-67,181,87,195,2,95,53,50,138,141,67,52,0,75,96,111,129,210,120,57,
-0,58,96,23,163,102,64,13,129,169,243,211,1,194,139,206,116,123,110,249,
-22,3,142,50,81,235,0,52,94,167,238,23,2,1,95,53,120,29,176,84,
-96,37,120,195,3,51,32,95,49,89,160,67,247,0,49,242,102,0,0,58,
-96,173,194,37,64,87,240,13,10,192,138,1,95,53,67,59,224,89,0,226,
-84,0,227,196,5,224,47,3,153,21,192,47,0,58,96,9,251,173,2,243,
-226,1,244,184,22,224,39,24,131,68,187,100,243,161,18,174,106,226,65,2,
-64,8,209,235,224,7,5,224,190,7,224,54,4,224,145,0,227,252,2,192,
-13,255,71,0,169,62,133,116,1,53,49,224,124,0,224,89,6,160,165,225,
-220,0,2,95,53,49,131,215,64,37,129,194,138,37,160,15,224,51,0,224,
-219,5,245,75,7,192,171,161,17,226,76,1,245,65,0,224,88,7,224,104,
-11,225,119,1,160,226,241,150,5,252,216,14,243,121,3,192,135,128,30,224,
-224,1,245,15,2,224,118,7,224,50,7,133,210,160,130,229,174,0,227,37,
-3,160,217,228,63,7,224,225,9,128,88,147,125,160,0,164,138,224,193,11,
-225,160,1,192,142,160,189,213,15,224,188,10,132,134,0,58,96,16,235,86,
-1,235,219,1,165,3,225,85,15,193,52,227,93,8,192,24,0,85,199,174,
-224,33,8,96,129,242,202,3,105,74,150,48,1,79,32,124,102,231,232,0,
-64,255,99,247,0,95,84,55,0,58,97,145,69,15,1,52,57,97,68,64,
-143,156,213,0,64,65,110,3,95,49,54,50,194,194,0,58,96,6,227,198,
-3,192,193,245,173,6,227,114,3,225,209,5,228,79,3,225,66,2,128,14,
-64,0,227,200,1,225,221,12,160,39,225,0,0,97,189,150,141,97,4,195,
-90,128,54,227,231,20,224,67,5,97,221,104,61,249,167,1,228,1,3,64,
-252,0,54,133,236,130,124,225,193,1,249,169,12,98,239,132,22,224,210,0,
-249,164,86,0,97,85,160,3,78,101,115,116,245,170,25,224,42,1,249,174,
-58,225,178,13,228,108,1,129,250,97,47,193,238,184,1,224,24,16,64,0,
-225,54,24,128,92,229,250,25,176,80,224,177,2,224,76,0,249,156,22,224,
-151,7,249,168,7,224,82,2,132,223,131,235,224,74,0,80,221,72,24,132,
-195,130,47,134,41,193,48,225,54,2,225,55,0,233,10,10,160,151,224,138,
-2,224,205,4,131,3,162,70,128,139,249,254,12,230,187,0,225,42,15,162,
-238,224,92,4,128,1,228,246,2,225,179,16,192,52,185,233,96,0,112,141,
-0,58,96,36,197,18,227,64,29,192,153,247,35,9,224,23,1,225,200,1,
-225,237,12,229,72,14,224,167,0,129,179,1,64,95,93,199,225,212,0,229,
-91,27,96,125,225,76,0,192,72,177,15,133,59,113,11,2,51,32,95,112,
-131,128,67,225,70,2,193,33,96,16,0,54,96,253,2,52,57,55,64,161,
-162,212,251,25,0,65,213,248,51,4,230,68,30,192,48,224,28,4,97,169,
-224,224,8,96,21,232,63,5,225,57,14,97,54,128,198,155,203,225,57,4,
-225,58,26,242,81,0,169,25,0,50,96,9,235,101,4,128,77,163,149,70,
-129,0,58,96,107,107,177,0,49,86,18,68,84,246,18,1,98,244,118,18,
-0,49,182,18,64,188,66,101,194,217,98,168,228,36,0,118,101,130,54,162,
-225,161,77,201,36,226,90,25,227,69,11,224,39,4,229,207,4,224,242,0,
-225,130,1,65,36,225,125,4,229,157,6,0,98,69,152,0,103,216,167,229,
-118,4,160,84,164,114,192,135,197,119,160,198,111,9,98,72,105,48,226,240,
-1,160,169,228,245,2,195,2,254,129,7,163,163,224,227,17,228,41,0,164,
-195,232,0,11,229,253,1,224,124,8,100,145,65,162,99,127,196,159,224,42,
-3,228,112,0,226,65,5,128,138,225,3,0,192,193,225,223,0,254,14,26,
-225,55,0,193,194,224,46,13,197,78,192,28,225,200,50,0,49,225,201,11,
-224,88,0,226,133,3,225,208,4,227,190,0,132,249,65,5,97,118,225,213,
-2,229,165,0,72,209,160,70,225,187,5,224,220,13,200,215,229,101,0,230,
-19,17,164,145,224,109,4,160,79,225,203,2,227,252,0,78,177,102,128,228,
-27,0,225,223,1,224,68,9,225,231,2,226,138,14,229,121,4,0,64,111,
-69,104,211,64,6,64,4,0,58,110,246,111,143,68,59,0,73,68,10,64,
-47,145,14,2,55,32,58,96,95,214,92,64,247,118,92,0,48,184,229,71,
-155,0,58,96,195,228,83,1,96,241,100,83,71,184,128,37,0,51,64,37,
-218,186,96,37,98,78,128,37,132,159,129,113,129,164,64,138,0,58,99,132,
-234,49,1,226,112,8,1,95,53,80,125,128,13,224,246,3,128,38,134,101,
-2,95,52,55,166,68,65,245,129,249,128,227,196,238,231,64,1,224,42,0,
-101,68,128,142,230,50,2,128,80,96,109,226,11,4,195,166,131,61,230,50,
-36,199,172,230,50,11,192,86,230,50,0,96,236,98,26,232,155,11,255,169,
-16,181,38,96,110,204,39,227,103,6,3,102,105,116,115,220,161,180,252,64,
-108,130,20,0,53,130,20,99,121,89,147,0,50,230,34,1,96,240,225,151,
-1,233,145,0,225,167,0,193,185,239,65,1,230,63,10,227,67,2,234,170,
-22,229,45,7,224,35,4,239,51,1,228,86,4,103,103,224,238,5,10,100,
-105,115,112,108,97,121,32,108,97,121,203,184,192,141,195,68,231,152,5,192,
-29,65,79,174,7,225,178,0,229,186,13,238,254,9,3,95,49,51,54,90,
-30,218,141,0,79,83,60,238,86,0,64,0,165,144,196,25,0,66,64,5,
-96,53,232,222,9,160,252,99,238,120,232,192,184,228,57,15,225,113,7,234,
-29,7,225,109,10,225,199,1,225,106,61,0,50,225,107,7,133,114,225,35,
-3,224,210,36,225,130,82,65,231,101,39,3,64,85,32,90,161,241,160,7,
-100,26,0,58,116,59,223,63,0,52,84,29,2,95,52,57,87,30,97,166,
-203,168,155,245,0,58,96,25,184,153,0,48,75,166,136,98,2,50,56,52,
-74,237,0,56,68,11,117,65,128,26,1,95,49,96,231,85,16,192,44,1,
-95,51,90,11,129,14,2,95,55,55,192,21,0,50,121,243,100,14,192,18,
-1,49,55,166,152,1,58,52,88,156,128,116,0,83,105,190,164,189,208,122,
-69,26,0,50,88,165,0,51,86,251,129,74,86,177,1,54,56,66,107,96,
-135,0,54,152,40,188,186,96,124,64,48,65,224,192,15,225,80,6,225,247,
-1,17,114,101,99,117,114,115,105,118,101,32,109,111,100,117,108,101,58,32,
-161,253,160,197,97,226,1,95,51,124,246,224,71,19,13,44,32,105,109,112,
-111,114,116,32,99,104,97,105,110,192,69,65,116,1,53,55,64,163,94,165,
-128,69,128,0,1,95,52,86,46,1,58,52,65,26,70,120,4,51,54,57,
-32,75,185,148,98,33,192,186,237,130,3,0,51,231,31,1,64,58,134,141,
-96,166,3,48,32,95,51,86,113,1,95,51,126,167,0,54,167,170,195,13,
-98,113,131,176,224,42,0,225,41,2,64,52,128,173,0,51,107,169,1,52,
-54,180,200,232,149,1,255,194,1,69,24,128,73,87,20,64,225,1,51,53,
-223,26,2,95,52,51,65,150,159,100,225,121,22,0,77,97,111,9,32,110,
-111,116,32,102,111,117,110,100,225,121,0,96,172,161,120,2,49,50,51,65,
-27,96,206,224,76,19,15,92,49,48,38,115,101,97,114,99,104,32,112,97,
-116,104,61,128,74,158,187,128,165,96,73,1,49,51,124,91,64,4,95,247,
-65,135,0,51,96,8,224,91,23,6,112,97,99,107,97,103,101,224,92,3,
-224,83,18,225,63,0,160,207,128,1,228,210,1,161,226,225,140,3,225,137,
-4,1,95,52,255,189,1,98,135,112,161,198,180,99,89,161,194,224,31,1,
-0,39,67,223,231,196,4,226,191,1,166,250,132,0,193,95,231,154,6,128,
-5,104,119,193,12,1,52,56,97,211,228,140,9,94,73,228,140,2,128,206,
-226,131,2,66,218,227,66,0,164,246,247,47,2,1,95,51,127,218,226,126,
-0,227,168,28,193,129,3,100,111,101,115,98,52,6,99,111,110,116,97,105,
-110,163,183,226,60,2,192,244,229,71,12,245,33,1,227,142,3,224,191,6,
-227,67,3,160,220,125,84,161,115,132,130,163,148,0,80,101,82,135,129,120,
-8,237,95,5,96,0,226,207,1,0,51,64,134,1,95,52,91,110,99,194,
-138,55,224,229,1,2,46,116,120,78,13,0,58,96,33,104,214,2,95,52,
-56,80,108,96,5,0,58,96,104,117,195,1,56,56,64,211,91,181,0,51,
-79,15,128,5,0,58,96,37,164,19,65,116,74,181,64,42,224,100,5,161,
-74,73,73,0,58,97,227,234,94,6,1,53,56,234,94,3,67,241,128,106,
-197,123,133,104,198,80,224,244,4,236,111,0,128,49,0,58,96,33,165,221,
-226,185,5,165,95,164,67,2,50,49,57,64,25,198,80,0,50,123,97,0,
-51,82,76,70,128,65,168,247,239,1,227,40,2,194,64,0,52,113,107,226,
-59,16,7,76,111,97,100,105,110,103,32,194,67,245,5,0,229,15,4,227,
-130,5,0,51,108,238,133,0,224,183,3,228,250,4,224,182,2,65,227,2,
-51,51,50,64,19,110,32,1,52,54,89,0,0,50,64,136,194,96,226,235,
-32,0,80,160,167,29,99,111,109,112,105,108,101,32,118,101,114,115,105,111,
-110,32,109,105,115,109,97,116,99,104,58,32,102,105,108,101,164,135,171,105,
-196,230,230,160,17,160,253,160,54,226,147,1,128,169,224,56,18,160,134,0,
-114,128,57,224,211,0,224,215,4,0,51,132,242,1,95,52,72,44,98,219,
-68,140,222,23,65,50,135,177,71,171,199,177,224,24,3,0,51,146,24,128,
-24,71,245,160,47,224,22,3,162,50,1,52,55,71,81,1,52,55,97,243,
-1,52,55,160,49,64,207,95,58,100,231,83,83,1,95,51,67,44,2,95,
-52,56,98,56,2,95,51,52,64,40,230,17,0,2,95,52,56,67,54,1,
-52,56,170,168,229,52,5,97,164,70,232,2,95,52,56,69,211,0,58,96,
-214,157,206,0,51,105,95,0,58,96,24,128,17,0,52,201,123,0,58,96,
-78,192,38,0,90,233,146,0,0,58,96,108,3,10,65,32,90,70,4,0,
-58,96,146,192,37,73,190,0,58,96,197,190,45,1,75,52,192,76,64,225,
-244,18,0,193,44,119,106,225,9,0,72,255,0,52,89,222,192,6,224,25,
-6,130,138,96,6,224,26,7,101,244,128,6,0,58,97,82,160,127,160,144,
-0,54,224,144,1,128,16,222,221,128,212,0,58,96,110,224,157,1,202,210,
-77,255,196,62,1,95,51,116,219,160,6,110,183,103,32,101,163,65,171,2,
-95,52,55,96,4,129,131,1,95,51,69,14,64,89,129,89,1,95,51,68,
-228,77,228,96,33,96,124,0,58,64,49,128,28,169,48,133,159,107,162,233,
-31,0,0,58,98,54,224,37,7,218,19,169,92,233,77,1,0,58,98,149,
-128,237,0,50,97,182,193,184,64,26,129,132,129,248,0,52,160,2,224,31,
-0,64,32,176,96,4,52,54,53,32,58,102,53,15,10,65,32,94,71,69,
-84,84,73,77,69,77,73,76,76,73,64,22,129,61,133,99,64,126,239,166,
-12,1,95,52,141,55,128,14,210,15,128,179,235,100,0,104,179,67,108,238,
-179,14,192,22,224,49,3,139,50,64,53,199,29,2,79,32,35,79,39,128,
-198,235,213,9,97,9,150,154,64,0,232,186,1,235,238,3,236,27,6,165,
-27,64,132,229,220,5,234,32,18,228,118,17,0,70,68,248,234,28,8,233,
-114,3,169,109,224,120,0,99,189,236,139,1,0,52,102,20,207,245,225,17,
-7,236,95,1,193,143,162,24,162,156,98,184,0,52,100,51,233,142,0,96,
-33,166,13,236,217,3,69,66,162,216,168,41,128,100,128,14,108,233,97,153,
-98,45,242,90,1,192,141,3,95,52,53,52,231,157,2,7,109,104,115,99,
-112,112,46,104,208,232,64,42,143,241,163,99,226,20,3,224,138,0,96,132,
-135,174,224,232,3,160,186,161,143,224,184,1,1,52,54,96,224,224,171,1,
-128,156,131,120,237,255,6,0,49,70,223,1,95,52,99,210,101,101,230,251,
-2,125,55,76,153,70,249,76,59,167,167,239,93,6,5,114,101,109,111,118,
-101,97,210,5,102,97,105,108,101,100,128,219,0,58,96,134,67,46,7,117,
-110,108,105,110,107,32,58,96,101,161,31,225,33,2,2,50,49,49,224,77,
-2,7,77,72,83,67,80,80,72,83,239,167,3,224,46,6,225,228,5,107,
-30,0,66,235,63,4,128,245,232,132,10,192,209,136,116,226,167,0,232,102,
-1,226,180,19,8,82,117,110,32,99,112,112,104,115,226,175,20,1,95,52,
-199,65,128,183,160,133,170,33,1,56,55,224,91,13,96,87,232,185,0,224,
-244,1,224,140,16,7,32,45,45,115,116,114,105,112,160,138,236,75,6,128,
-110,130,163,110,163,162,174,107,248,0,53,99,58,224,39,2,3,67,39,32,
-79,232,95,21,1,45,73,168,87,160,49,224,25,1,10,47,115,114,99,47,
-114,117,110,116,105,109,190,127,100,117,64,76,1,57,53,224,193,10,2,79,
-32,35,91,95,132,154,228,175,2,224,20,1,65,65,249,40,4,224,66,11,
-235,232,0,233,32,2,225,44,19,0,79,225,91,1,130,154,231,164,0,0,
-50,229,245,0,224,1,1,236,254,2,1,64,58,96,141,3,10,65,32,79,
-226,164,2,8,45,68,95,95,77,72,83,95,95,64,86,0,75,70,196,65,
-84,70,40,3,50,53,49,32,224,160,2,0,58,97,125,134,28,227,118,10,
-0,53,144,121,234,116,7,227,120,15,129,14,234,105,32,8,99,97,108,108,
-67,111,109,109,97,69,98,131,154,194,46,239,134,8,0,49,133,80,234,100,
-21,229,166,20,0,58,98,248,67,239,7,115,121,115,116,101,109,32,58,96,
-222,99,239,228,116,3,224,236,2,97,5,184,5,64,34,224,21,4,114,250,
-2,95,52,53,96,249,225,62,3,1,95,50,83,47,228,245,8,105,203,225,
-102,6,0,52,73,80,1,95,52,172,78,229,191,4,165,180,64,29,0,51,
-97,192,232,241,0,2,95,52,53,86,93,129,125,0,49,114,152,0,35,134,
-35,3,95,52,50,57,102,68,183,148,0,83,64,80,64,81,76,21,225,51,
-2,130,63,71,178,3,95,49,55,57,226,55,2,8,92,51,52,38,108,105,
-98,47,83,97,33,5,47,73,79,46,104,115,64,19,5,44,50,56,52,58,
-56,129,94,0,90,129,47,110,122,64,110,97,18,2,48,50,32,128,131,160,
-19,96,0,0,67,96,36,224,118,7,0,58,96,208,133,233,0,89,138,243,
-135,184,224,84,3,173,243,197,36,181,131,64,12,168,173,228,78,1,224,136,
-1,243,133,0,160,53,98,200,160,17,238,19,0,66,174,151,160,0,65,96,
-14,133,242,7,94,116,109,112,110,97,109,101,66,20,227,122,0,227,121,10,
-227,123,5,1,64,58,103,164,98,66,2,95,49,56,64,109,5,32,64,95,
-54,32,89,135,216,128,170,146,178,64,1,65,110,184,202,97,66,160,213,64,
-26,234,192,0,84,113,97,179,97,216,0,35,66,202,96,105,96,36,247,249,
-1,219,190,110,255,224,45,0,0,52,176,83,96,33,216,68,201,166,224,42,
-5,0,51,244,13,1,96,36,224,129,17,138,168,96,123,224,117,13,64,10,
-67,2,64,112,224,33,14,154,129,224,33,19,0,49,109,193,224,67,20,97,
-57,96,33,107,78,130,228,224,36,7,96,138,250,49,1,224,0,3,225,132,
-8,226,91,4,225,133,19,193,44,225,132,71,0,49,178,171,128,0,138,12,
-224,133,18,194,219,163,223,73,95,228,1,0,250,181,1,252,191,0,252,190,
-1,231,199,4,143,71,118,19,1,52,52,130,93,1,95,52,83,84,0,58,
-106,180,233,130,9,132,164,139,102,233,222,9,228,178,2,0,58,96,70,164,
-164,69,66,1,95,50,87,212,234,20,6,0,50,87,252,224,236,0,0,83,
-115,50,64,67,102,71,1,95,54,75,249,0,48,232,252,0,165,69,192,60,
-72,46,0,52,75,244,235,20,2,234,243,4,131,239,1,95,50,88,121,161,
-83,235,49,7,235,68,4,73,107,77,248,1,95,52,97,182,224,75,0,237,
-97,1,64,104,68,47,111,121,0,58,96,38,131,239,69,82,0,51,101,154,
-64,145,64,245,64,1,102,181,100,192,3,52,48,32,35,115,228,64,224,0,
-52,64,210,147,168,97,169,229,119,14,8,68,97,116,97,47,67,104,97,114,
-197,119,3,49,48,49,58,191,215,103,125,64,215,96,192,217,233,103,38,0,
-49,245,77,0,0,49,68,143,96,5,128,123,160,11,97,114,96,205,133,122,
-65,71,0,50,113,120,147,185,0,52,133,20,3,95,52,51,57,65,97,94,
-86,109,38,165,7,64,13,197,21,0,58,64,35,128,10,124,240,67,75,128,
-58,0,54,64,27,130,0,78,117,71,187,65,56,138,40,232,20,2,161,211,
-135,220,0,52,162,189,231,212,15,247,152,0,64,106,208,5,244,47,0,98,
-90,64,68,97,203,198,17,232,55,4,232,6,4,224,120,0,224,107,21,244,
-143,3,226,155,1,158,239,224,26,12,226,182,6,224,102,21,2,108,105,110,
-244,5,0,225,11,4,232,232,33,2,99,111,108,160,65,224,52,4,1,64,
-64,224,37,2,6,101,110,100,45,111,102,45,83,172,128,42,224,26,1,10,
-110,111,32,108,111,99,97,116,105,111,110,193,93,224,28,17,0,58,97,162,
-150,14,100,100,79,156,133,66,0,58,97,120,147,103,67,199,0,52,152,141,
-67,160,224,183,11,238,86,0,175,231,174,158,1,95,51,73,135,0,58,112,
-126,162,155,0,51,115,120,130,155,0,51,130,135,229,65,0,124,76,98,188,
-135,245,128,6,0,58,96,51,3,10,65,32,89,229,118,0,232,4,9,200,
-3,64,48,220,126,133,247,78,229,229,66,0,192,18,1,66,39,96,21,198,
-75,128,20,224,29,0,225,230,0,232,239,0,0,58,96,150,128,194,247,207,
-1,0,54,82,101,69,13,160,48,245,230,1,224,15,1,141,220,131,204,130,
-10,69,158,0,56,139,167,192,91,209,234,0,50,81,234,64,80,179,17,243,
-234,3,70,80,114,122,0,48,119,189,75,168,1,95,52,112,79,0,73,64,
-85,65,111,0,85,64,23,67,15,1,58,52,64,160,204,101,147,121,64,24,
-64,63,2,49,50,52,143,249,96,146,139,14,134,85,1,95,49,115,234,98,
-121,0,55,64,74,98,255,2,49,51,48,192,11,0,58,96,6,96,132,2,
-49,32,75,77,103,110,83,0,55,228,238,2,12,67,111,110,116,114,111,108,
-46,69,120,99,101,112,66,104,8,46,73,110,116,101,114,110,97,108,66,31,
-224,39,1,3,83,111,109,101,224,35,0,98,58,96,231,0,58,96,215,120,
-55,135,12,2,64,95,52,72,63,0,95,64,104,108,183,0,49,97,78,0,
-95,67,63,198,28,2,95,52,49,65,168,1,58,52,75,189,97,163,0,90,
-65,11,1,64,58,96,23,245,30,1,64,58,172,19,66,104,119,79,153,109,
-104,39,1,95,52,66,36,0,95,65,140,64,76,64,118,237,167,0,96,94,
-64,30,3,10,65,32,99,87,42,1,32,58,96,63,191,2,230,199,2,235,
-250,1,144,44,240,27,9,64,8,64,196,177,229,2,58,52,49,129,171,0,
-75,245,2,0,64,57,243,213,0,242,92,1,147,21,139,75,66,93,103,15,
-228,74,16,3,111,112,101,110,81,25,4,58,32,99,97,110,82,240,64,16,
-196,156,231,218,4,64,174,166,14,246,112,0,67,160,98,146,0,48,83,87,
-74,40,1,58,52,65,128,249,240,4,97,218,4,97,99,116,105,118,68,135,
-0,58,96,38,128,52,72,129,0,48,104,120,73,219,128,19,0,54,64,91,
-69,105,64,3,0,58,96,30,250,82,7,89,27,168,165,102,65,96,225,2,
-52,48,52,96,27,231,158,0,6,52,48,51,32,64,116,111,96,131,64,24,
-129,62,70,152,64,24,100,206,0,58,96,58,128,46,248,70,1,247,255,1,
-0,51,84,164,247,255,0,68,75,1,95,52,138,201,1,58,52,74,104,225,
-248,5,64,25,245,245,5,0,90,164,44,100,227,200,145,0,58,96,85,242,
-101,0,118,13,224,222,2,64,31,213,244,227,216,0,1,58,51,71,192,219,
-40,1,95,50,111,156,0,50,67,204,242,119,2,1,51,48,90,39,139,37,
-138,230,213,85,0,51,66,59,244,116,1,232,253,2,239,215,11,128,97,65,
-83,251,2,11,228,174,1,226,84,17,218,241,9,115,97,118,101,100,32,99,
-97,99,104,166,239,231,146,8,192,175,64,27,1,51,57,171,12,224,184,7,
-1,58,51,74,69,187,199,172,30,171,178,181,89,0,51,140,61,138,104,0,
-50,73,94,251,231,0,194,38,171,253,229,151,2,171,123,64,21,138,140,139,
-85,1,95,51,78,0,253,114,1,0,95,121,234,236,45,3,229,250,0,251,
-188,0,229,216,8,79,157,81,88,230,251,10,215,96,128,69,238,28,1,118,
-229,64,8,248,41,1,176,44,252,32,12,210,130,162,69,240,108,1,224,45,
-11,182,41,193,34,193,246,160,182,252,70,1,96,183,112,85,190,127,224,0,
-1,1,95,51,117,224,128,51,0,89,224,162,21,0,54,144,206,69,126,0,
-51,149,234,159,115,192,62,128,177,204,34,224,126,2,193,101,65,29,197,15,
-253,177,23,245,45,13,128,248,231,93,4,233,81,19,9,105,110,118,97,108,
-105,100,97,116,101,130,174,210,135,130,176,0,51,225,13,2,192,244,225,106,
-4,100,56,1,95,51,94,110,232,39,0,160,172,226,142,4,226,39,2,149,
-104,192,179,65,119,158,70,0,51,95,68,224,0,0,1,95,51,65,185,0,
-58,99,26,168,176,66,51,68,20,238,45,0,110,44,161,87,122,137,225,227,
-0,223,42,81,33,124,143,96,0,96,35,96,181,0,57,99,99,120,102,0,
-58,96,104,68,190,65,33,72,124,1,51,57,130,104,77,29,0,58,96,42,
-100,127,64,128,131,126,111,8,224,105,4,146,178,192,135,196,110,201,52,75,
-174,64,169,96,32,201,205,97,16,224,61,3,101,15,233,170,1,96,126,101,
-12,81,173,96,147,232,245,2,251,41,1,96,222,116,223,2,50,49,32,101,
-170,98,96,68,208,129,93,91,205,105,90,64,98,0,79,245,203,1,0,51,
-106,100,97,117,229,147,0,66,222,148,245,128,2,96,147,224,177,3,125,156,
-0,51,124,216,202,100,164,59,0,55,66,46,71,2,98,142,128,10,193,20,
-225,160,0,161,53,135,244,224,2,1,193,247,196,100,129,104,224,126,0,227,
-23,1,225,240,0,96,8,1,95,54,64,115,79,121,128,60,2,95,51,56,
-170,52,128,155,96,181,65,2,125,109,224,125,2,68,129,224,44,1,0,58,
-65,34,129,227,1,80,32,74,45,0,58,66,163,129,20,231,16,0,255,16,
-7,1,95,51,80,21,226,67,0,67,0,203,87,224,195,0,64,4,0,83,
-75,72,161,12,193,6,160,134,96,202,165,125,110,203,69,120,108,23,224,217,
-3,1,95,51,139,133,225,81,5,160,70,225,69,10,225,94,0,225,60,8,
-74,46,225,60,25,128,73,128,159,243,27,0,0,64,162,111,244,10,7,224,
-44,4,192,120,124,183,224,48,20,254,182,3,2,49,52,51,254,183,13,0,
-39,227,110,1,160,45,129,200,223,10,145,230,224,9,1,118,149,65,214,177,
-16,0,67,114,176,68,177,160,54,160,34,224,63,11,96,55,197,168,226,37,
-16,170,208,72,97,64,162,225,198,1,100,102,129,158,0,90,225,144,6,226,
-240,0,227,74,1,160,2,97,41,195,31,103,3,224,80,4,225,115,16,128,
-48,99,217,229,90,1,228,87,5,224,66,0,224,192,6,132,232,224,192,70,
-226,98,0,164,223,224,190,22,192,46,65,151,193,170,224,191,18,192,14,131,
-41,227,226,2,128,209,133,156,128,65,100,188,224,188,0,169,41,229,141,0,
-156,140,229,185,2,1,53,56,162,119,199,97,242,89,0,226,136,5,167,94,
-224,89,1,254,8,2,225,33,6,192,114,224,227,1,234,228,1,224,11,0,
-160,9,160,133,128,207,128,19,229,68,17,225,69,8,225,52,1,224,208,0,
-138,23,0,82,144,39,229,152,25,224,81,8,224,225,2,96,197,225,55,1,
-64,15,136,183,227,172,8,110,40,129,54,1,95,51,111,30,160,24,224,78,
-17,227,250,18,224,77,18,165,196,225,204,3,162,197,81,148,192,114,129,21,
-198,108,224,13,19,224,156,1,226,220,1,224,35,1,128,17,128,243,1,52,
-55,224,164,19,133,162,192,127,96,11,136,205,0,55,232,205,1,128,83,0,
-83,224,176,11,224,177,65,162,128,96,158,224,177,38,0,56,130,244,0,56,
-162,232,160,21,97,111,0,58,98,159,237,179,2,224,195,17,169,129,128,1,
-231,115,0,192,8,0,58,96,94,224,72,33,224,234,1,224,86,1,226,57,
-0,224,5,1,0,85,224,61,2,229,184,4,96,49,234,30,0,234,39,1,
-225,57,0,224,167,5,160,58,129,26,74,188,227,122,1,96,16,224,15,0,
-192,224,224,168,0,224,119,34,192,35,225,39,19,128,26,228,241,4,192,24,
-129,69,137,237,228,97,1,227,5,16,225,143,2,224,124,3,224,79,0,224,
-103,17,0,58,98,188,224,101,34,226,154,3,225,181,2,225,46,6,160,67,
-224,24,3,192,152,225,150,76,224,98,10,225,129,59,67,223,6,10,65,32,
-35,50,32,58,99,76,146,137,228,233,2,224,110,3,166,15,160,13,132,81,
-160,5,135,62,224,225,1,224,51,1,236,43,0,72,21,171,109,231,77,14,
-231,101,17,224,128,3,192,208,170,4,102,19,230,245,8,68,235,231,2,6,
-134,250,228,44,0,0,73,100,16,65,12,212,69,193,110,145,190,64,168,225,
-25,0,136,107,225,147,5,224,13,13,225,248,3,227,237,0,64,8,168,2,
-0,58,96,174,168,184,81,140,2,75,50,32,128,153,83,144,192,243,0,58,
-96,165,115,74,0,57,160,248,106,1,120,176,215,192,182,210,214,217,128,24,
-64,11,183,1,224,24,11,160,49,151,33,1,95,49,88,239,139,165,0,58,
-96,6,242,248,12,224,200,6,1,95,51,158,74,128,166,250,79,0,64,54,
-128,10,108,116,0,54,247,66,0,111,39,117,201,64,65,251,230,4,67,68,
-145,150,0,58,111,123,214,178,1,95,49,93,17,143,175,1,95,51,80,22,
-150,153,128,17,0,58,96,6,180,196,2,95,51,53,146,92,64,37,161,163,
-127,195,0,51,111,182,1,51,54,96,106,66,30,143,154,236,228,0,80,202,
-116,62,129,115,128,180,129,154,193,46,86,245,97,41,0,58,112,255,224,206,
-22,97,158,65,229,66,89,64,50,251,120,3,113,118,180,237,253,82,1,143,
-165,0,50,64,149,0,53,64,81,0,58,114,15,13,10,65,32,94,109,100,
-53,66,70,73,76,69,32,58,96,25,228,190,2,64,241,128,49,160,217,216,
-107,0,51,81,11,64,66,205,238,112,0,76,54,254,173,4,1,64,35,125,
-115,64,164,0,35,141,48,185,184,96,63,225,85,7,64,25,246,6,3,0,
-58,96,24,128,37,0,51,163,166,224,1,11,233,136,2,194,42,64,175,160,
-199,121,164,180,28,154,67,201,11,164,50,247,97,3,119,8,190,183,164,11,
-239,191,2,115,162,99,209,226,93,8,64,14,98,219,235,125,0,65,8,112,
-60,242,66,7,1,79,32,97,11,192,181,0,58,96,82,225,239,7,98,68,
-192,152,225,252,8,128,100,0,58,114,177,226,135,10,152,105,226,135,10,84,
-166,214,129,161,55,0,58,96,27,239,129,12,66,154,196,224,97,7,133,111,
-175,111,189,132,251,149,3,128,169,239,97,1,230,56,5,229,221,2,140,8,
-64,107,64,79,239,79,3,160,73,98,214,64,155,215,228,64,220,64,113,113,
-167,0,90,145,174,1,90,32,160,58,198,100,224,28,6,73,205,224,28,16,
-76,196,224,28,16,107,95,224,29,16,0,50,112,215,224,29,0,1,95,53,
-84,88,144,114,0,54,68,56,96,10,0,58,96,6,224,187,1,115,55,95,
-42,128,56,2,95,51,50,88,255,96,161,159,116,96,16,128,149,224,16,2,
-160,137,224,17,2,160,125,128,17,128,122,96,80,128,122,131,150,64,6,224,
-122,1,91,208,0,51,95,140,1,95,51,95,160,1,95,51,95,186,1,95,
-51,95,215,2,95,51,52,66,240,128,70,64,82,160,70,64,10,0,58,96,
-6,8,10,65,32,98,115,62,61,32,58,96,41,128,13,64,12,131,96,2,
-98,115,60,96,26,130,193,2,98,115,60,64,12,130,148,4,98,115,99,109,
-112,64,14,228,140,0,167,174,231,240,1,98,213,96,145,95,166,231,209,9,
-64,143,68,145,1,95,51,131,72,1,51,51,164,67,69,48,0,58,65,77,
-64,89,112,138,0,58,96,19,123,146,128,13,129,124,112,185,0,58,96,62,
-244,3,4,228,54,4,0,58,96,126,199,0,226,9,6,130,235,99,119,230,
-197,1,98,251,0,58,96,6,160,54,161,173,128,45,167,252,64,17,119,26,
-160,17,0,58,96,71,244,153,1,190,188,160,62,90,55,0,51,94,144,0,
-58,96,46,97,65,0,47,65,92,190,164,2,98,115,61,64,13,64,39,154,
-148,64,95,64,10,85,219,81,159,0,75,170,37,0,58,99,255,103,93,138,
-59,131,163,228,161,0,1,64,95,96,111,130,41,190,19,228,121,1,228,105,
-3,0,83,179,214,96,40,161,34,120,227,0,48,133,19,228,175,2,244,56,
-0,252,86,3,0,51,102,208,105,141,68,138,191,42,65,25,192,69,64,11,
-66,224,118,235,0,58,96,6,165,9,64,85,1,95,51,90,83,0,58,64,
-34,225,190,1,164,181,190,48,166,26,192,20,168,86,65,115,93,162,231,66,
-19,101,67,1,95,49,64,42,183,147,224,208,36,0,90,224,208,3,248,90,
-1,1,95,50,120,218,64,10,0,58,96,6,193,135,224,92,5,203,93,225,
-44,15,224,171,6,185,245,96,107,64,106,158,150,96,6,169,16,190,130,224,
-85,13,103,101,224,77,2,0,58,122,252,233,63,1,190,127,115,213,0,52,
-231,100,30,0,58,123,233,96,221,1,48,57,184,151,160,5,119,31,224,11,
-0,0,51,96,97,163,41,0,51,97,111,131,243,224,5,1,0,58,96,37,
-166,200,170,191,0,58,64,42,160,51,0,48,64,224,129,218,163,222,190,49,
-129,40,235,8,23,0,58,106,68,254,96,4,3,46,109,104,115,121,181,94,
-94,124,80,140,140,232,11,15,131,71,232,70,6,130,29,253,25,0,187,50,
-167,138,64,161,163,112,1,95,51,94,126,128,136,189,147,224,105,6,89,171,
-160,105,224,132,3,1,95,51,94,50,225,211,7,249,197,1,233,107,6,0,
-49,67,19,107,113,224,42,2,224,159,4,100,99,0,48,65,130,94,208,160,
-32,224,109,2,93,187,172,220,224,213,6,226,62,3,96,200,130,50,96,188,
-104,115,127,75,96,65,68,157,14,79,46,100,101,115,101,114,105,97,108,105,
-122,101,32,58,96,29,74,106,20,97,100,100,95,108,122,55,55,95,100,101,
-99,111,109,112,114,101,115,115,111,114,64,31,193,255,0,83,66,145,0,64,
-172,14,243,72,2,170,200,133,72,244,38,3,225,25,3,129,146,202,186,224,
-215,0,0,50,157,234,224,53,2,224,224,5,88,196,65,55,1,50,56,209,
-199,0,58,65,36,194,18,235,66,1,161,27,224,88,1,65,80,168,235,224,
-80,1,107,38,0,51,95,218,1,95,49,105,119,227,122,5,65,210,65,10,
-5,117,110,103,101,116,98,64,251,235,173,11,224,215,3,1,95,50,95,202,
-235,92,3,106,132,0,95,70,138,66,137,141,210,228,48,3,2,95,50,57,
-96,211,3,95,50,48,50,226,245,2,12,104,71,101,116,67,104,97,114,58,
-32,69,79,70,190,90,0,58,96,196,101,217,3,52,52,32,58,96,56,64,
-158,128,156,96,121,101,81,3,51,50,32,79,67,19,0,50,74,192,1,95,
-50,66,113,133,116,96,174,239,202,0,228,122,2,0,50,78,124,202,80,0,
-80,229,140,0,64,146,128,173,253,89,15,22,111,112,101,110,66,105,110,97,
-114,121,70,105,108,101,58,32,99,97,110,110,111,116,32,64,22,0,32,253,
-99,3,1,49,51,66,251,140,154,195,243,225,54,4,115,177,197,200,99,97,
-99,142,0,50,151,61,64,186,130,174,227,5,4,0,50,90,145,138,188,225,
-211,2,99,110,99,120,224,5,0,220,207,66,176,64,3,228,31,1,142,103,
-225,124,6,20,72,97,110,100,108,101,32,97,108,114,101,97,100,121,32,99,
-108,111,115,101,100,161,132,227,167,6,66,144,100,128,67,175,0,50,189,133,
-99,106,73,184,0,50,93,88,96,189,131,84,1,75,51,104,78,96,22,99,
-146,104,185,99,66,96,51,130,212,0,58,96,60,163,178,78,46,80,15,0,
-58,96,29,65,238,96,142,97,240,221,20,3,51,49,32,58,96,129,231,121,
-0,3,95,50,55,57,64,149,0,55,112,75,128,84,188,0,7,116,111,70,
-117,110,80,116,114,64,50,198,90,80,99,195,123,0,58,97,85,101,191,134,
-74,0,58,100,237,226,54,16,65,177,229,113,10,225,227,8,66,83,81,122,
-96,36,0,50,114,109,193,246,231,69,0,229,140,5,226,15,18,64,148,217,
-232,0,67,64,126,98,237,1,95,50,105,253,224,6,1,68,232,96,50,160,
-206,200,125,96,45,100,196,228,39,8,130,16,64,20,225,233,6,129,80,192,
-219,224,55,8,75,101,224,200,1,228,69,1,130,131,1,95,50,75,146,160,
-184,129,199,14,73,79,46,112,101,114,102,111,114,109,73,79,32,94,38,161,
-213,64,31,129,214,6,102,112,102,105,110,32,58,64,119,128,14,2,110,101,
-119,64,14,163,244,69,158,144,9,97,68,192,18,3,117,116,102,56,64,18,
-129,194,97,115,71,26,98,64,178,186,0,67,64,31,161,60,229,149,6,160,
-213,100,219,0,49,105,25,224,17,2,64,215,64,19,161,113,239,37,4,0,
-49,72,53,97,91,224,23,7,0,57,207,62,224,24,5,68,172,224,23,8,
-227,129,1,1,119,43,163,110,65,120,103,42,229,83,3,0,50,71,155,67,
-180,138,43,229,76,2,203,54,226,141,7,0,58,98,170,65,36,0,102,100,
-155,0,58,96,85,207,95,233,73,14,233,71,6,1,58,50,211,10,82,139,
-83,10,239,38,2,224,2,34,0,95,206,141,224,0,3,130,56,224,1,21,
-114,22,1,51,55,228,168,2,5,70,108,97,103,115,123,193,42,224,0,6,
-231,67,2,224,2,33,96,157,224,106,11,7,118,101,114,98,111,115,101,61,
-229,213,0,64,33,79,243,196,96,224,0,6,224,206,33,81,100,194,61,224,
-0,8,224,196,41,224,193,16,4,114,117,110,73,116,224,191,4,0,50,84,
-48,224,191,13,224,188,59,224,187,38,224,184,16,5,109,104,115,100,105,114,
-225,121,5,231,79,1,224,191,12,224,188,56,224,187,35,224,184,16,4,112,
-97,116,104,115,224,183,10,232,12,2,224,189,11,224,186,53,224,185,32,224,
-182,16,4,111,117,116,112,117,226,41,5,225,111,21,224,174,50,224,173,29,
-224,170,16,6,108,111,97,100,105,110,103,226,213,27,224,162,47,224,161,26,
-227,114,17,6,101,97,100,67,97,99,104,228,54,5,224,160,13,224,157,44,
-224,156,23,224,153,16,4,119,114,105,116,101,224,154,30,224,151,41,224,150,
-20,224,147,16,6,117,115,101,84,105,99,107,227,49,5,224,145,11,224,142,
-38,224,141,17,224,138,16,4,100,111,67,80,80,224,135,23,224,132,35,224,
-131,14,224,128,16,5,99,112,112,65,114,103,228,60,35,224,139,32,224,138,
-11,224,135,17,224,133,37,224,130,29,224,129,8,224,126,17,175,121,225,138,
-20,224,114,26,224,113,5,224,110,16,6,98,117,105,108,100,80,107,228,79,
-7,82,52,224,240,12,224,119,23,224,118,2,224,115,16,3,108,105,115,116,
-224,114,33,224,111,20,192,110,224,107,16,6,112,107,103,80,97,116,104,225,
-207,29,224,104,17,96,103,224,100,16,6,105,110,115,116,97,108,108,224,211,
-9,225,181,1,224,88,14,224,77,11,4,116,97,114,103,101,230,140,35,224,
-0,13,192,108,0,49,86,28,193,47,2,95,49,50,76,223,186,23,93,73,
-128,11,0,58,96,6,77,241,109,4,74,238,97,13,125,0,224,156,3,6,
-78,111,116,104,105,110,103,128,156,237,21,1,0,50,93,180,110,188,2,56,
-32,95,78,192,1,64,35,84,19,225,83,6,224,70,1,4,74,117,115,116,
-32,160,68,75,227,76,109,192,49,65,20,64,166,0,64,98,20,160,15,87,
-103,160,15,0,58,96,6,245,18,3,128,221,0,58,64,124,64,23,111,248,
-96,119,4,49,48,50,32,35,88,227,186,38,160,16,207,116,254,105,3,0,
-75,224,235,9,3,70,97,108,115,84,131,161,75,224,24,1,2,84,114,117,
-128,23,225,80,0,158,160,129,80,158,154,96,6,189,125,90,38,97,20,1,
-95,50,94,108,1,58,50,190,162,248,242,5,236,144,26,160,182,215,136,238,
-142,1,0,95,119,37,96,244,245,40,7,0,53,226,131,0,129,171,175,211,
-241,61,1,225,197,3,161,196,176,129,96,51,129,69,64,186,109,149,195,114,
-238,66,3,253,136,1,243,104,3,224,72,4,244,162,6,0,50,255,96,1,
-243,5,6,1,101,97,145,119,0,75,97,39,141,178,1,65,46,103,188,1,
-32,58,96,80,129,249,0,52,224,2,2,128,85,1,58,50,191,90,162,23,
-128,2,225,71,7,1,58,50,191,89,206,7,224,38,1,224,36,0,1,58,
-50,191,106,224,151,1,7,118,55,46,48,92,49,48,38,86,146,0,50,191,
-88,3,95,50,53,50,64,4,95,51,0,50,191,51,3,95,50,53,52,67,
-117,0,48,143,12,128,6,0,53,96,5,0,48,227,134,0,0,58,96,51,
-128,45,2,51,32,58,64,50,128,145,0,58,64,15,128,10,65,142,0,53,
-99,245,254,154,3,0,54,192,67,127,210,179,105,77,147,128,85,208,227,64,
-60,148,221,0,50,94,85,0,58,64,73,128,25,111,198,66,138,129,244,129,
-219,0,64,126,94,195,239,96,30,229,200,2,160,35,96,17,192,11,128,110,
-210,141,90,49,127,78,128,60,0,58,96,123,146,167,81,66,93,107,1,58,
-50,222,45,1,50,52,82,18,64,201,145,181,225,99,1,5,115,116,100,111,
-117,116,65,253,0,58,96,51,145,50,128,21,1,32,58,96,50,248,86,0,
-148,173,131,218,241,156,35,178,91,69,129,96,195,189,69,64,38,216,219,96,
-28,181,243,120,100,2,52,49,32,117,197,2,66,32,95,120,10,93,80,64,
-38,129,170,0,73,64,154,194,167,4,97,108,108,111,99,64,16,176,55,0,
-51,65,222,189,100,244,182,8,1,95,50,93,22,67,39,93,16,98,44,1,
-64,58,65,50,128,145,2,95,50,49,64,227,128,207,64,33,0,58,96,47,
-96,153,227,174,0,1,95,50,125,157,64,13,129,128,97,246,0,58,96,47,
-80,252,1,112,117,118,41,189,99,246,41,0,65,120,246,41,6,189,102,1,
-75,50,244,4,0,189,65,84,42,243,70,0,189,36,88,11,0,66,187,151,
-0,90,160,7,128,9,160,10,245,235,5,247,227,6,225,7,6,177,36,0,
-50,91,168,92,36,132,59,101,87,93,69,113,247,228,35,3,3,66,97,100,
-32,181,176,2,109,111,100,197,137,248,128,1,64,166,213,78,100,151,120,175,
-85,113,244,206,6,134,19,1,50,50,152,40,97,67,116,139,228,170,5,189,
-240,1,95,55,87,129,189,239,5,102,112,50,112,32,58,96,57,64,26,94,
-154,150,115,224,5,3,70,136,0,39,128,7,0,67,149,48,97,161,65,196,
-224,6,13,224,42,2,64,15,128,48,224,42,30,160,28,224,49,10,224,42,
-15,224,49,10,224,42,22,224,49,3,191,109,129,161,0,58,96,6,227,156,
-2,116,73,65,90,0,54,66,182,190,242,96,24,67,65,83,210,64,22,0,
-54,224,22,1,103,22,190,198,136,48,0,50,179,223,88,6,0,58,96,32,
-228,107,0,0,50,91,75,128,142,0,58,96,38,3,10,65,32,82,161,95,
-0,58,96,28,160,138,0,89,228,232,0,92,107,102,165,64,32,129,208,225,
-145,5,0,58,96,179,96,55,0,85,131,148,126,228,118,28,0,58,66,154,
-64,27,151,55,230,43,2,0,58,96,37,183,184,167,105,0,58,98,238,224,
-129,2,251,41,2,0,80,96,90,125,92,150,118,231,61,4,128,160,135,92,
-2,64,64,64,99,78,0,58,68,5,194,100,1,95,50,85,117,161,121,93,
-226,64,30,129,52,7,115,101,113,117,97,108,32,58,96,33,64,46,232,25,
-0,1,49,49,227,59,2,5,77,72,83,68,73,82,99,50,71,123,93,198,
-226,239,2,1,58,50,189,235,224,19,0,230,116,2,0,58,96,45,253,32,
-9,118,34,1,95,50,92,93,245,179,21,253,120,6,0,50,100,240,245,185,
-11,190,78,3,95,50,48,57,64,208,129,151,13,112,101,101,107,67,65,83,
-116,114,105,110,103,32,58,64,26,96,35,1,57,51,103,89,0,58,96,102,
-227,139,0,165,246,70,151,73,107,64,133,152,126,128,6,129,64,96,159,0,
-58,96,6,121,37,1,73,110,70,102,189,60,91,99,2,101,110,118,64,16,
-167,171,233,106,3,225,2,6,233,100,0,166,152,225,81,1,1,95,50,157,
-204,1,58,50,189,101,232,241,8,3,116,97,105,108,97,143,122,39,253,107,
-0,1,95,50,65,238,92,126,64,67,99,47,188,246,70,112,188,167,2,95,
-51,48,98,198,92,23,2,95,49,57,156,207,0,54,97,123,139,225,121,126,
-192,11,67,84,96,11,0,58,96,6,97,230,0,50,72,93,1,52,50,64,
-67,128,61,1,51,54,224,155,2,6,101,114,114,111,114,58,32,203,3,0,
-48,192,38,0,58,96,6,96,128,2,49,32,75,64,21,0,55,72,56,235,
-35,3,8,67,111,110,116,114,111,108,46,69,64,66,64,64,224,26,1,96,
-18,2,67,97,108,128,246,134,88,96,194,108,127,163,11,198,85,64,7,133,
-183,71,159,166,42,69,222,138,111,97,109,127,4,103,218,168,159,169,29,92,
-252,64,0,92,0,96,99,218,253,166,225,96,32,97,109,232,254,8,163,140,
-232,241,2,0,58,100,137,96,162,0,85,225,195,7,16,109,100,53,67,111,
-109,98,105,110,101,58,32,101,109,112,116,121,134,147,64,145,68,120,68,48,
-160,171,122,167,222,184,3,66,32,95,56,65,127,65,205,1,64,89,96,127,
-64,151,103,31,68,56,228,27,1,196,190,233,127,2,224,255,3,96,19,96,
-54,72,221,0,49,124,131,104,190,0,49,158,132,1,64,95,90,30,1,95,
-49,91,254,192,0,0,58,97,54,66,233,9,109,100,53,65,114,114,97,121,
-32,58,96,57,130,126,194,237,0,55,74,97,64,160,1,95,49,159,138,102,
-212,231,189,2,253,159,4,1,49,57,66,35,224,46,2,163,138,251,85,1,
-123,206,249,193,5,189,4,64,145,226,225,0,96,20,186,175,65,0,137,60,
-67,107,0,53,238,97,0,141,215,153,100,224,106,0,225,58,3,192,25,168,
-147,140,249,64,67,1,52,55,205,144,2,49,49,53,129,34,2,95,49,56,
-132,73,128,0,229,150,3,133,191,192,69,232,62,1,64,51,110,160,224,44,
-2,96,95,0,66,165,229,0,52,161,125,106,61,133,43,193,190,232,100,3,
-224,43,10,194,134,229,28,2,96,16,0,58,65,96,130,195,105,168,236,221,
-5,0,58,96,143,99,215,0,48,65,182,93,214,226,3,0,129,253,0,35,
-103,194,78,248,0,58,97,160,7,10,65,32,35,49,54,32,58,96,28,128,
-57,0,52,67,6,76,74,162,58,96,69,0,49,69,5,2,95,49,48,67,
-231,64,16,64,11,69,207,160,11,0,49,65,246,160,11,0,56,67,122,192,
-11,0,51,96,104,0,54,131,56,135,7,169,33,137,36,66,62,160,2,225,
-73,6,97,185,128,50,161,252,165,210,0,64,71,161,64,242,1,95,49,70,
-144,162,77,126,151,0,85,95,108,224,23,0,199,120,1,32,95,78,71,224,
-29,7,224,53,16,4,64,64,83,32,73,95,165,129,86,192,68,224,151,0,
-67,139,0,83,162,93,128,69,113,44,224,69,5,128,161,99,132,66,98,224,
-31,7,130,109,162,247,140,148,67,37,224,40,9,64,0,128,16,96,52,73,
-38,65,96,162,2,240,254,4,96,29,100,159,130,246,113,202,128,163,162,246,
-78,183,227,53,1,203,15,64,34,1,64,95,77,204,167,53,68,82,1,55,
-57,228,222,2,27,92,51,52,38,108,105,98,47,68,97,116,97,47,73,110,
-116,101,103,101,114,95,84,121,112,101,46,104,115,64,27,4,44,50,56,58,
-49,242,18,0,103,234,98,15,96,223,0,85,192,187,192,18,239,29,0,128,
-5,0,50,244,61,2,224,60,3,161,70,0,64,69,25,228,5,0,69,226,
-64,169,128,197,144,236,99,83,99,91,66,162,82,3,171,217,1,67,32,130,
-187,128,18,227,84,1,3,64,95,52,52,131,234,0,58,98,160,108,227,0,
-58,96,113,77,196,64,10,202,33,0,58,64,140,165,17,71,144,0,49,95,
-121,71,75,74,49,65,36,196,174,191,164,199,144,80,63,1,95,49,80,105,
-167,144,224,56,0,67,28,192,11,97,104,104,132,96,6,128,102,79,211,226,
-5,2,95,183,64,31,0,54,160,31,0,85,193,166,94,222,133,243,0,80,
-128,47,131,18,96,47,224,15,8,64,65,242,115,3,167,116,64,28,174,79,
-133,214,169,50,64,147,98,186,65,58,192,73,115,124,224,21,2,128,159,147,
-162,169,187,198,144,137,224,0,49,127,199,0,58,96,169,97,27,0,56,65,
-40,129,101,0,90,64,200,0,58,96,40,161,126,180,128,65,76,243,223,0,
-0,73,64,35,179,213,105,216,237,207,6,224,14,5,192,189,255,109,1,137,
-232,128,207,0,58,96,6,203,72,160,42,69,37,106,32,224,42,0,115,188,
-96,6,192,42,83,110,1,95,49,115,184,96,43,4,10,65,32,47,61,64,
-165,163,110,71,103,0,57,64,130,205,240,204,88,0,75,64,80,141,87,129,
-169,102,31,0,85,224,20,1,99,124,235,251,5,176,176,80,4,64,147,149,
-18,196,248,96,176,160,77,96,175,192,17,0,58,96,6,167,46,233,41,3,
-64,9,192,59,237,232,2,0,58,96,60,101,238,1,54,48,64,202,226,239,
-1,179,67,181,19,160,141,233,216,3,9,110,111,32,109,97,116,99,104,32,
-97,213,193,96,32,96,7,79,179,194,245,106,45,96,11,0,58,96,6,234,
-45,29,8,120,99,101,112,116,105,111,110,46,68,102,2,114,110,97,106,35,
-224,39,1,2,80,97,116,64,22,0,77,64,128,0,70,203,56,162,204,179,
-179,134,87,177,108,0,49,112,121,96,197,98,152,78,27,224,15,4,66,0,
-248,9,2,201,101,145,75,0,51,64,34,243,127,13,170,85,98,160,69,86,
-97,50,1,53,53,130,177,180,11,2,85,32,58,64,18,226,202,2,179,232,
-161,92,77,44,162,136,81,106,0,35,97,244,215,45,1,53,32,128,15,99,
-113,138,43,97,102,68,232,71,156,96,134,224,39,3,161,135,225,43,1,6,
-39,92,57,50,38,39,39,165,151,193,156,169,126,224,99,0,100,30,138,123,
-224,17,3,139,111,233,51,3,224,168,1,0,64,160,35,134,62,64,156,164,
-146,98,6,128,158,130,163,247,247,8,64,146,70,49,160,148,64,0,0,58,
-96,147,226,187,0,175,48,231,109,6,166,166,1,95,49,83,88,160,108,0,
-54,85,103,74,49,129,145,205,244,65,186,165,70,181,26,179,20,112,220,208,
-218,0,90,65,11,102,68,166,21,224,163,5,224,160,0,2,67,32,79,249,
-171,1,67,226,138,9,114,196,225,22,7,96,0,5,79,32,80,32,35,55,
-244,214,3,64,79,0,97,96,79,96,27,0,56,224,27,7,0,98,224,27,
-1,71,242,224,28,5,0,102,224,28,2,0,48,224,28,7,0,110,224,28,
-2,245,73,4,64,28,109,116,128,28,0,57,224,27,7,117,100,160,56,0,
-49,224,28,7,0,118,224,56,2,224,143,8,64,3,227,116,1,225,193,0,
-132,77,69,198,182,105,102,76,66,152,5,95,49,52,48,32,35,97,135,65,
-45,85,11,0,35,67,48,64,53,196,106,3,52,53,32,58,97,163,195,27,
-174,146,193,189,90,11,132,79,96,17,0,58,96,6,154,172,72,16,235,205,
-0,207,130,0,49,118,93,69,207,144,81,96,19,121,249,112,11,96,30,64,
-69,131,183,64,67,226,230,2,249,172,1,192,64,149,153,226,96,8,64,69,
-104,118,203,106,192,40,226,52,3,224,10,1,96,50,106,41,235,237,1,96,
-250,129,28,128,74,70,153,224,74,4,0,58,96,102,5,10,65,32,111,114,
-100,65,36,132,78,2,99,104,114,64,12,216,54,248,191,4,0,58,64,193,
-64,23,78,115,192,175,67,254,134,40,182,170,225,159,6,111,80,225,159,0,
-123,142,64,43,129,203,0,60,70,237,182,196,198,189,0,58,96,60,161,243,
-64,16,97,186,0,51,76,73,182,122,131,203,65,52,82,244,238,187,2,0,
-58,96,145,140,107,0,50,64,47,177,95,103,150,64,136,1,95,49,79,37,
-0,58,99,84,199,108,182,119,0,61,96,11,160,194,128,196,81,142,67,205,
-81,131,131,248,130,46,231,57,0,149,211,96,15,0,58,96,6,201,103,105,
-163,85,194,0,58,96,35,147,197,156,138,82,81,96,26,96,43,199,216,194,
-70,110,176,160,10,231,144,0,199,186,224,32,0,236,59,0,228,203,0,244,
-142,1,97,20,224,65,4,224,64,5,184,159,180,178,129,214,181,98,171,186,
-224,169,2,123,43,96,246,240,220,4,181,94,73,190,73,170,0,58,97,33,
-180,150,216,235,97,61,204,75,128,36,240,1,0,240,174,0,119,156,103,16,
-115,233,208,113,1,95,49,151,172,0,58,103,85,176,72,211,159,96,27,248,
-170,1,105,66,85,68,176,62,64,222,160,26,117,203,112,21,89,93,96,78,
-161,140,128,39,1,95,49,85,98,64,214,192,31,181,140,2,110,101,119,212,
-15,4,76,101,110,32,58,96,39,224,223,7,181,138,75,212,181,71,173,54,
-109,82,0,58,109,155,245,216,4,239,77,3,181,74,220,79,160,49,129,32,
-253,187,5,229,13,0,0,58,109,182,160,52,64,13,229,14,0,128,2,70,
-206,65,248,111,210,84,195,0,58,79,59,160,48,239,209,11,180,231,233,206,
-3,84,161,84,44,79,129,224,27,11,96,120,180,213,252,229,0,128,188,180,
-220,4,114,101,109,32,58,109,47,161,47,224,1,1,113,47,64,0,224,20,
-11,224,17,8,224,14,5,224,11,2,192,8,96,239,128,122,225,76,1,225,
-55,12,180,249,0,79,64,152,170,156,1,56,53,74,46,114,180,192,7,1,
-95,56,68,37,115,48,1,95,57,71,121,160,10,66,148,160,10,118,102,128,
-10,100,223,84,235,0,58,96,17,123,16,3,111,107,101,87,133,76,181,4,
-0,94,86,89,128,18,180,213,171,169,0,95,84,47,1,64,95,120,128,180,
-158,193,78,130,61,180,79,224,46,0,111,217,128,46,129,103,65,5,86,161,
-100,136,69,150,0,95,116,170,0,58,180,73,182,114,179,135,6,116,111,80,
-116,114,32,58,179,130,225,184,5,179,24,175,216,129,239,79,182,64,96,68,
-153,1,64,95,82,23,221,212,134,230,109,132,106,161,179,75,240,48,7,178,
-74,201,109,0,95,82,15,65,181,128,63,1,67,32,96,65,0,95,109,196,
-1,64,58,178,89,230,108,7,178,67,79,104,114,85,72,222,0,58,178,75,
-5,113,117,111,116,32,58,177,252,226,58,1,226,62,2,226,101,72,177,26,
-97,30,165,116,243,175,1,0,95,112,144,132,128,224,20,0,164,133,244,160,
-6,243,158,3,0,58,177,87,85,173,68,171,70,248,0,58,176,55,6,94,
-102,114,101,101,32,58,64,23,227,229,0,224,91,5,85,64,149,126,210,244,
-245,61,4,190,144,80,101,224,116,3,0,58,176,129,227,218,1,64,165,134,
-63,96,244,0,39,79,225,244,29,1,186,76,160,99,244,183,1,166,63,193,
-64,224,120,3,1,64,95,80,190,128,164,134,80,80,155,244,175,3,137,80,
-0,58,177,1,3,85,32,75,51,227,181,5,0,58,240,255,1,176,254,130,
-180,66,225,176,207,76,88,0,83,100,244,189,128,128,188,76,248,144,152,64,
-218,224,122,11,96,121,176,244,229,106,3,229,24,0,176,206,4,115,101,113,
-32,58,176,198,96,225,72,167,162,197,214,252,226,202,7,208,143,247,195,5,
-8,117,110,100,101,102,105,110,101,100,74,222,0,58,176,166,229,229,15,176,
-183,0,95,74,166,99,215,71,176,99,55,0,95,73,175,234,152,12,78,47,
-234,148,2,157,106,2,67,32,95,80,132,224,37,1,234,117,2,64,37,96,
-19,96,10,0,95,81,21,0,58,177,37,0,85,231,88,0,0,53,80,111,
-64,32,210,212,161,65,0,80,96,12,97,123,230,121,1,132,29,96,175,1,
-53,32,179,23,64,70,153,100,132,197,64,30,131,56,224,35,1,224,55,11,
-193,10,177,172,83,150,132,1,113,47,224,13,0,105,208,225,105,5,180,65,
-14,58,32,117,110,115,117,112,112,111,114,116,101,100,32,119,69,128,2,115,
-105,122,159,206,3,35,51,50,55,96,102,8,35,50,49,52,55,52,56,51,
-54,75,36,0,58,178,10,244,16,2,235,183,0,64,117,244,219,1,66,246,
-212,3,81,179,129,20,65,146,0,51,225,33,0,129,143,0,54,148,9,98,
-111,178,32,0,105,91,246,178,1,0,115,75,105,177,245,74,124,177,244,230,
-197,15,177,134,227,43,0,165,37,209,109,1,52,56,183,89,78,242,0,95,
-80,13,0,95,80,32,0,95,80,48,117,157,1,95,53,82,112,129,238,65,
-65,64,9,0,58,64,5,176,216,241,219,3,87,48,89,13,240,136,0,177,
-186,224,29,1,224,49,1,224,39,4,177,141,227,208,10,177,66,3,62,61,
-32,58,176,212,2,62,32,58,176,205,76,5,176,205,2,60,32,58,176,201,
-5,105,99,109,112,32,58,175,192,107,193,77,212,0,95,78,4,0,58,174,
-20,75,190,174,20,65,64,173,244,2,80,32,58,173,240,196,155,164,216,193,
-74,224,20,11,224,17,8,224,14,5,224,11,2,192,8,230,24,0,174,49,
-233,100,13,174,8,4,110,101,103,32,58,173,110,2,42,32,58,173,107,2,
-45,32,58,173,104,2,43,32,58,173,90,224,156,68,0,58,173,146,224,155,
-2,193,143,173,128,171,9,2,66,32,95,77,18,0,95,113,102,0,66,107,
-14,102,140,1,64,58,173,156,117,97,173,151,2,73,32,58,173,150,64,54,
-96,42,3,54,32,64,58,173,156,64,29,128,232,64,9,128,232,8,94,109,
-97,108,108,111,99,32,58,173,119,13,73,79,46,112,101,114,102,111,114,109,
-73,79,32,58,173,128,224,187,2,0,58,173,135,2,85,32,58,237,85,0,
-224,227,12,0,58,173,93,64,19,0,95,76,166,1,64,95,76,203,0,58,
-173,95,131,75,136,231,172,227,6,114,97,105,115,101,32,58,172,210,94,240,
-128,172,7,65,46,114,101,97,100,32,58,172,201,13,73,79,46,103,101,116,
-65,114,103,82,101,102,32,58,172,202,0,95,71,19,101,15,68,120,99,108,
-64,107,128,190,6,73,79,46,62,62,32,58,172,176,0,95,80,100,98,175,
-108,205,252,144,0,71,36,99,131,0,49,95,131,96,9,0,50,71,212,99,
-141,172,216,186,22,111,70,174,120,151,243,96,35,233,89,0,73,87,64,32,
-116,140,192,32,0,95,144,197,165,56,0,55,88,101,224,47,12,108,253,96,
-155,143,143,225,14,0,236,202,0,226,202,6,0,58,236,206,0,108,31,228,
-171,0,130,87,164,140,172,192,233,246,0,70,38,224,11,2,96,210,101,33,
-0,58,236,202,1,0,50,174,66,166,246,0,51,97,221,109,197,130,135,74,
-128,129,75,75,106,96,36,180,183,0,95,68,213,65,237,240,46,0,227,137,
-0,70,206,96,11,2,66,32,58,162,140,9,79,46,114,101,116,117,114,110,
-32,58,225,225,0,0,62,68,141,128,201,2,80,32,58,227,127,7,227,107,
-37,0,58,128,208,226,167,15,235,38,1,194,143,64,202,2,95,49,57,152,
-34,224,0,255,224,0,255,224,0,255,224,0,255,224,0,255,224,0,255,224,
-0,255,224,0,106,1,32,125,
-};
-unsigned char *combexpr = data;
-int combexprlen = 96208;
+122,76,90,49,15,134,1,0,26,118,55,46,48,10,50,48,52,51,10,65,
+32,95,48,32,95,50,51,32,64,95,50,48,57,32,64,66,224,15,2,6,
+49,56,32,64,64,66,32,224,18,4,16,55,32,64,64,64,83,39,32,66,
+32,64,66,39,32,67,32,83,64,50,6,83,32,67,39,32,83,39,128,10,
+9,64,95,49,50,50,32,95,50,50,48,64,10,28,52,55,32,95,49,52,
+57,32,64,102,114,111,109,85,84,70,56,32,34,45,45,118,101,114,115,105,
+111,110,34,64,75,14,64,64,67,39,66,32,85,32,95,50,54,32,95,50,
+53,64,101,1,49,50,96,52,224,57,9,8,77,105,99,114,111,72,115,44,
+32,160,64,0,32,96,65,128,47,2,50,54,49,224,58,19,16,44,32,99,
+111,109,98,105,110,97,116,111,114,32,102,105,108,101,224,67,6,2,50,54,
+50,128,141,3,64,90,32,75,128,9,2,83,39,32,64,154,2,64,67,32,
+224,209,25,6,110,117,109,101,114,105,99,224,217,6,2,66,32,80,128,211,
+128,157,224,91,2,129,87,65,46,96,101,64,5,1,95,55,64,197,1,51,
+32,96,120,65,13,65,139,5,50,50,52,32,95,50,64,59,0,67,64,19,
+3,52,32,64,35,96,72,64,26,193,47,64,12,224,247,16,6,102,108,97,
+103,115,32,61,128,229,3,64,95,49,49,96,140,0,57,192,133,0,67,128,
+125,161,231,5,83,32,95,50,55,48,64,27,128,146,224,23,4,96,119,224,
+23,10,97,55,65,40,0,66,66,21,224,184,0,8,55,53,32,64,85,32,
+75,32,65,160,106,0,67,66,44,0,39,65,64,1,56,57,64,98,128,121,
+0,80,96,9,64,192,1,57,57,65,250,8,52,54,49,32,95,52,54,50,
+32,224,193,1,11,99,111,109,109,97,110,100,45,108,105,110,101,64,197,2,
+35,48,32,96,3,3,64,64,64,75,65,149,0,48,64,244,2,57,57,52,
+224,210,0,64,19,0,49,96,173,96,100,98,217,1,49,54,128,255,1,50,
+48,97,97,1,85,32,193,137,64,162,193,147,128,45,128,152,3,95,50,48,
+52,64,100,162,234,2,32,95,52,97,137,1,48,51,98,3,98,44,64,34,
+97,153,97,16,128,60,129,205,1,95,49,64,38,227,8,3,64,149,2,51,
+56,49,192,13,6,79,32,35,52,54,32,64,128,120,2,95,49,52,64,188,
+3,67,39,32,79,129,58,65,216,0,48,67,140,224,13,6,192,7,224,55,
+5,96,0,9,58,50,48,52,50,32,64,10,65,32,65,103,224,1,15,7,
+83,32,95,49,56,56,56,32,65,62,2,95,49,50,128,97,1,79,32,224,
+141,3,128,133,98,242,0,55,226,71,3,3,47,108,105,98,98,67,128,123,
+224,24,1,3,111,117,116,46,67,90,195,138,96,168,224,6,20,96,181,224,
+6,0,160,20,0,54,65,150,224,6,0,224,27,3,224,106,1,6,100,101,
+102,97,117,108,116,64,105,64,239,0,49,96,239,2,66,32,89,97,118,97,
+165,0,83,194,81,65,133,4,67,32,64,64,80,99,177,97,38,227,104,0,
+64,23,195,126,132,182,227,223,25,163,208,224,69,53,0,118,224,69,60,0,
+113,224,69,60,0,114,224,69,60,0,108,224,69,60,1,67,82,224,70,61,
+0,87,224,70,61,224,69,60,0,84,224,69,60,3,88,67,80,80,224,72,
+60,0,122,224,69,60,0,81,224,69,3,195,112,198,12,128,85,232,2,30,
+0,111,224,73,0,64,58,0,82,96,66,229,117,2,197,109,1,50,52,64,
+64,231,154,0,224,117,56,2,112,116,99,224,120,21,128,97,224,126,0,0,
+53,224,126,0,102,224,165,21,4,95,49,57,51,53,101,211,0,79,197,195,
+224,157,14,161,88,64,14,64,30,128,33,192,25,64,10,193,128,224,10,1,
+224,208,9,0,49,64,134,1,35,52,64,113,192,183,0,66,137,121,225,192,
+3,232,170,4,128,50,1,49,48,192,51,165,16,64,34,160,49,69,38,102,
+94,96,247,0,67,230,223,0,71,190,198,223,198,95,232,181,2,224,197,84,
+192,162,224,197,15,128,49,225,177,21,224,190,1,225,177,4,0,52,96,68,
+225,176,6,224,206,109,168,154,224,206,14,226,249,14,224,170,110,137,53,224,
+170,23,99,18,224,170,9,224,176,1,192,102,160,168,224,13,0,224,171,24,
+224,41,1,160,57,224,16,0,2,66,32,90,224,16,5,169,188,224,192,4,
+0,54,76,192,160,37,226,50,17,0,56,226,50,13,0,53,108,235,226,50,
+8,224,219,127,0,55,73,41,160,37,224,219,69,226,98,99,0,56,139,200,
+128,36,226,97,8,108,25,192,202,0,57,228,152,2,77,8,224,180,91,229,
+87,13,0,57,111,4,229,86,36,236,54,3,229,86,125,224,196,0,128,48,
+225,121,6,226,70,5,224,189,2,226,70,5,64,73,229,85,10,192,113,128,
+125,225,29,1,224,201,5,0,67,224,201,62,0,55,228,165,20,226,67,3,
+0,51,112,34,226,67,10,227,98,13,160,139,237,132,0,65,49,239,107,19,
+7,85,110,107,110,111,119,110,32,79,115,1,58,32,136,104,205,73,224,53,
+7,4,79,32,35,49,48,161,54,238,190,4,224,0,2,193,239,65,2,97,
+62,129,253,112,30,64,83,64,91,0,56,65,199,224,130,1,0,46,136,223,
+224,34,20,137,123,224,25,11,0,97,233,28,0,129,230,175,154,128,72,225,
+228,2,228,113,19,233,50,36,129,92,227,43,7,0,50,225,165,2,0,48,
+161,220,224,39,11,114,43,224,39,26,231,74,1,224,39,21,224,186,1,224,
+39,11,0,39,224,40,1,232,100,2,224,20,1,231,5,1,160,61,224,108,
+21,224,46,8,224,39,14,233,143,3,224,39,16,2,49,56,56,229,30,3,
+224,79,19,230,17,1,224,39,21,224,79,2,3,54,50,32,95,82,22,64,
+102,192,9,2,55,55,32,146,137,224,64,5,0,83,224,64,11,65,58,1,
+55,53,128,57,83,105,0,51,210,197,227,179,2,101,56,111,214,0,48,111,
+214,6,95,52,50,53,32,75,32,81,158,131,251,224,1,17,108,200,224,0,
+4,224,47,38,224,44,35,224,41,32,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,
+192,8,96,5,100,97,0,56,233,130,0,224,0,5,0,58,130,33,225,233,
+3,0,90,224,145,4,224,1,11,225,233,255,224,29,11,224,26,17,224,23,
+14,224,20,11,224,17,8,224,14,5,224,11,2,192,8,96,5,225,231,17,
+65,230,0,56,225,230,5,224,119,3,170,231,225,198,22,225,248,255,224,29,
+13,224,26,17,224,23,14,225,173,11,65,167,0,55,225,167,15,236,141,6,
+224,1,15,225,164,255,224,29,11,224,26,17,224,23,14,224,20,11,227,102,
+12,65,185,0,54,227,97,17,227,99,1,225,191,255,224,32,15,224,29,20,
+224,26,17,225,148,10,65,146,0,53,225,146,19,225,148,2,225,149,255,224,
+32,15,224,29,20,225,123,9,65,122,0,52,225,122,21,128,1,225,128,1,
+225,131,214,225,35,6,65,32,0,51,225,32,27,192,1,225,40,4,64,0,
+224,46,21,225,44,11,224,130,2,64,126,156,167,224,126,26,224,122,6,224,
+40,17,128,1,225,165,100,225,86,4,64,213,156,141,225,84,28,225,82,7,
+224,43,19,64,1,224,216,56,224,172,3,64,171,237,98,6,224,71,15,224,
+167,5,224,37,15,192,1,227,36,141,226,254,5,0,58,148,71,224,252,21,
+224,246,2,224,28,9,224,1,5,228,24,179,224,35,26,224,32,23,229,127,
+8,65,95,235,238,18,224,1,11,228,95,8,224,85,2,64,78,234,149,10,
+64,50,224,86,23,225,153,246,224,29,20,224,26,17,224,23,14,224,20,11,
+224,17,8,224,14,5,224,11,2,238,29,15,65,221,0,54,226,44,25,226,
+32,3,224,31,11,224,1,3,225,245,214,225,73,7,65,65,234,104,12,97,
+51,224,80,13,224,1,1,225,44,214,224,32,23,224,29,20,224,26,17,224,
+23,14,224,20,11,224,17,8,224,14,5,227,23,14,65,212,138,194,90,125,
+153,34,152,149,1,50,50,117,122,248,67,0,151,71,120,23,4,95,48,32,
+95,50,92,17,2,95,49,57,126,234,152,43,85,85,128,9,224,32,0,215,
+150,1,52,48,87,22,153,193,96,14,5,51,32,95,53,54,57,182,211,0,
+48,117,189,1,56,50,149,166,119,239,0,80,64,138,249,9,2,249,7,17,
+11,67,97,110,110,111,116,32,102,105,110,100,32,216,81,2,66,32,85,218,
+15,3,32,95,55,55,192,173,1,51,52,96,97,2,95,50,48,124,145,224,
+10,4,88,77,1,50,32,97,15,138,177,64,126,1,50,49,128,58,224,245,
+9,0,50,64,20,120,151,87,50,0,50,118,133,96,92,224,40,4,1,50,
+48,65,68,161,3,224,135,0,192,216,0,53,64,12,217,178,4,79,32,35,
+53,56,248,173,0,224,124,5,224,46,2,225,7,17,0,32,224,253,0,0,
+89,124,26,64,73,128,121,3,67,39,32,89,151,24,187,39,161,168,117,53,
+89,227,115,87,2,95,49,48,215,38,1,67,39,89,56,64,189,0,49,186,
+157,224,113,12,3,46,112,107,103,128,115,249,99,3,97,208,89,44,129,223,
+0,64,161,246,65,88,139,139,188,199,160,145,120,235,187,159,250,1,0,88,
+54,1,52,56,97,247,160,6,0,49,87,199,65,10,123,73,160,21,64,83,
+139,9,122,130,120,188,90,231,129,153,225,174,3,155,155,96,38,225,134,0,
+225,192,2,97,110,193,194,219,150,1,50,49,120,143,1,50,49,158,251,226,
+142,30,22,103,101,116,68,105,114,101,99,116,111,114,121,67,111,110,116,101,
+110,116,115,58,32,99,130,164,3,111,112,101,110,225,166,0,129,150,154,208,
+0,66,64,5,226,55,3,0,49,99,171,219,147,65,44,65,201,0,83,97,
+167,224,156,12,224,243,6,2,50,48,49,97,125,224,24,9,0,49,124,103,
+219,114,225,246,3,226,168,8,65,57,64,28,160,250,0,49,162,144,225,149,
+0,100,86,190,95,65,139,139,233,10,94,99,95,100,95,110,97,109,101,32,
+58,128,133,64,19,6,114,101,97,100,100,105,114,96,18,137,179,0,75,224,
+151,5,2,51,53,53,156,108,227,38,13,253,9,19,64,107,221,1,125,126,
+125,120,0,56,128,170,224,83,46,6,118,101,114,115,105,111,110,224,86,2,
+1,50,53,91,68,1,50,48,66,96,224,86,48,13,99,111,109,112,105,108,
+101,114,58,32,109,104,115,45,128,91,1,95,53,66,130,224,81,47,6,100,
+101,112,101,110,100,115,224,168,2,0,53,65,225,123,35,2,48,32,85,99,
+242,253,23,0,97,26,224,78,10,1,79,32,126,126,131,198,128,233,129,220,
+0,56,70,28,130,26,226,25,3,96,151,224,131,1,15,101,120,112,111,115,
+101,100,45,109,111,100,117,108,101,115,58,162,225,166,11,227,112,3,0,85,
+100,23,128,211,224,79,17,4,111,116,104,101,114,224,77,7,192,60,128,144,
+229,30,1,0,95,193,38,64,8,229,29,24,64,36,130,32,1,52,52,223,
+201,96,0,66,152,139,253,128,182,0,66,224,163,7,227,30,0,228,48,9,
+8,39,32,95,49,51,52,32,95,54,64,13,1,95,50,124,114,130,37,229,
+187,30,15,66,117,105,108,100,105,110,103,32,112,97,99,107,97,103,101,160,
+172,129,119,101,180,164,38,231,92,7,68,25,66,147,94,196,0,51,97,87,
+229,230,2,68,47,196,246,133,97,228,99,1,1,95,53,193,217,102,9,160,
+48,0,39,224,5,8,224,255,3,192,131,225,1,38,225,3,4,128,15,225,
+8,16,3,87,114,105,116,225,7,10,134,159,66,194,227,11,20,2,32,116,
+111,193,230,1,49,57,90,9,224,0,0,225,1,0,96,233,128,133,224,221,
+6,161,223,0,39,96,2,92,76,94,27,224,71,1,160,65,135,44,96,8,
+201,48,1,67,32,103,69,65,134,135,173,0,52,66,163,94,75,5,64,64,
+64,85,32,65,64,6,1,95,50,97,25,224,21,6,2,64,95,55,71,243,
+226,37,0,1,48,48,169,70,164,189,228,109,1,64,16,128,9,129,64,225,
+197,6,192,185,225,154,37,225,155,38,6,67,111,109,112,114,101,115,69,22,
+3,32,116,105,109,225,156,0,129,88,225,158,0,64,66,1,49,51,64,61,
+96,241,65,184,1,51,54,191,142,0,64,225,172,3,1,109,115,226,229,0,
+134,176,224,202,1,2,32,95,56,82,226,64,86,0,54,102,164,6,50,51,
+49,32,95,51,56,96,165,195,185,64,50,102,203,64,9,0,48,161,118,131,
+200,0,54,169,193,233,9,1,225,172,1,168,240,239,216,1,128,7,231,9,
+4,142,5,65,202,65,2,2,95,51,57,168,109,64,111,68,33,197,85,1,
+53,49,97,177,1,95,50,101,93,2,49,52,51,135,81,71,160,105,54,1,
+64,35,164,100,167,48,131,65,0,80,227,206,1,98,142,224,50,4,101,136,
+161,7,169,22,99,199,0,85,96,165,0,90,64,13,0,90,202,82,66,41,
+169,31,1,50,53,137,108,64,180,162,74,3,95,49,53,56,64,20,64,15,
+0,54,73,139,96,21,0,67,232,68,2,224,163,3,0,73,64,9,85,45,
+224,174,2,160,79,232,246,1,226,30,19,195,178,103,249,104,236,9,102,32,
+116,104,101,32,102,111,114,109,96,20,0,45,199,83,195,162,98,37,106,98,
+197,138,65,98,140,141,195,160,64,1,236,225,30,224,11,2,192,8,74,232,
+160,86,203,212,64,1,2,95,49,56,65,237,102,4,128,231,96,21,1,51,
+54,172,158,102,91,1,51,55,66,109,65,42,0,56,72,177,2,95,49,53,
+72,161,160,77,138,201,66,96,202,190,162,76,65,94,229,83,5,205,25,195,
+164,1,67,32,139,16,225,86,1,225,67,2,14,107,103,80,97,116,104,32,
+105,115,32,101,109,112,116,121,228,254,0,130,165,129,245,96,6,0,79,66,
+54,0,79,236,47,0,192,27,128,140,96,110,134,198,231,128,5,228,40,20,
+64,19,75,91,1,54,50,131,173,0,35,195,13,97,28,228,38,32,6,73,
+110,115,116,97,108,108,229,197,10,64,124,168,136,229,194,17,0,105,235,32,
+1,64,105,230,115,0,234,40,5,196,117,70,220,224,13,1,229,229,0,224,
+245,4,3,95,49,57,57,97,239,231,239,0,131,119,97,7,128,50,225,34,
+10,64,53,238,159,0,166,32,231,91,4,108,59,200,132,225,128,2,161,160,
+135,170,232,60,26,161,118,0,35,131,122,232,48,30,4,99,114,101,97,116,
+232,38,2,224,109,6,65,103,224,244,2,67,248,100,30,64,204,165,136,129,
+141,96,218,64,201,0,52,64,32,64,16,104,74,133,97,1,95,53,99,2,
+106,162,168,91,237,219,6,64,116,97,208,96,57,235,118,2,234,98,22,224,
+113,3,235,87,4,240,5,1,64,0,0,90,135,45,96,192,64,71,1,57,
+57,229,225,0,141,246,71,78,0,90,160,1,195,9,64,29,184,114,133,8,
+64,208,3,50,48,48,56,110,131,64,116,160,26,0,52,70,38,64,25,0,
+55,128,25,140,150,194,18,0,80,111,28,5,32,95,52,57,49,32,101,28,
+225,135,12,1,46,47,161,130,135,209,167,222,64,84,0,54,128,84,182,80,
+3,50,48,48,53,96,5,0,49,128,22,0,54,160,107,64,18,99,115,66,
+18,66,215,64,28,166,100,241,83,0,64,36,68,172,1,50,48,65,123,64,
+33,197,35,96,198,101,170,167,42,2,95,54,57,239,59,1,64,41,187,125,
+96,65,224,127,2,187,21,230,5,1,1,95,52,64,98,64,26,129,89,130,
+221,71,124,228,222,0,131,107,227,96,0,129,228,89,221,0,64,129,36,0,
+64,167,64,174,18,128,6,64,81,129,141,163,0,195,199,3,67,32,95,51,
+64,32,2,95,50,57,98,144,224,30,15,0,52,130,105,224,30,6,1,95,
+53,65,3,169,148,227,101,2,1,95,50,71,131,209,232,1,64,58,131,196,
+64,125,167,249,238,115,3,96,227,240,52,0,69,233,1,57,57,71,129,0,
+53,131,44,0,75,238,241,1,65,255,163,156,236,118,0,163,96,89,225,105,
+87,97,140,3,49,57,57,55,96,233,228,231,13,67,4,0,55,229,180,1,
+72,158,129,227,229,203,1,129,246,239,240,0,129,106,232,31,4,134,177,129,
+16,229,83,2,230,14,3,132,135,161,143,0,85,64,124,171,236,224,9,1,
+65,26,194,241,0,80,192,33,64,191,66,184,96,198,128,27,0,89,230,196,
+0,0,66,64,135,137,34,64,17,224,54,2,224,141,0,160,87,0,54,96,
+59,2,94,109,107,111,241,129,85,1,10,65,237,224,2,4,85,115,97,103,
+101,111,3,2,32,91,45,200,23,0,93,64,11,6,110,117,109,101,114,105,
+99,224,19,3,0,118,64,4,0,113,64,4,0,108,64,4,0,114,64,4,
+5,67,91,82,124,87,93,64,9,3,88,67,80,80,64,7,3,68,68,69,
+70,64,7,4,73,80,65,84,72,64,8,0,84,64,4,0,122,64,4,0,
+105,192,18,4,111,70,73,76,69,64,8,1,97,91,96,18,64,10,0,76,
+96,10,3,124,80,75,71,96,14,0,80,64,8,12,32,91,45,81,32,80,
+75,71,32,91,68,73,82,96,22,5,116,84,65,82,71,69,96,82,26,111,
+112,116,99,32,79,80,84,73,79,78,93,32,91,77,79,68,85,76,69,78,
+65,77,69,46,46,124,96,94,0,34,129,63,245,84,1,237,177,3,230,206,
+9,1,52,53,69,248,230,185,0,224,42,1,101,11,101,34,116,203,233,244,
+0,230,86,5,76,167,64,64,135,147,230,141,0,0,67,136,3,162,12,181,
+12,138,66,128,1,238,7,9,230,219,3,162,129,231,100,1,199,103,224,17,
+4,224,20,0,238,157,3,175,55,174,61,96,81,160,116,232,135,38,236,164,
+45,16,116,111,112,32,108,101,118,101,108,32,100,101,102,110,115,58,32,96,
+0,238,70,1,230,176,2,5,49,56,50,54,32,35,70,232,236,178,5,165,
+196,230,196,11,232,167,2,7,40,117,110,112,114,117,110,101,214,116,224,89,
+4,224,76,1,1,95,55,64,96,67,247,0,49,233,172,2,96,0,225,52,
+15,239,120,9,232,59,30,228,156,1,153,153,225,53,3,160,66,132,149,242,
+6,15,224,222,2,0,61,192,214,65,39,67,191,224,187,5,226,3,2,99,
+246,244,197,1,64,8,76,180,64,54,137,112,194,114,226,184,4,101,123,0,
+51,70,120,65,32,229,104,7,224,52,1,240,177,15,213,51,226,178,0,233,
+197,13,226,96,73,9,102,105,110,97,108,32,112,97,115,115,130,90,226,96,
+4,163,195,97,101,160,71,0,56,194,100,160,15,239,26,17,224,100,2,239,
+26,4,236,75,4,228,43,3,227,162,1,225,3,1,99,144,161,111,109,231,
+0,56,69,201,232,176,2,3,99,111,109,98,192,92,163,195,224,53,27,192,
+50,225,149,9,1,49,50,229,216,2,3,109,104,115,99,224,44,1,224,45,
+0,68,121,128,13,225,151,0,235,29,6,0,32,135,185,224,53,4,225,210,
+4,231,211,0,224,130,10,194,24,192,25,224,27,2,2,50,49,54,224,158,
+2,4,77,72,83,67,67,225,90,1,131,20,226,203,1,96,24,242,42,2,
+224,20,1,224,90,2,229,194,8,97,229,1,57,57,130,93,186,27,176,146,
+3,49,57,48,52,224,126,2,6,105,110,99,108,117,100,101,225,219,2,224,
+88,3,226,178,1,224,89,41,3,99,98,105,116,226,51,3,227,146,7,161,
+113,229,156,5,230,107,1,3,95,49,57,50,243,46,0,224,145,1,128,1,
+129,188,224,25,9,255,42,0,228,200,2,229,239,2,209,102,224,8,23,227,
+204,2,237,49,38,245,98,10,227,185,19,5,69,120,101,99,117,116,248,41,
+0,240,127,11,227,5,1,250,63,5,177,23,225,163,1,97,166,226,155,1,
+0,53,243,156,3,164,4,224,200,1,174,43,224,199,10,1,51,56,64,125,
+1,57,51,192,102,130,225,192,209,250,105,22,13,99,111,109,109,97,110,100,
+32,102,97,105,108,101,100,192,214,192,133,227,29,7,229,16,80,1,67,32,
+152,212,1,97,116,84,24,229,16,91,192,0,129,108,225,144,0,226,233,1,
+171,213,0,57,84,246,252,190,17,2,36,73,78,224,84,5,224,77,12,224,
+70,25,2,79,85,84,224,71,3,228,80,3,128,253,0,52,228,217,10,199,
+139,224,21,3,231,144,20,14,45,119,32,45,87,97,108,108,32,45,79,51,
+32,45,73,225,236,3,227,233,3,224,85,0,224,84,27,7,47,115,114,99,
+47,114,117,110,245,205,3,225,87,6,232,212,1,66,16,122,90,196,129,224,
+85,15,224,156,3,224,135,1,224,47,7,1,79,32,116,109,232,86,0,224,
+173,25,8,45,68,95,95,77,72,83,95,95,230,94,8,224,91,23,232,157,
+5,224,209,0,2,55,54,52,224,60,14,0,57,240,168,0,160,45,224,144,
+12,0,39,225,51,0,1,95,53,90,59,128,146,161,57,193,136,225,131,35,
+4,47,101,118,97,108,188,21,161,134,224,71,4,224,69,17,1,46,99,192,
+139,165,53,192,227,97,177,66,195,211,52,224,25,6,150,18,224,228,18,1,
+47,42,231,207,1,226,142,2,10,36,73,78,32,45,108,109,32,45,111,32,
+227,0,7,224,0,7,64,125,163,239,164,215,87,172,81,124,128,27,161,57,
+96,0,242,160,4,224,11,0,249,133,0,198,105,228,83,1,3,95,49,57,
+54,146,56,0,57,144,71,160,113,112,144,249,126,1,2,49,57,57,101,194,
+119,51,0,67,88,94,81,57,74,215,80,97,231,73,3,3,109,97,105,110,
+224,205,2,77,202,145,67,93,74,64,2,143,148,109,95,225,147,1,1,50,
+54,160,94,224,153,0,228,216,4,226,101,12,80,116,130,101,88,162,76,117,
+154,20,225,101,2,0,125,192,137,64,29,0,85,242,228,2,235,129,2,0,
+89,64,18,224,13,0,245,13,2,181,16,96,49,224,17,4,232,212,0,232,
+234,7,224,48,2,224,51,10,224,57,3,234,59,3,224,29,17,224,65,3,
+144,29,227,179,1,130,221,224,45,11,128,41,224,37,8,234,57,3,247,82,
+4,64,53,2,95,56,52,66,32,142,225,0,67,112,153,1,56,56,134,72,
+4,95,49,55,55,32,134,218,1,95,51,98,43,169,87,0,53,155,164,1,
+75,52,161,119,224,158,6,71,64,0,56,71,0,1,95,56,183,248,224,29,
+3,169,20,224,231,6,225,2,2,192,40,233,28,4,106,199,173,22,224,34,
+4,224,62,0,104,54,96,118,224,33,3,2,95,56,53,237,75,3,96,99,
+132,105,65,6,3,83,32,95,53,83,135,1,95,55,66,170,192,0,96,40,
+218,245,146,70,233,97,1,160,97,233,98,2,142,60,160,23,0,95,120,242,
+224,111,0,225,10,9,128,23,97,4,192,163,224,167,4,192,158,234,20,7,
+192,186,193,21,131,141,1,55,53,167,243,184,114,103,30,96,210,164,50,128,
+216,160,12,155,231,227,82,12,238,168,1,227,126,4,160,0,226,65,0,0,
+67,97,249,0,50,246,56,6,241,53,5,64,97,0,82,66,61,0,51,132,
+188,244,15,0,97,8,238,167,0,96,214,241,88,4,84,5,229,166,15,1,
+65,32,228,90,1,224,141,1,149,186,226,149,1,161,61,96,21,229,202,2,
+224,238,9,94,60,166,167,228,118,11,228,72,2,4,64,92,49,48,38,192,
+123,0,67,150,42,64,47,2,79,32,35,65,77,239,220,3,163,177,143,163,
+160,9,131,83,238,138,3,2,95,55,56,64,169,97,7,161,66,96,4,64,
+30,129,94,67,88,192,87,0,80,247,165,0,225,110,1,132,242,192,13,65,
+66,0,85,64,50,224,32,0,3,85,32,75,51,224,48,4,247,236,11,64,
+124,224,19,8,237,161,0,170,233,105,127,125,166,160,15,1,57,51,229,252,
+1,0,57,102,8,117,196,231,96,19,1,78,111,82,80,2,105,110,105,106,
+229,2,102,111,117,75,120,1,111,114,236,76,0,145,82,100,99,131,223,70,
+56,220,37,98,182,0,49,124,93,2,95,49,56,86,208,64,29,151,104,0,
+75,175,115,129,108,128,166,201,113,74,115,96,175,1,49,32,118,43,254,202,
+6,195,212,130,124,197,59,133,27,225,18,3,130,172,254,226,5,194,192,224,
+102,36,162,16,164,228,224,116,0,96,184,148,102,225,137,6,224,115,4,96,
+114,241,224,2,131,217,97,21,250,71,3,72,30,225,137,19,0,35,175,69,
+3,32,92,51,52,162,210,232,192,10,73,197,226,216,2,64,80,0,48,109,
+233,224,80,9,7,109,104,115,102,102,105,46,104,128,75,64,41,1,51,51,
+79,115,109,211,225,118,24,175,7,225,26,5,224,13,0,100,79,192,36,224,
+46,2,224,10,6,164,120,225,162,5,129,44,129,48,225,54,0,225,41,0,
+208,6,0,55,190,179,131,205,224,224,12,31,115,116,97,116,105,99,32,115,
+116,114,117,99,116,32,102,102,105,95,101,110,116,114,121,32,116,97,98,108,
+101,91,93,32,2,61,32,123,96,251,163,192,224,96,4,120,211,115,162,169,
+177,0,79,233,43,2,4,123,32,48,44,48,136,164,224,22,3,1,125,59,
+224,17,7,224,122,8,1,42,120,64,11,96,128,1,32,61,128,136,96,52,
+227,215,1,187,244,224,67,1,23,85,110,105,109,112,108,101,109,101,110,116,
+101,100,32,70,70,73,32,102,101,97,116,117,114,177,78,195,101,1,57,56,
+65,62,1,95,53,65,194,0,54,65,79,2,50,51,50,193,204,64,29,113,
+66,2,49,57,55,176,238,225,223,1,65,124,226,228,1,230,179,3,233,97,
+1,147,103,97,253,168,127,193,242,163,12,167,101,122,103,64,5,186,117,64,
+95,163,22,227,29,1,198,49,243,28,1,227,196,1,64,56,4,61,61,32,
+64,35,100,152,224,30,0,135,112,166,52,97,169,249,143,1,124,41,2,49,
+57,56,192,49,194,52,1,67,39,90,24,0,83,100,100,2,83,32,73,128,
+140,72,241,229,182,2,225,118,0,68,151,155,174,148,21,224,245,1,169,106,
+160,23,96,9,160,246,0,83,224,248,4,154,170,97,111,226,140,12,5,100,
+121,110,97,109,105,204,82,64,85,90,159,1,57,56,71,224,225,27,5,224,
+87,37,6,119,114,97,112,112,101,114,224,87,8,72,43,224,87,1,225,95,
+1,224,79,23,131,52,236,9,2,97,77,1,95,54,254,248,0,181,54,161,
+21,193,133,234,236,1,76,190,1,56,57,64,103,240,57,15,196,114,163,249,
+130,124,67,202,0,57,71,91,1,95,49,104,231,96,28,0,85,188,158,160,
+23,169,229,224,132,12,235,145,1,192,146,203,49,225,66,14,69,41,232,71,
+0,224,64,0,194,253,224,93,0,128,66,246,40,3,225,74,6,156,157,141,
+167,229,2,0,227,70,1,102,225,225,129,4,0,66,72,38,64,212,100,87,
+252,190,2,226,6,5,225,178,33,3,118,97,108,117,245,92,1,224,104,10,
+110,105,131,15,142,254,226,22,0,224,140,6,224,17,4,160,209,192,139,226,
+252,1,104,235,133,227,226,97,3,64,40,232,106,23,232,107,20,1,98,97,
+104,91,11,101,105,103,110,32,105,109,112,111,114,116,32,168,101,244,178,11,
+0,58,131,243,104,74,0,65,104,89,64,177,96,14,0,75,128,14,157,202,
+96,162,64,14,0,54,168,149,128,1,149,197,224,13,11,231,228,1,0,32,
+73,193,192,107,157,203,224,107,0,156,231,224,107,0,0,51,96,14,229,251,
+3,5,71,69,84,82,65,87,230,17,7,10,71,69,84,84,73,77,69,77,
+73,76,76,114,46,224,27,3,2,97,99,111,115,238,224,19,4,2,100,100,
+95,93,94,224,23,11,3,117,116,102,56,224,23,8,0,115,143,198,224,19,
+4,1,116,97,224,19,12,0,50,224,20,7,4,99,97,108,108,111,99,251,
+224,21,4,3,108,111,115,101,121,59,224,21,4,224,171,9,2,101,120,112,
+224,18,7,4,102,108,117,115,104,224,59,8,3,102,111,112,101,224,145,8,
+2,102,114,101,98,196,224,19,3,2,103,101,116,224,60,8,5,103,101,116,
+101,110,118,224,21,7,7,105,115,119,105,110,100,111,119,224,148,8,2,108,
+111,103,224,18,7,0,109,224,230,12,7,109,100,53,65,114,114,97,121,224,
+23,10,0,66,225,129,11,7,109,100,53,83,116,114,105,110,224,94,9,3,
+101,109,99,112,224,70,9,4,101,109,109,111,118,224,225,8,1,112,117,224,
+225,9,225,194,10,3,115,113,114,116,224,19,8,4,121,115,116,101,109,224,
+21,7,225,235,10,5,116,109,112,110,97,109,224,122,8,1,117,110,225,94,
+11,5,117,110,108,105,110,107,224,166,8,4,101,101,107,80,116,102,101,224,
+22,4,2,111,107,101,224,22,14,3,87,111,114,100,224,69,11,224,23,11,
+66,204,4,108,122,55,55,95,87,81,4,114,101,115,115,111,224,82,8,224,
+34,0,1,100,101,224,36,21,2,114,108,101,224,70,22,64,33,224,69,23,
+2,98,119,116,224,69,22,64,33,224,69,19,64,235,4,95,117,105,110,116,
+227,162,8,65,29,224,25,14,192,51,1,49,54,224,52,16,224,26,10,192,
+53,0,51,227,208,8,224,53,0,224,26,10,192,53,1,54,52,224,53,16,
+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,3,117,115,104,111,227,92,9,129,3,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,1,108,111,228,143,9,128,98,224,25,12,64,51,224,50,16,
+224,49,16,1,117,108,224,102,18,224,103,17,224,104,17,224,51,16,1,102,
+108,224,255,13,224,23,10,5,115,105,122,101,111,102,225,25,11,160,25,224,
+100,11,192,26,224,27,11,70,163,1,100,105,227,215,8,103,13,224,23,10,
+3,114,101,97,100,224,46,11,2,95,100,95,229,124,11,1,99,104,224,44,
+10,1,109,107,224,20,10,4,103,101,116,99,119,229,50,8,6,103,101,116,
+95,98,117,102,224,180,11,3,98,95,114,100,224,27,17,1,119,114,192,27,
+234,249,0,224,0,74,73,18,146,5,79,73,111,81,1,50,55,75,214,175,
+88,2,55,32,95,82,8,234,217,2,238,156,1,2,95,57,57,192,30,0,
+54,73,246,1,57,56,224,30,4,96,91,146,67,2,95,52,56,235,23,0,
+2,57,55,57,141,182,224,5,5,160,24,2,95,49,48,74,55,2,95,49,
+50,74,134,160,6,224,45,25,224,52,3,224,45,18,224,84,3,160,52,224,
+45,25,224,98,4,0,53,77,48,160,232,0,54,112,223,96,11,64,234,142,
+150,5,115,99,109,112,32,58,128,66,121,148,0,90,113,60,0,90,175,16,
+140,174,117,183,0,57,118,81,141,181,0,55,111,245,96,5,64,75,65,64,
+107,2,0,89,111,207,0,32,88,46,0,52,109,108,237,192,3,192,11,175,
+100,141,154,64,10,84,136,65,128,172,35,184,61,123,82,154,130,64,98,139,
+116,224,155,9,79,217,77,9,236,0,19,0,123,114,219,178,220,0,83,243,
+26,1,224,48,16,64,46,9,44,32,109,104,115,95,97,100,100,114,189,32,
+211,21,224,38,1,1,125,44,128,25,128,174,224,129,25,224,128,43,224,123,
+25,193,154,225,2,26,224,128,77,226,16,4,65,171,0,54,162,75,162,166,
+225,161,0,0,90,117,77,225,189,1,246,89,0,206,4,148,247,96,8,150,
+113,3,49,57,54,49,98,219,224,166,14,225,158,2,112,214,111,213,3,54,
+54,32,64,154,160,98,114,128,184,114,58,96,29,64,69,0,57,124,95,224,
+17,5,80,5,64,46,238,106,15,1,57,48,112,39,224,124,1,206,83,16,
+38,32,109,117,115,116,32,98,101,32,80,116,114,47,70,117,110,170,186,77,
+229,224,181,12,2,40,72,115,128,37,0,41,193,66,224,40,4,131,13,96,
+5,224,249,7,240,92,7,125,175,207,1,175,42,193,51,162,21,97,1,97,
+19,160,43,129,26,209,26,1,55,49,242,149,1,243,126,1,129,128,129,169,
+129,69,83,38,160,90,97,56,242,74,0,113,8,1,57,55,65,27,160,103,
+181,119,126,79,226,99,19,0,59,98,95,64,15,8,95,85,110,105,116,40,
+115,44,32,162,108,249,125,11,2,79,32,35,64,7,224,250,0,128,191,249,
+203,16,0,52,254,13,0,255,164,3,1,50,53,70,39,224,139,10,224,122,
+0,4,32,95,54,57,53,97,24,134,86,65,249,2,55,48,48,225,54,0,
+224,134,6,0,95,66,236,225,133,2,229,28,5,67,12,143,223,228,30,21,
+65,7,1,116,111,194,200,193,199,129,1,0,57,119,209,224,61,19,225,56,
+36,64,146,144,99,67,159,133,63,117,25,135,12,102,68,0,85,129,191,3,
+50,32,95,51,116,71,65,13,101,235,96,61,144,146,255,230,6,11,80,114,
+105,109,105,116,105,118,101,115,46,40,98,213,64,41,135,169,99,101,0,56,
+64,130,230,23,1,128,123,102,0,64,24,166,18,162,142,128,60,167,138,81,
+227,0,49,64,34,0,54,92,191,64,24,134,184,227,187,5,71,193,183,221,
+0,58,129,139,224,162,20,1,73,79,160,162,64,56,97,157,0,85,130,230,
+225,15,2,128,144,148,27,192,31,243,198,0,225,57,10,180,69,64,29,0,
+85,166,222,100,216,199,165,225,78,3,128,43,244,145,1,128,139,134,226,146,
+44,226,43,21,99,51,196,59,96,105,67,175,226,49,5,230,145,22,226,52,
+1,226,111,6,253,231,2,224,63,19,227,48,2,96,56,227,158,7,64,208,
+0,54,96,208,69,149,155,71,101,230,164,57,2,67,32,60,161,100,134,19,
+247,164,3,160,124,97,115,0,90,64,4,0,85,166,56,224,36,3,165,224,
+85,202,192,89,226,182,9,101,230,201,46,224,30,10,229,209,6,229,187,3,
+226,56,2,192,18,128,0,224,115,2,102,216,0,95,84,2,202,108,130,171,
+1,49,57,129,217,186,102,253,43,19,166,85,225,106,19,17,78,111,116,32,
+97,32,118,97,108,105,100,32,67,32,116,121,112,101,253,38,0,2,49,50,
+53,97,235,65,109,132,104,96,70,0,79,137,130,224,74,9,227,3,2,4,
+70,108,111,97,116,116,71,245,253,13,224,31,2,0,64,224,79,27,0,73,
+141,33,224,76,13,192,28,224,73,28,209,202,224,74,13,224,29,0,224,75,
+17,3,68,97,116,97,96,69,96,4,112,58,224,75,17,128,30,224,76,17,
+132,206,224,63,13,70,182,224,62,22,0,83,115,77,8,46,73,79,46,72,
+97,110,100,108,151,79,225,1,13,194,102,227,67,0,108,224,156,245,226,29,
+17,0,70,136,133,8,46,67,46,84,121,112,101,115,46,128,67,66,121,237,
+164,3,3,67,67,104,97,238,2,8,1,67,83,224,21,12,0,85,224,43,
+13,240,127,11,1,67,85,224,22,13,161,239,224,42,5,224,20,11,0,76,
+239,33,10,1,67,85,224,21,12,5,80,116,114,100,105,102,238,126,8,3,
+67,83,105,122,239,6,8,1,67,83,224,21,12,0,76,224,110,14,224,22,
+12,1,84,105,143,94,238,207,10,67,110,135,68,230,99,17,228,75,1,64,
+45,231,52,23,224,42,2,135,53,229,189,21,3,118,111,105,100,235,157,2,
+233,12,20,224,53,1,8,40,105,110,116,32,115,41,32,123,229,187,6,224,
+33,1,0,59,158,125,160,226,135,130,100,228,169,230,0,51,110,105,1,57,
+52,69,86,64,105,96,9,103,198,2,49,32,35,69,91,101,86,0,53,105,
+11,64,65,135,171,64,18,64,141,2,57,53,56,103,159,64,31,3,10,65,
+32,94,245,159,10,78,139,64,37,193,1,0,50,69,90,0,52,230,207,1,
+79,240,0,51,128,131,101,55,64,248,69,94,160,23,198,204,64,18,80,12,
+192,19,69,159,0,49,160,14,64,13,75,13,1,50,55,111,28,104,144,1,
+95,49,96,210,64,100,224,58,4,64,31,137,126,255,15,0,80,27,2,49,
+57,53,69,230,1,50,49,231,243,1,224,31,7,0,50,64,164,1,56,56,
+74,60,64,9,2,55,55,32,170,64,224,163,3,224,166,5,97,58,64,9,
+235,202,0,192,213,0,95,112,211,96,116,235,233,3,224,30,7,224,194,2,
+64,228,225,19,0,130,75,0,57,102,42,122,120,224,65,0,224,232,1,0,
+56,167,41,224,22,6,2,49,57,53,138,224,193,61,224,0,3,65,171,136,
+180,0,94,153,204,97,189,0,54,96,17,123,235,1,53,52,129,239,134,154,
+83,122,1,67,65,152,220,2,76,101,110,96,44,131,69,1,94,103,146,118,
+96,18,163,42,5,56,52,32,75,32,95,124,63,192,7,0,95,65,79,160,
+231,1,95,57,112,206,160,11,107,177,160,11,130,105,109,223,3,39,32,95,
+52,98,159,4,57,56,32,64,95,66,188,64,12,93,244,1,51,49,157,37,
+128,239,92,68,128,30,1,95,51,64,23,64,134,178,102,224,134,18,106,33,
+160,134,128,11,128,134,128,11,128,134,144,233,192,134,1,49,57,67,144,224,
+136,5,99,43,201,130,1,57,53,66,45,160,137,64,5,64,137,131,134,0,
+94,84,161,1,80,116,131,33,131,87,0,94,65,81,160,18,64,88,73,108,
+143,57,106,14,72,114,64,114,125,166,227,21,9,143,119,1,95,57,97,8,
+64,65,195,118,64,51,0,54,126,32,75,132,236,201,0,64,71,68,14,128,
+170,3,52,32,64,95,77,99,142,11,64,14,253,170,0,66,250,98,78,64,
+224,128,58,130,19,0,94,155,182,96,174,130,18,0,94,90,167,96,15,162,
+8,244,76,3,96,23,130,13,163,93,0,55,237,11,3,0,79,228,228,13,
+30,115,116,97,116,105,99,32,117,110,115,105,103,110,101,100,32,99,104,97,
+114,32,100,97,116,97,91,93,32,61,32,123,100,222,101,210,114,138,206,23,
+84,73,1,49,57,96,208,64,7,2,49,32,35,105,207,1,64,66,253,123,
+4,1,125,59,96,62,224,20,5,224,105,5,10,42,99,111,109,98,101,120,
+112,114,32,61,96,117,128,49,159,36,229,155,19,69,154,192,58,5,108,101,
+110,32,61,32,165,163,224,165,2,235,155,2,142,119,2,79,32,35,69,75,
+240,48,2,161,111,198,67,179,144,0,83,99,142,141,122,96,16,94,151,224,
+7,1,229,51,1,243,143,3,243,142,5,1,95,55,129,16,128,95,173,156,
+2,55,54,52,241,97,1,224,160,6,133,81,76,22,0,52,160,161,64,56,
+130,184,3,85,32,75,52,160,2,0,90,160,1,231,101,1,0,58,134,102,
+192,38,192,32,224,1,7,231,150,7,64,54,130,193,3,95,53,54,53,66,
+59,0,51,130,176,3,85,32,75,50,224,69,16,224,73,11,128,75,0,54,
+192,60,0,51,224,169,6,224,48,4,64,41,239,225,1,97,112,129,89,225,
+118,8,140,134,76,194,161,108,81,103,224,19,4,177,110,192,63,128,11,65,
+91,118,159,135,226,111,39,0,64,145,140,113,96,128,130,200,140,0,57,110,
+149,71,172,74,142,86,3,0,75,64,40,144,155,64,65,64,144,214,86,2,
+50,32,95,166,50,2,95,49,53,100,186,0,51,68,24,64,79,131,117,230,
+68,3,72,43,85,142,2,95,49,57,96,63,198,239,230,23,0,79,144,205,
+96,96,86,175,23,0,57,79,183,96,7,207,218,0,51,130,157,0,75,97,
+163,130,73,0,90,77,83,64,14,164,216,158,131,64,32,64,108,132,215,230,
+210,4,64,134,101,83,232,19,2,2,50,49,54,233,191,3,0,67,168,201,
+129,77,224,37,14,6,77,72,83,67,79,78,70,160,42,129,142,96,2,64,
+16,129,164,128,122,180,155,146,240,224,8,3,64,137,69,200,1,49,57,69,
+111,197,203,0,39,175,146,229,110,0,238,3,2,5,50,50,52,32,95,50,
+198,25,4,49,51,52,32,95,73,106,2,64,95,50,74,38,206,216,136,250,
+168,15,3,95,53,49,53,64,59,234,160,4,11,111,117,108,100,32,110,111,
+116,32,102,105,110,141,18,132,102,160,138,224,43,3,4,105,110,32,102,105,
+140,124,226,237,3,161,26,231,220,2,192,188,96,214,0,55,224,65,2,4,
+100,101,102,97,117,155,30,3,64,95,52,52,99,231,228,197,9,1,99,99,
+225,73,0,0,32,96,37,224,103,3,145,24,225,32,4,64,105,233,171,7,
+96,146,225,42,34,225,43,8,237,42,18,9,117,110,100,32,116,97,114,103,
+101,116,239,66,1,100,179,74,29,4,49,57,50,49,32,67,55,96,12,70,
+179,67,37,224,11,0,224,0,2,192,207,225,59,5,225,61,2,150,208,235,
+54,0,181,10,160,168,225,61,27,139,207,0,51,72,104,0,50,128,137,240,
+101,1,224,59,22,233,223,3,104,2,161,135,224,83,42,1,111,110,109,110,
+224,0,0,225,90,17,4,117,110,105,120,45,130,28,230,4,1,0,95,82,
+210,96,0,67,200,235,213,1,67,92,0,80,99,239,65,24,230,15,5,1,
+75,52,198,113,64,30,0,54,230,199,5,65,156,211,145,211,142,227,179,1,
+186,103,101,29,147,122,164,142,96,225,129,23,196,182,145,159,3,95,49,57,
+48,155,252,96,109,133,200,231,13,1,235,95,0,2,49,57,48,72,120,228,
+26,1,128,126,1,95,50,64,50,64,13,224,45,4,0,53,96,44,184,233,
+96,44,132,72,66,8,130,162,161,157,226,245,0,226,193,4,225,100,17,2,
+67,97,110,67,238,4,112,97,114,115,101,162,190,224,255,0,227,66,53,224,
+122,0,162,205,230,181,1,187,179,227,160,93,2,82,101,97,195,159,0,115,
+100,176,9,46,32,80,111,115,115,105,98,108,101,192,22,195,183,232,109,0,
+99,160,227,165,3,0,89,98,40,68,230,245,177,3,168,233,231,66,1,160,
+0,227,192,5,225,0,9,68,199,83,162,224,164,1,160,136,0,46,227,29,
+0,66,58,135,128,129,240,161,144,98,103,0,53,142,248,0,49,217,163,2,
+95,49,54,64,43,116,139,0,52,79,234,116,236,212,241,132,30,88,50,98,
+44,97,61,71,85,0,83,164,78,82,8,0,52,120,152,200,132,224,51,4,
+225,90,19,9,65,109,98,105,103,117,111,117,115,58,225,63,0,0,55,75,
+77,170,250,229,4,3,136,19,64,0,64,217,173,142,2,49,49,52,133,192,
+230,33,1,0,50,85,224,65,81,225,245,0,0,35,189,176,98,33,64,254,
+1,50,56,230,66,2,0,84,97,56,162,183,224,34,3,90,213,0,50,246,
+59,0,162,96,108,188,0,49,96,33,225,220,0,0,35,85,93,96,187,224,
+57,11,224,46,3,229,202,24,160,74,96,0,2,95,49,49,97,165,176,191,
+0,50,108,11,96,12,65,0,136,173,0,83,139,31,4,49,52,32,64,90,
+216,47,163,8,64,116,127,110,246,202,1,192,193,131,21,78,107,139,84,199,
+220,224,193,4,235,32,0,224,46,4,69,5,240,50,1,98,238,171,100,64,
+219,64,105,0,80,192,85,235,164,0,130,1,169,165,64,223,64,191,137,97,
+64,41,132,116,109,67,221,97,0,79,98,174,235,192,0,1,52,57,77,188,
+1,49,53,97,205,225,185,1,3,58,92,49,48,190,60,129,157,236,204,22,
+2,32,32,102,71,106,227,171,2,0,50,66,181,162,107,0,54,169,40,168,
+174,224,72,21,6,101,120,112,101,99,116,101,224,75,3,105,11,4,95,49,
+51,51,57,229,218,1,236,252,2,64,17,98,177,90,49,69,233,119,145,224,
+12,4,1,57,48,65,125,1,57,48,153,46,65,87,64,6,165,234,224,7,
+0,146,172,67,186,64,78,128,62,97,91,1,54,53,114,57,64,62,186,201,
+248,186,1,138,236,0,51,98,67,0,56,68,77,160,39,224,211,1,1,101,
+111,167,84,65,146,2,95,50,50,67,121,96,151,184,45,96,116,172,201,99,
+150,160,180,71,183,0,54,75,233,166,181,224,211,7,0,49,97,186,128,190,
+96,8,0,54,128,191,135,98,2,95,49,54,146,239,129,60,96,38,64,29,
+0,54,224,104,18,118,119,0,57,99,40,2,95,51,55,225,63,4,2,57,
+32,35,133,231,1,49,57,67,18,96,74,216,128,2,54,53,50,192,246,224,
+245,1,3,118,97,108,117,106,127,225,48,7,96,68,103,212,97,15,251,19,
+0,64,81,172,214,101,73,1,50,52,64,85,1,54,54,225,122,1,123,64,
+99,184,224,106,5,4,92,57,50,38,110,224,106,10,71,233,252,225,0,64,
+106,163,180,128,107,196,231,225,84,3,224,244,9,0,57,192,244,160,7,96,
+19,64,188,64,66,178,50,3,49,57,49,48,76,186,64,35,225,16,17,2,
+107,101,121,224,163,10,130,62,193,14,96,241,225,15,2,130,217,100,136,224,
+249,2,198,4,163,88,70,116,0,57,134,93,0,75,128,81,231,134,0,252,
+229,9,134,106,142,32,96,31,0,90,65,106,64,119,136,218,128,120,0,48,
+131,3,0,80,64,213,66,122,128,213,3,52,56,32,80,101,100,0,53,93,
+133,0,52,96,180,167,55,84,101,0,95,162,128,64,162,105,196,196,115,226,
+108,2,226,214,5,167,153,230,97,1,97,244,64,72,159,93,1,67,32,225,
+145,3,160,154,130,192,238,170,6,1,50,56,83,103,1,50,57,64,248,64,
+161,231,213,0,96,233,233,46,4,1,95,51,129,222,224,34,0,162,21,64,
+91,202,16,168,3,65,111,131,54,0,48,162,153,71,122,0,56,68,62,82,
+156,2,49,57,32,130,206,5,54,32,95,54,50,56,96,29,106,33,1,95,
+52,162,175,96,43,128,90,239,97,1,147,166,65,219,224,196,3,64,107,0,
+48,97,45,192,169,224,197,7,239,113,4,0,50,66,124,214,145,224,223,5,
+1,49,57,65,87,224,224,9,224,79,8,128,152,130,196,149,208,1,100,105,
+116,91,64,63,211,156,192,18,130,138,70,11,80,242,244,118,2,0,80,104,
+19,68,214,233,68,1,107,46,71,23,170,78,65,246,85,146,171,209,96,165,
+201,150,2,58,49,56,85,142,204,21,70,217,64,18,130,117,73,53,0,56,
+68,1,98,157,64,23,236,64,0,241,222,16,128,1,241,228,9,96,62,162,
+61,3,32,67,32,80,97,140,138,213,103,14,1,95,52,103,66,152,219,72,
+101,232,154,5,0,56,125,196,160,51,160,14,180,151,0,35,67,179,192,112,
+67,196,117,66,105,201,159,8,105,207,255,8,4,99,108,138,62,224,25,6,
+97,172,126,220,255,56,4,66,217,0,85,200,71,96,161,171,157,224,195,5,
+1,49,56,164,177,224,196,1,64,0,106,162,255,77,3,96,101,68,139,224,
+62,28,0,85,73,14,96,44,235,241,2,84,145,98,255,64,61,161,14,0,
+56,142,1,224,17,0,66,206,1,56,53,64,4,67,48,0,56,240,96,3,
+192,9,234,31,0,96,36,160,58,100,5,1,56,57,211,73,137,105,225,69,
+9,193,2,224,219,5,96,21,101,241,129,135,224,34,10,98,123,224,34,4,
+225,74,9,0,55,78,193,225,10,5,66,65,166,245,85,10,64,162,100,31,
+96,169,138,52,66,178,0,53,68,227,0,53,66,213,4,64,95,51,48,50,
+91,41,161,22,160,32,69,203,139,64,1,50,48,87,134,0,64,224,23,8,
+2,54,53,53,120,153,64,22,224,24,4,4,49,49,49,52,49,163,252,0,
+48,225,79,3,3,117,116,102,56,93,200,5,58,32,98,97,100,32,221,210,
+226,74,3,0,83,201,126,64,147,132,52,65,154,130,89,106,173,0,50,119,
+16,227,192,0,224,46,18,106,173,74,207,160,46,224,44,33,224,41,32,131,
+80,98,116,100,2,98,153,160,168,135,36,224,27,20,224,26,4,160,20,97,
+13,225,8,28,77,180,224,216,84,224,187,47,224,184,22,0,49,67,58,224,
+139,40,224,111,12,221,35,0,67,64,74,64,39,66,231,217,158,1,80,32,
+100,66,117,197,99,174,186,73,99,44,64,63,96,223,131,71,1,54,52,98,
+247,117,17,64,17,198,195,133,212,128,46,224,28,15,96,206,224,28,3,105,
+6,131,91,131,149,206,144,192,20,0,49,236,109,0,192,183,99,210,64,152,
+96,76,224,152,0,109,98,248,191,10,88,85,197,204,64,14,248,206,1,101,
+28,128,232,231,164,0,240,232,0,236,212,17,31,87,101,108,99,111,109,101,
+32,116,111,32,105,110,116,101,114,97,99,116,105,118,101,32,77,105,99,114,
+111,72,115,44,32,7,118,101,114,115,105,111,110,32,99,175,1,95,50,80,
+65,0,50,95,73,225,243,0,232,36,1,0,52,87,105,176,111,192,20,242,
+229,1,1,51,54,87,213,0,56,136,116,96,38,70,213,0,53,100,168,100,
+231,64,7,96,50,75,13,168,13,172,133,65,90,81,219,1,49,56,105,74,
+0,49,80,171,232,59,0,64,250,173,101,5,52,50,53,32,75,32,70,137,
+128,1,81,103,128,130,224,1,19,119,94,224,0,4,224,47,38,224,44,35,
+224,41,32,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,200,165,157,224,0,2,0,58,129,222,250,190,
+0,224,1,19,225,179,9,225,230,255,224,32,15,224,29,20,224,26,17,224,
+23,14,224,20,11,224,17,8,224,14,5,224,11,2,192,8,77,153,224,0,
+5,66,3,173,211,68,197,0,51,68,17,2,95,49,56,92,214,68,83,128,
+15,0,51,81,191,102,55,192,34,69,47,100,100,101,102,110,147,0,56,109,
+173,0,52,73,243,2,95,52,53,100,41,224,82,2,224,44,0,101,31,244,
+22,2,10,121,112,101,32,39,58,113,117,105,116,39,69,19,64,8,13,44,
+32,39,58,104,101,108,112,39,32,102,111,114,32,64,9,136,188,224,78,6,
+118,125,0,51,78,28,64,124,101,17,224,101,15,31,87,65,82,78,73,78,
+71,58,32,67,111,109,112,105,108,101,100,32,119,105,116,104,32,71,72,67,
+44,32,115,111,32,108,20,105,109,105,116,101,100,32,102,117,110,99,116,105,
+111,110,97,108,105,116,121,46,170,139,67,59,166,68,65,44,177,80,225,27,
+0,0,52,84,61,75,134,1,56,52,109,236,128,249,156,114,224,33,2,1,
+49,56,148,123,229,174,1,129,71,97,154,225,74,2,165,168,160,38,1,49,
+56,125,76,96,35,64,99,246,173,1,64,26,64,80,224,227,1,4,46,109,
+104,115,105,96,179,224,19,1,1,62,32,128,196,77,104,96,197,158,148,128,
+208,203,7,66,26,231,102,2,1,35,53,190,113,225,238,3,70,43,146,30,
+129,11,224,195,4,64,21,0,53,126,116,225,127,15,1,66,121,113,253,225,
+76,4,161,79,0,54,237,131,0,0,95,111,232,96,228,162,134,134,111,155,
+75,64,184,226,78,25,17,85,110,114,101,99,111,103,110,105,122,101,100,32,
+99,111,109,109,97,189,28,224,87,10,195,22,122,54,64,10,70,189,141,228,
+155,193,64,119,64,25,3,85,32,64,95,116,118,0,64,87,122,0,90,97,
+153,227,9,14,248,236,32,247,145,0,192,165,244,226,8,117,46,0,52,111,
+31,224,191,15,64,0,64,140,2,53,51,57,131,159,78,140,0,53,117,102,
+105,48,160,62,65,116,105,197,65,111,140,177,0,79,111,123,224,151,10,67,
+127,168,122,2,54,32,95,116,104,224,119,1,176,41,224,60,16,2,99,108,
+101,172,104,224,61,0,228,84,3,1,54,48,64,19,200,126,227,206,7,0,
+52,66,217,64,196,104,121,1,52,53,110,66,104,120,232,141,1,0,51,149,
+129,232,189,3,1,95,51,156,19,225,31,12,224,169,16,4,114,101,108,111,
+97,130,25,224,170,0,227,176,5,100,200,227,199,9,163,223,227,198,24,2,
+95,52,53,74,72,226,42,12,96,233,224,213,0,224,233,3,225,20,4,165,
+133,225,247,14,224,218,16,4,100,101,108,101,116,131,110,224,125,8,97,131,
+64,8,79,128,120,10,162,53,66,117,66,68,128,26,156,217,226,73,3,65,
+95,0,54,146,199,224,145,11,224,140,16,2,116,121,112,224,138,11,65,188,
+112,97,224,73,33,1,107,105,163,201,224,73,8,0,56,112,31,224,73,33,
+230,80,0,79,240,228,81,14,64,86,226,86,16,204,15,99,79,143,235,224,
+93,1,0,67,131,206,0,115,121,53,102,215,0,32,96,0,96,9,171,229,
+96,26,130,130,64,26,160,9,5,109,111,100,117,108,101,128,28,99,73,96,
+55,128,9,9,97,108,108,32,100,101,102,105,110,105,70,159,128,35,129,232,
+3,32,100,32,32,192,9,224,32,0,4,40,115,41,32,100,96,36,65,128,
+1,32,101,64,72,4,115,104,111,119,32,96,14,3,111,102,32,101,96,28,
+65,83,0,32,96,159,224,28,4,0,116,96,28,65,38,128,186,7,116,104,
+105,115,32,116,101,120,96,23,2,101,120,112,128,152,2,32,32,101,87,214,
+2,97,116,101,89,166,2,114,101,115,76,182,64,33,3,100,101,102,110,160,
+33,11,97,100,100,32,116,111,112,32,108,101,118,101,224,192,3,186,81,65,
+63,206,67,227,103,8,97,126,227,103,13,1,49,56,109,236,166,184,163,167,
+229,106,6,1,79,32,115,38,129,171,66,111,132,187,0,80,227,167,5,64,
+74,69,26,0,75,227,231,13,229,219,22,67,185,111,46,0,56,71,27,0,
+52,146,4,0,55,235,104,3,64,225,207,15,192,63,125,194,134,213,0,89,
+67,113,79,63,0,79,146,123,128,173,230,150,6,198,154,224,13,1,0,85,
+224,13,2,96,25,241,210,0,149,103,149,139,77,239,103,214,0,51,130,202,
+255,1,11,97,76,0,56,101,85,0,56,126,69,96,177,252,52,0,0,50,
+245,61,2,64,24,213,247,230,215,17,98,67,230,201,0,128,38,129,18,224,
+53,19,1,32,61,160,51,193,208,225,189,4,64,122,65,190,227,103,4,74,
+56,0,95,102,171,64,29,138,194,226,69,89,134,107,226,69,78,85,67,194,
+69,166,14,128,0,64,225,217,71,226,69,51,226,55,64,97,61,125,212,226,
+54,2,64,190,201,202,0,52,93,2,1,52,54,104,125,103,237,0,73,129,
+167,136,125,3,85,32,75,51,194,87,64,21,133,67,3,80,32,95,53,106,
+100,96,5,64,23,219,149,226,54,15,133,49,130,58,128,37,0,52,70,212,
+224,48,17,0,40,224,49,14,224,33,1,5,41,32,119,104,101,114,101,30,
+12,105,109,112,111,114,116,32,80,114,101,108,117,100,224,17,3,18,83,121,
+115,116,101,109,46,73,79,46,80,114,105,110,116,79,114,82,117,196,248,25,
+97,117,108,116,32,78,117,109,32,40,73,110,116,101,103,101,114,44,32,68,
+111,117,98,108,101,41,224,32,3,9,73,115,83,116,114,105,110,103,32,40,
+128,7,224,28,4,0,83,69,138,2,40,40,41,96,20,131,21,97,12,243,
+86,0,226,226,12,193,198,98,29,1,64,83,108,58,0,55,83,232,129,164,
+107,211,178,60,231,56,0,66,254,66,54,226,203,12,1,64,90,131,35,72,
+48,73,30,225,249,0,0,90,236,157,0,115,91,153,252,160,110,0,57,164,
+74,0,54,168,251,227,117,63,136,130,224,169,14,66,131,147,32,72,187,135,
+195,1,49,56,153,17,224,103,3,228,91,17,211,200,224,174,4,227,181,7,
+1,52,55,123,239,64,105,0,83,77,134,201,155,173,144,224,47,5,72,122,
+96,157,160,82,179,176,224,66,1,224,32,0,243,124,9,163,95,64,244,129,
+129,0,57,109,91,132,24,226,228,16,2,79,32,35,78,97,96,213,64,52,
+182,38,128,224,133,183,121,225,174,92,64,91,1,83,32,64,113,65,149,91,
+197,132,22,2,95,49,51,120,106,161,189,224,24,1,0,80,166,6,128,13,
+164,88,64,13,0,39,132,125,206,177,164,38,128,18,64,54,196,46,0,54,
+242,128,5,148,203,66,66,65,91,79,190,196,217,222,213,230,99,17,19,114,
+97,110,115,108,97,116,101,58,32,110,111,116,32,102,111,117,110,100,32,131,
+41,187,182,134,73,0,51,91,224,129,1,65,67,97,226,0,89,194,189,0,
+83,252,143,0,81,24,128,19,187,100,142,5,0,80,123,172,175,33,129,142,
+129,161,164,184,197,80,131,121,64,78,64,17,250,145,4,130,182,224,32,18,
+245,155,0,224,32,15,136,180,161,93,250,179,3,192,24,127,212,67,146,191,
+93,251,96,15,5,100,121,110,115,121,109,164,78,219,94,2,95,49,48,95,
+220,160,0,224,99,8,96,157,0,85,225,167,54,65,163,6,32,112,114,105,
+109,111,112,193,163,151,104,1,50,49,64,48,204,209,0,67,68,60,108,122,
+67,29,66,46,236,235,0,224,253,10,129,88,96,253,96,248,252,107,0,226,
+184,0,65,212,225,77,8,194,154,227,0,0,224,28,3,103,112,224,105,8,
+96,21,81,51,164,131,224,116,3,0,57,135,131,224,31,5,225,30,40,70,
+84,5,115,115,105,98,108,101,208,2,129,32,0,55,192,209,66,190,179,162,
+78,169,89,117,144,28,97,228,65,198,3,54,32,95,57,67,227,217,164,96,
+50,136,48,237,5,6,2,79,32,35,65,88,162,192,237,36,8,2,79,32,
+35,73,104,96,30,0,79,224,30,13,0,53,160,30,64,4,237,98,16,1,
+67,39,205,170,224,67,11,64,154,96,67,65,164,224,30,10,192,98,90,154,
+224,98,16,0,83,128,98,99,175,224,67,9,69,99,96,67,68,127,224,197,
+10,0,51,160,30,67,208,224,61,10,192,30,67,147,224,30,10,192,160,67,
+254,224,30,10,193,65,69,60,224,191,16,0,66,128,191,69,62,224,67,10,
+89,96,96,67,73,166,224,98,10,201,229,0,82,224,98,19,1,75,50,96,
+98,0,75,66,19,224,36,17,0,51,128,36,70,160,224,36,17,0,52,128,
+36,66,239,225,244,18,0,66,161,245,226,89,13,68,59,96,180,0,43,224,
+30,13,193,85,0,45,224,30,13,192,242,0,42,224,131,19,2,113,117,111,
+146,190,64,8,224,40,19,1,114,101,133,12,2,114,101,109,224,38,19,0,
+117,224,80,0,96,9,224,42,20,192,82,64,8,224,40,19,2,110,101,103,
+96,39,2,110,101,103,224,38,19,212,185,2,97,110,100,224,38,19,0,111,
+147,112,1,111,114,224,36,19,0,120,160,37,0,120,224,38,21,2,105,110,
+118,96,38,2,105,110,118,224,38,19,2,115,104,108,96,38,2,115,104,108,
+224,38,21,128,116,1,115,104,224,116,20,0,97,192,39,64,8,224,79,20,
+2,117,98,116,93,46,128,84,160,12,224,48,19,1,61,61,96,42,69,199,
+224,36,17,0,47,128,36,0,47,224,36,10,68,139,195,135,0,60,224,67,
+19,0,60,128,67,0,60,224,67,14,194,185,0,62,224,67,19,0,62,128,
+67,0,62,224,172,20,1,117,60,130,97,224,141,20,0,117,160,142,0,117,
+224,143,11,224,38,2,0,62,128,37,224,149,20,0,117,160,150,0,117,224,
+151,21,1,111,114,130,171,1,111,114,226,171,20,0,99,161,233,0,99,225,
+232,21,1,102,43,96,37,0,102,228,39,10,224,36,2,0,45,128,36,228,
+45,10,224,36,2,0,42,128,36,228,51,20,1,102,47,128,36,0,47,224,
+36,20,162,76,0,102,226,77,21,0,102,162,78,0,102,226,79,11,224,38,
+2,129,199,0,102,225,199,20,0,102,161,199,0,102,225,199,21,0,102,129,
+199,0,102,225,199,20,0,102,161,199,0,102,225,199,21,0,102,196,155,64,
+8,224,40,20,84,48,128,41,116,58,224,42,19,1,114,101,183,105,96,9,
+224,42,19,3,105,116,111,102,96,41,64,8,224,40,19,2,115,101,113,96,
+39,2,115,101,113,224,38,22,1,117,97,164,171,96,10,224,44,19,224,43,
+1,224,42,24,2,115,99,109,150,65,64,8,224,208,20,192,40,64,8,224,
+40,19,1,114,110,128,248,1,114,110,224,247,20,3,73,79,46,62,161,201,
+128,10,224,44,24,224,43,1,224,42,22,5,114,101,116,117,114,110,192,46,
+128,13,224,50,22,0,112,80,253,192,49,96,12,224,48,22,7,115,101,114,
+105,97,108,105,122,152,18,224,16,3,224,56,22,1,100,101,224,58,8,224,
+18,2,224,117,23,2,116,100,105,224,216,0,96,12,224,48,25,1,111,117,
+224,216,0,128,13,224,50,25,1,101,114,132,220,224,13,0,224,50,22,7,
+103,101,116,65,114,103,82,101,129,248,224,16,3,225,118,23,7,101,114,102,
+111,114,109,73,79,225,122,0,192,16,224,113,23,0,99,224,106,0,0,99,
+224,42,19,3,114,97,105,115,129,103,96,9,224,42,19,4,99,97,116,99,
+104,96,42,96,9,224,42,19,238,129,2,128,10,224,44,19,4,110,101,119,
+67,65,147,28,1,76,101,129,188,224,18,5,224,60,19,3,112,101,101,107,
+192,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,1,80,116,130,46,96,9,224,42,21,1,
+68,98,132,151,96,9,224,42,21,2,70,117,110,224,88,1,128,12,224,48,
+19,5,65,46,97,108,108,111,130,22,160,11,224,46,21,0,115,195,129,128,
+10,224,44,21,229,248,0,128,10,224,44,21,2,119,114,105,188,181,160,11,
+224,46,21,167,142,64,8,224,40,19,2,98,115,43,136,76,64,8,224,40,
+23,0,46,224,41,0,0,46,224,42,23,224,84,1,224,85,22,160,167,64,
+8,224,40,21,168,56,64,8,224,40,21,136,58,1,98,115,232,59,20,1,
+98,115,168,60,64,8,224,40,21,134,34,1,98,115,230,32,20,1,98,115,
+166,118,64,8,224,40,21,198,242,96,9,224,42,21,3,112,97,99,107,160,
+43,64,10,224,44,21,1,117,110,224,46,2,128,12,224,48,21,4,108,101,
+110,103,116,132,156,192,12,224,48,21,3,115,117,98,115,163,60,192,12,224,
+48,19,192,9,96,48,224,22,0,224,48,18,1,116,111,224,46,0,128,10,
+224,44,19,3,104,101,97,100,224,46,0,192,12,224,142,20,0,112,171,54,
+0,112,235,55,21,1,112,50,129,159,64,8,224,40,21,1,110,101,169,226,
+64,9,224,42,21,0,102,167,97,96,9,123,9,147,12,224,0,100,82,245,
+0,54,154,131,86,137,87,235,187,178,179,132,119,21,243,144,17,1,32,61,
+84,168,0,110,153,208,147,139,224,56,0,0,50,109,202,248,55,5,82,168,
+252,147,4,2,95,105,116,103,149,64,27,154,211,243,255,0,155,208,244,14,
+19,253,3,21,64,82,155,14,224,110,4,160,108,154,27,4,95,49,54,51,
+48,64,5,0,52,91,69,6,49,54,57,53,32,95,49,116,33,65,7,1,
+49,50,128,43,216,236,116,165,0,52,120,152,88,10,2,95,52,50,124,120,
+0,53,121,62,156,126,148,230,186,97,64,59,152,71,9,95,52,50,53,32,
+75,32,85,32,75,184,11,64,65,88,87,90,141,248,119,3,64,75,224,151,
+9,0,56,86,115,224,144,1,90,154,129,178,213,124,248,99,0,181,144,128,
+144,0,56,161,10,0,75,128,53,221,15,152,137,152,108,224,59,1,124,221,
+128,10,64,220,85,160,0,52,64,153,117,251,0,80,120,3,0,79,157,117,
+161,105,90,148,192,94,83,117,2,90,32,83,184,37,1,85,32,96,14,0,
+67,64,48,161,251,65,38,118,194,213,243,64,0,192,109,97,87,2,53,51,
+57,89,211,0,50,160,36,0,35,153,83,224,38,8,1,49,56,193,47,160,
+242,87,106,1,48,48,152,113,2,50,55,56,192,99,193,173,0,56,86,18,
+3,95,54,57,56,151,148,130,225,0,54,87,50,96,202,192,110,0,64,122,
+10,192,0,248,219,0,128,236,192,107,182,165,93,167,0,49,185,51,193,69,
+227,59,0,94,154,96,64,224,17,6,64,117,0,56,225,233,0,97,143,0,
+54,186,98,2,75,32,90,64,215,97,109,96,24,131,36,0,89,250,66,0,
+153,113,0,67,119,121,254,90,6,64,46,195,55,254,212,0,161,185,250,81,
+0,225,203,0,148,105,97,52,156,132,247,251,5,64,181,0,55,92,148,0,
+49,123,171,128,64,64,78,159,195,226,111,3,224,54,1,97,68,64,221,157,
+34,187,69,224,130,1,96,113,250,230,1,162,116,255,28,2,64,194,131,167,
+120,94,153,148,220,0,3,67,32,95,50,86,29,1,95,50,85,223,225,245,
+4,192,34,64,160,188,14,160,117,252,65,4,2,53,48,52,184,184,188,129,
+95,116,252,134,2,2,95,49,54,120,119,96,0,193,49,89,238,0,55,252,
+131,0,161,183,225,59,0,224,92,0,163,107,0,67,162,45,97,237,0,49,
+99,42,0,80,68,5,66,123,193,8,65,199,99,11,153,13,161,71,224,105,
+5,160,97,122,58,1,95,52,125,161,1,95,55,153,37,253,55,4,129,51,
+222,221,162,155,192,69,2,95,51,52,64,158,64,30,224,210,0,96,32,160,
+180,66,105,188,87,64,174,64,100,64,77,196,227,156,217,187,230,224,2,0,
+128,47,255,49,0,224,8,0,160,24,224,25,11,155,158,96,0,224,71,0,
+224,29,3,224,61,2,224,33,2,224,42,3,224,69,6,224,37,11,224,2,
+4,224,40,1,224,113,17,224,23,0,224,44,2,99,95,224,2,23,224,48,
+4,225,31,8,128,34,224,17,6,224,49,41,96,17,224,53,3,225,189,0,
+224,1,9,224,94,5,225,27,23,224,2,3,224,56,5,224,57,4,225,9,
+24,225,6,5,225,249,16,224,61,15,224,125,9,224,65,42,224,68,11,225,
+40,2,224,55,12,224,2,7,224,64,9,224,134,6,159,172,224,86,2,224,
+145,22,224,86,15,225,184,9,224,1,7,0,83,230,135,3,0,35,230,34,
+1,224,0,2,224,195,13,224,2,17,225,103,12,224,138,40,196,65,224,0,
+4,224,108,13,224,2,21,224,138,57,231,155,2,224,0,1,225,177,3,192,
+108,161,182,224,96,6,224,177,19,224,89,8,224,143,13,224,1,1,224,153,
+5,198,197,224,0,3,226,209,12,224,2,19,224,131,54,233,83,3,192,0,
+224,116,25,192,2,227,82,15,224,131,37,166,82,224,65,32,224,114,11,224,
+47,19,225,119,8,137,152,224,0,5,224,223,19,224,2,9,224,126,52,231,
+138,0,224,63,15,224,115,28,224,106,13,128,1,224,112,6,136,254,224,0,
+3,224,97,13,192,2,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,224,41,7,224,80,5,224,130,
+11,128,1,229,3,6,227,223,8,227,220,11,228,117,28,224,129,5,224,124,
+13,225,7,8,224,126,7,230,156,1,96,44,225,19,7,225,13,16,227,228,
+9,224,122,9,224,124,7,0,57,224,123,4,224,202,3,231,31,10,136,183,
+224,14,15,224,154,1,224,110,3,192,142,224,19,3,225,126,6,227,228,1,
+224,73,3,64,38,141,15,2,95,49,51,141,202,1,50,54,76,183,1,53,
+57,64,180,110,154,111,91,224,19,2,228,48,4,224,129,1,64,67,235,128,
+1,64,0,193,72,128,108,144,9,75,30,110,48,236,181,0,224,69,3,235,
+92,12,234,85,8,224,255,7,0,67,77,200,2,51,56,49,160,235,2,64,
+35,57,224,91,0,224,88,21,160,152,224,83,0,192,43,231,50,6,198,21,
+192,46,64,14,224,40,12,163,107,224,37,0,224,34,10,129,58,208,178,224,
+25,3,229,247,5,0,73,192,13,173,200,64,5,233,79,2,96,126,142,196,
+224,220,3,97,116,64,16,1,64,80,225,59,1,226,230,8,130,64,160,236,
+98,95,224,248,1,224,25,2,77,94,172,219,161,79,225,208,3,224,74,10,
+226,205,11,65,10,192,139,224,18,2,226,44,5,2,95,50,50,237,148,3,
+226,55,17,240,12,0,144,141,224,106,6,113,120,224,16,20,77,145,224,16,
+4,143,149,1,55,50,242,217,2,31,92,51,52,38,109,104,115,47,83,121,
+115,116,101,109,47,67,111,110,115,111,108,101,47,83,105,109,112,108,101,82,
+101,97,7,100,108,105,110,101,46,104,115,64,39,5,44,49,54,50,58,53,
+147,58,224,89,4,163,91,225,121,1,224,237,17,224,142,5,238,127,18,224,
+41,9,226,210,10,225,231,0,228,95,0,64,5,225,148,8,227,49,8,192,
+62,130,185,192,65,128,8,130,208,66,74,227,224,5,226,154,1,224,2,0,
+239,237,11,224,120,3,224,67,4,242,89,0,112,106,4,32,95,53,55,57,
+82,174,224,239,1,226,8,2,96,133,160,5,64,141,224,137,3,243,136,2,
+81,118,1,32,95,111,240,144,159,160,71,64,53,177,240,100,189,243,81,3,
+224,42,3,64,41,64,235,226,105,12,224,0,1,224,204,0,145,99,224,243,
+10,161,103,97,69,224,171,2,64,20,224,244,2,128,146,80,165,224,173,4,
+196,63,162,247,242,115,0,160,64,64,229,224,253,1,128,43,128,5,224,48,
+5,224,55,1,100,77,164,82,224,6,3,225,148,10,241,164,2,192,87,130,
+10,193,121,227,142,18,224,168,2,128,44,225,172,9,100,85,225,110,2,224,
+181,9,224,174,5,224,127,0,166,247,160,175,162,158,224,147,1,128,107,134,
+196,1,95,52,102,0,160,6,225,140,1,231,59,0,128,15,245,167,5,225,
+3,12,226,185,2,227,150,1,3,49,56,52,57,149,180,224,234,1,228,212,
+10,98,147,148,8,162,145,96,246,236,231,0,229,87,2,1,64,64,84,88,
+148,27,225,58,1,224,241,2,161,75,227,96,5,1,85,32,237,51,1,227,
+41,8,226,63,3,231,112,6,224,95,12,225,12,2,226,214,9,224,105,2,
+224,32,2,227,238,15,225,51,31,97,195,243,186,9,211,214,225,55,15,224,
+220,8,224,22,2,225,196,4,96,115,228,166,1,224,171,9,226,139,5,0,
+66,163,148,228,136,0,165,82,164,60,161,128,70,203,244,165,0,133,29,226,
+136,0,128,27,225,105,0,163,104,224,63,3,128,240,71,87,224,67,15,0,
+67,135,45,224,70,9,226,2,0,228,249,5,226,185,14,227,188,8,195,99,
+131,169,164,249,228,194,19,161,193,228,171,2,160,159,132,174,195,112,225,164,
+5,228,197,2,215,228,120,100,193,83,250,124,12,6,92,56,38,32,92,56,
+38,199,69,153,248,182,254,248,15,0,164,97,128,149,0,82,224,10,1,224,
+192,10,193,247,227,21,7,234,125,12,192,20,128,204,226,174,5,174,41,224,
+26,5,231,148,4,98,114,64,163,231,208,0,132,152,65,195,169,250,102,109,
+248,58,3,64,23,248,71,1,99,121,96,4,161,178,164,221,96,249,68,204,
+65,71,71,163,196,205,166,196,0,50,64,22,134,230,0,54,138,84,230,210,
+1,230,47,3,98,61,107,222,64,137,98,227,97,78,110,23,2,95,52,52,
+198,220,86,185,187,97,1,50,52,64,92,64,225,0,58,129,74,64,20,232,
+106,2,0,55,232,10,6,122,56,0,54,160,169,2,52,32,95,109,233,172,
+51,91,241,1,64,35,128,167,2,50,48,55,233,102,2,12,103,101,116,82,
+97,119,32,102,97,105,108,101,100,129,251,225,72,3,2,95,51,48,97,98,
+64,130,155,164,7,94,71,69,84,82,65,87,32,64,17,155,128,5,85,32,
+75,50,32,65,151,118,90,116,64,167,122,216,64,254,3,95,51,57,55,128,
+193,154,4,64,25,186,113,160,250,0,56,128,30,153,244,3,95,49,50,57,
+96,90,0,51,96,14,226,86,0,224,216,8,2,95,49,56,155,80,195,0,
+225,6,23,0,50,66,201,193,2,99,17,254,20,1,227,13,10,12,83,97,
+118,105,110,103,32,99,97,99,104,101,32,190,7,0,49,123,240,73,173,123,
+91,2,95,51,53,193,182,64,236,1,49,32,192,16,64,191,221,142,2,56,
+52,48,96,207,152,142,160,172,250,12,2,0,51,97,36,1,52,54,99,42,
+228,69,6,64,181,64,72,0,35,66,103,194,230,250,8,1,1,51,53,64,
+138,1,56,51,130,118,230,247,9,64,27,64,86,1,95,51,64,125,160,151,
+130,92,160,135,121,151,0,50,64,19,160,46,69,107,0,58,128,54,14,10,
+65,32,73,79,46,115,101,114,105,97,108,105,122,101,64,196,64,30,66,1,
+18,97,100,100,95,108,122,55,55,95,99,111,109,112,114,101,115,115,111,114,
+96,30,226,14,0,4,51,32,75,52,32,93,49,224,1,5,233,232,1,160,
+141,65,193,162,213,1,51,55,65,142,2,52,49,55,94,64,193,199,192,23,
+97,237,0,50,77,77,164,206,0,51,111,2,64,21,67,97,0,75,130,176,
+96,42,165,166,64,92,130,112,253,102,0,0,51,133,86,1,55,57,67,124,
+186,37,64,62,224,35,1,98,18,226,19,18,13,42,42,42,32,69,120,99,
+101,112,116,105,111,110,58,130,21,96,69,130,172,162,133,160,201,92,118,0,
+52,67,194,0,52,174,143,129,247,224,231,3,132,48,194,17,225,1,4,128,
+50,166,106,224,88,3,197,208,161,1,91,84,128,176,0,52,79,31,224,171,
+1,2,46,104,115,237,15,0,134,124,225,77,1,128,114,224,69,1,224,15,
+1,1,52,55,102,103,133,112,98,18,0,50,70,46,192,194,97,127,225,106,
+0,64,125,76,181,0,85,162,78,197,68,227,145,2,224,178,0,65,14,1,
+64,95,135,202,224,31,8,65,156,133,252,224,92,5,229,61,0,96,0,65,
+104,220,34,128,172,195,36,0,52,67,231,1,49,56,106,115,1,49,54,196,
+175,64,82,66,92,6,52,50,53,32,75,32,85,233,94,0,1,95,52,191,
+112,64,35,131,14,237,167,0,239,192,2,64,251,0,56,104,23,0,32,66,
+83,192,61,224,7,3,72,64,166,51,64,14,235,97,5,227,98,2,228,138,
+13,199,204,226,122,2,167,102,226,124,12,14,99,111,109,98,105,110,97,116,
+111,114,115,58,92,49,48,167,167,1,95,55,132,57,100,158,224,187,0,160,
+221,65,187,224,221,14,96,155,0,51,113,82,128,30,226,29,2,97,247,1,
+49,56,65,76,0,53,127,235,231,220,4,193,210,191,156,226,185,6,2,49,
+56,49,128,143,64,27,190,200,227,151,2,193,61,192,81,196,178,192,121,225,
+51,9,0,51,96,223,229,191,5,227,3,5,225,65,35,2,112,105,108,69,
+213,14,117,115,101,100,32,98,111,111,116,32,109,111,100,117,108,165,224,2,
+64,95,52,245,29,0,225,209,1,225,23,18,238,185,2,226,211,11,111,210,
+226,209,2,128,185,0,85,99,34,64,254,227,222,0,65,12,226,60,38,225,
+7,4,224,250,25,17,116,111,116,97,108,32,105,109,112,111,114,116,32,116,
+105,109,101,32,64,0,128,245,64,121,200,149,4,49,56,50,54,32,122,156,
+166,237,134,57,224,72,1,0,109,228,85,1,129,205,233,117,4,244,34,2,
+64,14,130,3,64,7,137,139,1,95,52,103,55,160,181,2,55,54,52,64,
+4,135,145,1,49,56,180,205,211,112,66,190,134,110,232,49,2,100,242,67,
+249,64,221,136,89,96,40,134,120,167,2,201,235,97,82,106,238,97,78,2,
+95,49,51,64,116,235,35,1,141,6,0,73,104,125,65,104,132,88,226,206,
+7,137,220,64,64,128,213,106,78,138,3,163,56,226,191,2,97,171,228,193,
+1,1,49,56,103,183,194,10,226,11,2,202,14,163,68,0,80,135,26,98,
+114,98,25,161,90,110,13,247,153,0,114,62,130,44,130,67,3,95,50,51,
+50,82,63,96,123,129,35,1,49,56,196,2,138,160,245,222,1,129,111,2,
+49,56,50,228,252,0,64,148,135,175,71,174,73,192,96,21,135,18,0,85,
+231,183,10,64,29,233,151,0,65,106,230,81,17,162,192,1,52,48,72,221,
+0,53,96,254,96,14,3,51,32,95,53,131,209,0,39,64,14,102,92,88,
+19,64,152,160,170,194,45,194,220,0,48,65,206,226,220,19,17,67,97,110,
+110,111,116,32,102,105,110,100,32,112,97,99,107,97,103,227,208,8,163,118,
+227,102,1,230,152,0,231,75,2,201,38,1,95,53,182,30,64,239,134,113,
+231,87,2,3,112,107,103,34,130,51,166,95,226,158,0,107,196,1,95,53,
+69,84,64,30,171,198,3,49,56,49,53,73,29,66,188,98,98,97,24,226,
+102,0,0,51,166,229,249,130,0,227,57,0,128,11,1,95,52,130,129,128,
+13,65,212,76,149,182,79,229,59,37,193,10,232,108,7,0,56,234,92,2,
+225,27,8,0,52,98,93,225,126,19,0,91,64,10,161,112,228,75,3,0,
+50,64,217,224,16,0,161,35,97,143,4,79,32,79,32,35,76,15,66,88,
+130,92,4,79,32,35,57,51,244,10,1,224,124,0,162,56,224,124,16,132,
+210,69,211,229,194,8,226,163,13,129,235,79,8,65,218,233,47,10,128,54,
+68,182,231,24,8,1,95,53,64,210,209,24,65,112,128,83,228,1,4,227,
+7,5,236,192,17,225,150,6,164,175,230,2,34,206,250,230,2,30,1,32,
+40,225,162,6,236,207,8,65,132,67,2,193,132,96,84,224,12,0,230,199,
+4,64,154,72,253,231,199,2,247,97,4,225,13,215,241,178,1,235,157,13,
+138,154,1,95,53,245,96,0,100,7,69,11,200,58,160,84,2,49,56,49,
+205,190,226,79,12,227,213,34,227,173,29,227,48,1,110,218,0,100,227,55,
+8,235,132,4,209,12,71,188,1,53,55,166,204,0,56,135,70,4,95,49,
+55,55,32,168,136,133,44,73,27,230,28,1,233,215,49,224,197,35,105,197,
+224,195,6,227,249,40,0,45,64,69,208,252,131,253,194,73,230,125,24,234,
+70,3,102,134,3,111,117,110,100,206,28,230,128,2,204,46,226,55,27,1,
+49,56,113,28,226,56,4,0,55,242,76,0,65,105,136,241,136,140,65,78,
+0,55,129,145,140,252,136,238,71,250,134,125,128,50,0,54,231,237,0,231,
+211,1,64,23,207,38,192,1,230,155,2,1,57,57,65,45,237,134,0,128,
+31,224,192,3,225,98,0,193,95,2,95,53,55,209,19,195,237,64,5,228,
+31,1,250,64,4,226,35,37,237,48,4,235,251,10,225,163,17,6,112,97,
+114,115,105,110,103,193,149,192,0,213,151,196,186,125,132,224,181,2,150,23,
+246,29,0,224,173,69,226,83,19,64,175,1,101,100,237,230,3,100,157,0,
+55,174,184,224,189,5,224,195,1,224,19,0,160,207,252,60,0,252,66,6,
+224,200,3,163,43,64,200,165,174,224,203,1,229,175,1,213,2,0,55,68,
+188,2,95,52,57,139,180,0,51,92,185,170,126,229,235,1,131,50,128,15,
+224,225,16,195,48,7,97,109,101,32,100,111,101,115,99,58,12,97,103,114,
+101,101,32,119,105,116,104,32,102,105,160,29,225,179,0,161,113,133,172,131,
+86,224,96,9,0,79,152,220,130,220,232,11,2,225,48,10,221,141,224,21,
+6,137,132,227,5,19,226,217,4,253,116,4,231,5,3,228,124,6,65,24,
+65,116,0,54,78,62,0,55,177,222,97,80,228,2,7,0,53,79,181,99,
+184,254,75,1,227,123,0,224,1,3,68,78,224,28,16,191,114,224,28,13,
+64,1,224,223,20,224,53,16,234,60,8,1,55,53,224,165,4,129,79,238,
+5,1,251,232,4,163,96,224,91,3,224,35,2,224,114,7,224,26,4,225,
+166,11,225,175,1,224,235,19,240,187,12,229,107,2,97,131,0,57,90,12,
+0,75,244,159,6,225,231,16,225,240,4,228,20,37,195,42,228,20,43,9,
+116,121,112,101,32,99,104,101,99,107,228,26,4,232,193,1,2,55,54,49,
+64,204,64,71,224,53,1,0,45,64,0,224,45,1,224,221,6,225,85,17,
+225,121,1,226,10,12,231,95,4,160,194,234,33,2,194,241,125,75,207,228,
+224,0,1,224,81,11,226,208,4,226,181,47,226,37,18,226,151,0,224,186,
+53,224,153,15,64,1,224,192,4,224,40,19,224,198,23,224,200,16,225,149,
+0,224,81,7,224,224,3,110,65,224,73,8,230,228,0,224,73,3,224,64,
+7,224,2,4,224,70,3,224,30,10,224,69,1,224,143,12,226,64,1,224,
+27,7,209,74,224,92,22,192,32,229,108,14,128,37,128,93,111,18,224,8,
+12,232,104,76,227,165,19,6,100,101,115,117,103,97,114,231,189,5,131,153,
+213,169,224,0,3,237,64,9,233,32,3,233,44,4,225,25,0,228,117,6,
+64,0,96,211,225,30,4,224,223,19,226,210,1,225,146,1,133,18,167,203,
+224,24,4,235,132,26,4,100,111,110,101,32,228,96,1,224,141,5,231,179,
+5,224,91,2,224,89,17,0,44,224,76,1,128,42,237,166,7,177,169,160,
+29,232,102,18,0,115,205,232,64,43,232,66,4,224,72,4,224,69,21,1,
+32,43,192,143,224,65,16,224,62,28,224,197,12,238,102,6,224,0,5,128,
+111,99,76,226,26,18,226,228,12,233,214,32,1,95,51,66,20,170,25,96,
+17,92,150,233,218,1,4,95,52,54,52,32,224,205,1,10,73,110,116,101,
+114,97,99,116,105,118,101,161,20,96,93,0,53,96,54,226,95,5,227,65,
+45,3,108,111,97,100,238,151,10,225,17,0,228,121,1,97,253,195,241,227,
+67,0,192,14,225,16,5,66,254,164,50,139,15,228,60,0,194,251,249,25,
+2,96,58,243,21,1,164,141,83,124,82,23,243,238,3,64,161,0,52,75,
+154,144,127,245,227,8,226,238,4,241,65,5,192,198,97,225,224,94,2,72,
+137,117,140,128,37,71,210,182,183,3,64,95,55,55,64,107,230,146,2,128,
+171,224,32,0,224,45,4,64,0,78,63,246,247,0,224,16,11,224,32,8,
+0,83,64,251,0,53,64,150,0,89,246,153,0,214,150,193,13,182,87,64,
+190,80,25,1,56,49,228,136,0,231,48,3,64,37,132,242,86,76,226,224,
+0,194,211,193,86,228,46,0,144,106,81,33,129,242,1,95,57,142,242,123,
+128,254,63,8,224,157,11,251,154,1,171,1,224,10,4,224,187,4,65,105,
+192,0,224,234,11,141,23,194,103,7,67,32,67,32,61,61,32,64,121,26,
+128,86,143,205,247,99,5,225,187,4,224,244,1,64,210,128,56,79,161,0,
+57,173,200,75,226,161,55,79,134,151,118,3,95,49,54,51,87,198,0,54,
+68,19,64,6,0,50,80,0,119,39,2,49,56,49,65,90,64,7,0,50,
+118,97,64,61,191,61,1,49,54,95,196,4,95,49,54,53,57,64,12,0,
+53,64,40,157,150,224,185,0,160,60,1,51,50,120,37,66,139,160,39,227,
+121,1,2,101,111,102,131,117,64,198,2,95,50,50,68,163,96,136,249,148,
+2,64,123,153,41,1,49,51,115,44,96,121,164,99,73,73,0,54,125,202,
+195,70,2,49,54,51,100,233,135,82,161,250,0,32,206,117,1,49,54,95,
+164,96,231,97,16,0,54,147,121,2,67,32,79,229,16,0,64,114,183,104,
+224,231,3,0,57,68,55,1,56,48,76,124,196,88,224,174,1,129,113,127,
+122,228,185,3,3,77,97,105,110,96,223,0,79,192,170,68,223,224,36,6,
+0,109,192,36,160,128,64,127,183,201,68,77,225,104,1,0,49,224,52,3,
+110,205,96,54,225,141,5,0,52,96,234,224,19,1,100,248,129,212,225,231,
+3,0,51,127,197,193,243,3,53,53,32,35,96,44,64,11,96,115,90,110,
+192,24,129,73,192,13,198,190,224,254,4,1,67,39,65,64,64,34,0,56,
+193,71,132,39,224,192,16,3,119,104,101,114,229,206,1,138,160,225,107,11,
+225,215,0,225,113,8,193,115,226,40,0,66,179,130,208,128,238,224,5,74,
+224,126,0,2,95,49,56,64,10,0,51,154,108,67,2,0,52,98,133,225,
+88,7,224,242,3,3,100,97,116,97,129,177,2,49,55,51,100,166,2,95,
+49,55,161,118,224,88,2,224,99,12,1,49,52,92,155,224,93,19,5,110,
+101,119,116,121,112,162,18,1,49,55,139,224,225,231,10,0,54,96,166,224,
+101,16,96,202,128,11,64,65,64,73,122,100,1,49,54,96,73,0,55,64,
+229,1,95,54,100,133,1,50,50,76,72,132,32,245,161,4,165,76,1,49,
+48,111,175,0,54,110,40,161,166,224,242,0,224,130,18,64,48,224,232,18,
+224,229,35,0,55,167,203,225,174,8,0,54,90,12,64,32,0,57,128,65,
+224,140,13,0,54,71,113,229,32,7,0,55,64,31,1,55,48,67,200,227,
+32,3,64,19,192,8,128,117,224,214,4,0,53,72,133,224,214,19,138,219,
+160,216,1,56,48,134,211,226,24,28,83,32,224,88,3,224,11,27,224,124,
+6,5,102,111,114,101,105,103,132,134,224,152,18,84,240,0,51,96,123,0,
+54,229,245,1,224,47,7,4,99,99,97,108,108,224,73,12,3,99,97,112,
+105,163,242,67,228,101,16,224,32,4,4,117,110,115,97,102,196,21,192,34,
+1,55,55,193,195,0,55,102,247,224,199,5,97,116,225,232,3,225,37,13,
+0,56,150,155,224,28,11,72,79,227,228,4,94,180,160,54,1,50,56,103,
+7,225,16,6,3,110,102,105,120,128,225,65,127,224,45,1,126,117,224,45,
+12,0,114,224,211,0,224,92,3,92,127,224,46,12,160,45,96,28,96,151,
+65,104,228,72,2,2,105,103,105,97,144,231,112,6,107,59,0,49,112,70,
+71,79,87,171,125,188,171,117,3,53,56,32,95,67,23,249,80,13,88,166,
+160,32,224,33,8,174,70,160,91,65,39,224,36,4,224,0,0,227,29,0,
+159,96,0,54,230,62,2,226,202,16,226,213,15,0,50,226,177,21,3,99,
+108,97,115,157,63,65,252,122,224,196,15,161,199,224,60,6,3,53,32,35,
+49,192,30,96,164,226,11,17,0,54,65,115,130,108,226,109,8,130,15,224,
+33,3,224,232,6,230,164,3,232,134,0,1,95,49,84,182,1,95,49,202,
+171,224,246,16,74,190,228,37,20,5,110,115,116,97,110,99,229,0,1,164,
+105,128,94,1,56,48,135,14,224,94,17,230,68,22,5,100,101,102,97,117,
+108,196,133,99,127,128,43,130,10,70,10,208,11,232,94,3,0,54,228,19,
+7,110,120,109,209,1,50,50,100,35,0,52,66,17,224,103,1,1,40,41,
+195,62,233,208,1,194,65,0,54,96,92,0,55,64,76,96,222,226,71,6,
+227,226,18,229,97,22,230,56,3,133,95,228,74,14,193,68,224,92,0,0,
+85,97,91,98,60,224,95,18,5,112,97,116,116,101,114,197,68,1,56,48,
+203,128,224,174,15,230,91,8,224,91,32,163,101,143,216,225,29,3,230,132,
+22,0,52,91,146,230,19,31,7,100,101,114,105,118,105,110,103,229,202,12,
+226,135,4,229,127,4,228,224,2,69,116,0,80,72,40,133,69,228,117,11,
+232,102,0,231,99,5,224,12,17,225,209,15,224,24,5,1,114,111,171,28,
+225,235,0,230,185,13,230,205,25,5,110,111,109,105,110,97,230,207,13,6,
+112,104,97,110,116,111,109,192,104,224,130,6,11,101,112,114,101,115,101,110,
+116,97,116,105,111,192,65,170,168,158,181,74,214,2,80,32,35,141,146,0,
+80,109,96,66,19,236,120,6,100,211,110,144,209,68,145,212,224,185,8,235,
+114,12,201,10,235,100,9,0,55,139,58,64,22,227,210,29,65,207,101,103,
+235,145,0,235,141,4,141,105,78,193,0,32,142,235,173,141,65,222,143,7,
+0,79,128,91,0,56,118,134,112,209,80,5,106,80,1,49,49,91,230,237,
+2,0,96,0,224,205,9,1,55,55,225,95,2,1,60,45,161,81,224,216,
+16,179,58,224,26,0,96,216,1,55,52,100,113,224,216,3,94,73,227,6,
+17,236,168,2,96,207,0,57,112,169,74,57,0,51,64,8,0,90,64,49,
+75,9,220,149,224,147,0,225,33,10,241,126,5,113,217,114,47,124,226,177,
+221,96,0,66,10,0,54,191,61,0,83,65,84,86,93,2,67,32,60,182,
+42,224,18,6,64,56,224,18,6,117,125,232,27,3,155,226,123,233,1,85,
+32,232,55,6,163,11,128,27,2,95,55,49,70,220,193,235,128,184,224,44,
+2,140,13,224,44,15,224,42,4,131,217,160,42,0,75,64,40,165,19,72,
+109,224,174,4,65,32,240,59,5,224,58,3,161,200,136,197,160,108,224,116,
+2,112,59,224,90,0,65,58,0,53,227,95,0,131,97,133,208,225,119,3,
+64,37,144,255,160,35,96,75,163,132,176,229,236,51,7,205,171,108,51,64,
+39,208,152,96,64,110,172,160,64,144,62,148,221,226,0,0,224,14,6,96,
+208,226,116,1,224,107,0,113,231,76,47,232,202,2,229,84,2,0,55,141,
+156,2,55,57,53,226,163,2,5,83,79,85,82,67,69,164,135,232,127,4,
+0,53,163,87,103,182,96,76,224,135,7,232,253,5,98,254,64,121,224,158,
+15,180,144,160,37,115,61,96,85,224,118,5,97,184,96,141,136,68,0,51,
+227,95,17,0,97,201,197,0,54,100,42,224,50,0,235,171,23,230,103,2,
+65,250,224,86,7,2,104,105,100,198,187,224,155,13,232,105,0,112,240,0,
+55,86,49,165,48,232,105,2,224,100,22,8,113,117,97,108,105,102,105,101,
+100,128,103,65,250,177,185,240,53,24,1,83,39,116,200,2,49,55,57,96,
+87,1,55,57,207,101,66,198,232,22,20,241,171,2,0,56,143,125,128,19,
+199,128,232,110,13,96,96,224,95,0,234,163,13,224,46,4,74,41,1,49,
+54,71,185,1,64,58,129,30,2,10,65,32,85,19,84,134,64,17,230,196,
+1,213,2,64,7,131,92,96,109,96,47,96,21,192,50,0,54,243,201,0,
+225,88,0,83,232,0,83,96,139,129,140,133,167,0,85,134,231,228,191,13,
+128,31,0,90,176,129,138,96,96,0,64,98,131,250,133,158,228,114,1,64,
+25,131,238,66,253,230,17,1,64,39,0,50,64,159,77,43,96,138,100,149,
+166,197,132,49,165,181,117,190,251,14,0,224,30,0,96,162,87,216,192,14,
+125,146,64,8,213,204,224,16,0,182,22,224,67,1,98,2,230,24,6,231,
+57,0,230,59,4,64,30,0,80,67,124,244,166,1,181,234,246,163,2,192,
+10,232,39,3,224,234,1,199,143,104,14,96,11,226,87,9,0,53,131,26,
+128,41,97,25,250,15,6,165,132,99,246,230,244,4,150,151,242,17,0,241,
+241,3,128,250,232,45,11,128,255,64,10,150,210,248,230,5,96,0,65,184,
+133,142,231,228,6,84,160,194,40,96,95,232,1,4,135,221,232,252,1,97,
+99,129,216,121,176,160,51,232,244,2,224,19,0,232,250,11,153,202,0,66,
+242,200,1,224,211,23,1,95,56,176,180,128,193,134,40,229,130,1,234,120,
+13,228,240,16,114,108,100,176,72,187,1,55,57,128,147,230,79,10,229,165,
+2,162,1,130,80,97,155,161,85,132,247,224,78,8,224,126,4,230,151,13,
+224,77,0,1,39,66,66,135,226,140,2,73,86,131,160,180,37,74,225,73,
+221,123,165,1,95,57,238,245,0,128,38,65,18,183,97,229,39,4,224,5,
+26,225,229,3,65,21,230,214,6,224,173,0,2,64,95,57,101,176,0,51,
+226,227,8,176,187,160,246,225,196,6,138,142,229,70,16,165,180,96,36,99,
+11,112,231,160,51,229,188,1,234,99,9,2,95,49,55,101,73,96,9,89,
+120,229,109,6,109,151,229,244,30,143,25,67,102,230,175,5,230,7,5,224,
+96,4,3,54,32,95,54,76,70,1,95,54,113,41,224,105,23,99,91,238,
+101,0,224,105,16,67,152,225,43,17,1,95,57,73,134,224,199,17,92,88,
+128,75,224,139,15,177,108,129,169,224,221,18,1,57,48,70,77,101,231,224,
+110,10,0,49,126,145,227,54,1,224,57,9,102,84,224,57,10,0,51,131,
+117,224,56,11,1,49,51,89,162,225,177,32,225,71,7,165,103,224,211,5,
+67,21,232,61,0,224,87,20,0,49,126,56,194,10,227,23,7,231,255,13,
+148,255,196,73,0,50,131,81,226,161,5,67,69,234,40,8,227,81,2,1,
+49,49,242,157,11,247,108,2,0,56,101,28,227,82,7,2,49,55,56,190,
+183,233,78,3,1,55,56,136,96,237,211,4,1,46,46,173,211,226,111,12,
+0,49,98,188,0,58,131,74,1,10,65,156,248,64,14,136,137,232,107,5,
+64,115,136,8,2,56,53,32,64,15,0,54,192,15,0,48,105,239,100,161,
+2,49,55,56,107,202,64,35,228,142,2,224,225,5,5,55,55,32,79,32,
+35,88,47,100,236,227,184,5,0,52,117,194,0,55,135,6,160,8,64,79,
+253,91,0,228,210,20,1,55,55,128,69,0,55,133,144,1,55,55,76,68,
+64,7,133,76,1,55,56,196,59,125,126,96,92,252,150,7,96,71,224,145,
+2,68,222,64,49,129,122,225,112,2,85,186,65,72,241,226,4,0,111,161,
+111,251,127,11,1,55,54,175,71,240,30,29,97,246,110,200,100,62,168,69,
+253,35,6,0,51,173,165,64,204,135,20,64,63,97,16,246,226,5,4,81,
+117,97,108,68,96,157,238,171,12,182,227,96,155,105,98,160,18,96,116,234,
+142,3,104,188,232,155,0,106,43,1,95,49,106,106,70,137,225,9,9,192,
+71,201,45,144,189,0,66,93,216,66,13,1,50,53,76,153,224,63,0,2,
+79,32,35,94,63,240,180,2,192,220,230,222,5,231,90,22,1,95,56,115,
+32,0,51,237,36,17,0,105,159,38,227,99,0,224,43,4,224,55,5,185,
+86,228,101,0,224,74,7,2,116,104,101,190,110,224,77,59,2,101,108,115,
+243,104,1,160,77,227,32,4,78,127,224,245,15,0,55,247,227,22,224,245,
+0,162,144,97,124,228,49,5,1,45,62,162,193,236,212,14,65,139,197,84,
+224,132,14,66,18,224,132,18,1,108,101,247,14,1,131,22,168,33,224,184,
+19,213,168,129,18,0,58,131,209,224,132,17,0,57,97,37,224,80,18,1,
+99,97,161,102,225,179,13,224,45,6,0,111,225,55,6,138,180,64,133,133,
+41,229,194,10,107,235,64,18,226,174,6,225,202,2,0,49,81,70,67,244,
+100,185,170,53,224,73,4,199,176,226,7,11,114,227,224,225,29,224,181,4,
+128,183,197,204,224,153,11,139,34,190,136,139,250,96,136,96,56,0,54,96,
+56,67,202,0,49,71,177,0,89,109,97,67,175,68,22,76,10,173,224,0,
+32,135,33,148,159,0,49,237,105,5,160,131,166,34,229,39,2,104,194,229,
+58,6,139,83,136,219,133,1,107,6,229,5,2,3,64,95,53,51,95,23,
+109,72,128,90,166,45,224,90,4,0,50,224,90,7,231,179,12,138,85,237,
+0,7,231,222,18,236,186,0,224,150,8,229,43,0,0,83,147,153,133,200,
+77,37,147,119,0,55,155,234,79,37,192,195,139,0,225,33,0,211,55,230,
+244,21,224,5,9,226,39,1,182,13,144,118,224,24,11,130,20,235,68,63,
+66,168,192,24,235,68,25,107,65,235,58,29,1,55,54,171,103,96,19,235,
+39,21,2,49,55,54,236,169,13,203,40,72,156,96,76,249,8,3,0,55,
+77,196,224,173,8,224,96,15,251,246,10,224,96,2,0,54,197,218,224,96,
+4,64,118,225,14,18,130,15,225,111,31,132,52,130,130,225,99,19,4,32,
+95,57,48,57,71,109,106,167,138,57,228,54,19,7,112,114,105,109,105,116,
+105,118,229,29,0,143,119,66,141,232,95,20,2,115,116,114,180,30,232,95,
+6,129,191,255,67,0,64,118,128,166,64,82,135,213,117,238,93,73,74,107,
+64,22,235,181,0,96,167,97,153,0,67,188,254,145,32,3,95,52,54,52,
+234,68,4,64,54,65,117,250,5,2,97,26,118,63,97,174,227,72,2,170,
+171,225,219,12,136,150,1,49,54,111,97,233,239,4,232,164,4,0,52,234,
+188,0,129,122,231,28,0,64,171,224,132,2,97,60,160,132,0,54,228,148,
+9,67,47,236,31,1,224,9,21,242,96,12,128,120,241,173,6,102,46,132,
+116,160,59,224,13,20,197,175,225,4,0,228,211,0,142,221,209,135,165,209,
+160,6,194,132,224,147,14,230,181,0,224,94,11,66,185,65,83,224,59,5,
+236,185,11,224,70,9,225,145,0,128,70,131,83,236,244,13,235,48,9,224,
+213,2,241,116,9,160,101,224,169,3,1,95,56,109,85,224,227,9,0,49,
+68,187,96,121,64,44,107,217,226,10,5,224,74,9,1,49,55,108,49,224,
+243,38,224,240,3,64,66,133,50,224,239,15,224,237,4,192,234,224,226,3,
+66,135,217,204,2,80,32,35,65,254,131,115,64,88,226,183,1,101,96,162,
+182,230,132,11,229,22,13,1,51,50,142,130,228,245,4,143,165,1,55,53,
+237,208,0,144,61,224,54,3,109,243,225,99,6,234,49,27,224,125,7,233,
+44,2,64,184,228,175,0,224,178,18,0,48,152,133,0,55,250,28,3,225,
+237,9,239,143,4,229,179,5,139,142,245,32,11,64,167,0,48,129,66,243,
+155,11,224,68,1,251,11,9,228,156,15,1,54,52,225,96,9,162,129,80,
+135,226,129,4,64,19,192,8,0,50,163,176,225,3,13,0,52,231,135,24,
+238,226,4,4,101,102,97,117,108,193,144,208,255,224,107,6,64,244,133,196,
+248,30,8,1,53,55,233,135,7,1,55,53,131,67,227,161,1,238,228,5,
+108,214,96,83,77,50,220,7,229,19,14,224,170,3,254,105,2,130,58,236,
+211,12,64,87,134,31,229,107,4,100,221,96,157,65,244,246,12,5,127,122,
+0,80,67,155,64,64,99,90,70,159,224,137,1,226,44,0,96,93,198,18,
+235,110,17,224,196,6,228,96,30,224,114,13,64,113,0,54,231,87,2,64,
+46,131,227,66,171,231,87,3,163,154,66,84,64,29,241,98,6,228,99,4,
+1,60,45,195,129,145,189,1,56,53,76,224,96,249,64,58,196,35,2,55,
+53,49,82,27,64,88,128,15,146,27,79,211,64,28,131,14,0,53,227,14,
+4,224,250,5,242,27,27,152,206,182,251,64,79,168,46,226,82,3,77,77,
+236,72,12,141,102,167,0,248,174,3,176,159,248,171,10,153,248,0,50,87,
+239,177,139,161,52,236,144,30,64,163,64,170,3,10,65,32,85,236,13,1,
+255,167,1,0,83,224,18,6,74,60,233,66,5,139,188,113,234,137,67,160,
+126,224,39,7,224,38,3,91,206,224,38,0,81,208,184,52,64,140,233,14,
+0,130,7,66,34,233,181,6,130,124,117,200,64,113,1,85,32,224,164,6,
+67,245,224,48,4,132,6,224,48,0,160,134,224,161,13,224,37,10,225,39,
+0,206,152,194,132,135,223,236,34,21,133,149,0,54,184,136,224,19,1,96,
+80,0,54,163,10,99,12,99,58,134,215,66,99,160,24,96,26,159,214,141,
+178,253,117,0,67,107,227,72,0,129,87,96,22,162,239,224,139,9,64,110,
+101,14,0,49,128,40,186,168,65,57,92,212,154,167,200,26,100,85,96,224,
+0,50,163,193,139,27,130,110,98,236,96,24,65,0,160,143,227,58,18,229,
+165,6,2,114,105,118,223,175,225,77,0,159,159,141,170,69,167,228,81,5,
+228,225,3,65,154,229,34,1,230,66,0,229,63,14,67,65,227,129,7,68,
+191,234,198,11,233,22,6,228,253,13,167,112,164,252,88,55,229,22,4,131,
+254,65,73,232,243,7,0,67,122,79,242,172,2,0,51,195,120,170,210,227,
+242,1,230,45,18,245,189,12,96,174,230,159,10,149,49,0,80,97,205,93,
+111,96,154,253,113,0,187,227,96,25,64,132,2,95,49,49,71,42,3,67,
+32,95,56,67,6,3,79,32,35,51,244,240,4,64,178,131,158,113,78,107,
+122,97,62,130,65,224,2,0,0,83,160,49,128,214,128,1,64,37,98,52,
+4,48,54,32,95,52,95,185,160,0,224,36,3,64,1,127,65,96,0,64,
+73,157,194,107,226,224,5,13,224,114,4,96,15,254,199,2,98,215,165,61,
+100,240,254,200,5,128,38,254,201,2,157,241,254,206,2,203,218,255,198,3,
+64,96,128,108,224,27,1,160,125,224,119,3,96,122,160,221,72,199,111,118,
+172,173,0,83,65,2,1,49,32,145,94,96,32,65,130,66,216,97,128,113,
+0,1,95,56,99,212,229,253,0,0,49,88,102,191,122,140,235,255,64,9,
+134,13,157,253,3,95,54,57,53,129,167,119,28,0,67,65,73,133,246,102,
+93,64,8,96,16,82,255,0,39,214,242,0,52,86,2,0,57,105,55,0,
+79,187,77,129,254,96,169,253,48,0,64,0,1,95,52,68,255,192,159,64,
+83,64,45,87,60,1,57,51,193,225,224,79,3,225,12,2,0,50,110,173,
+247,151,9,18,66,97,100,32,71,65,68,84,32,114,101,115,117,108,116,32,
+116,121,112,162,244,224,59,1,104,166,1,55,51,64,218,3,80,32,95,57,
+85,239,2,95,52,50,97,188,1,49,50,103,69,66,179,192,51,161,155,99,
+121,160,0,66,196,197,200,108,191,0,51,128,81,133,65,224,160,11,0,79,
+144,217,163,7,226,52,0,113,146,64,142,128,126,101,48,224,217,15,1,58,
+58,128,199,225,158,0,128,57,96,190,96,95,0,49,227,103,2,67,36,224,
+146,0,64,174,0,54,229,168,1,96,179,0,64,90,253,0,85,130,254,130,
+61,0,54,87,44,198,175,98,166,97,247,195,35,0,95,64,25,96,123,66,
+83,71,127,96,108,121,95,225,90,0,64,66,1,50,56,104,226,208,65,224,
+76,5,224,70,8,0,75,224,70,3,224,67,17,224,49,4,0,65,224,120,
+2,96,0,97,212,139,119,97,215,96,113,223,125,224,170,0,224,108,0,224,
+68,1,192,60,153,230,96,58,97,45,245,186,10,65,113,229,95,6,140,20,
+235,236,6,94,196,128,200,224,61,4,98,231,161,37,229,123,3,105,181,238,
+81,5,1,51,50,96,25,248,182,15,225,178,1,224,96,4,163,85,192,28,
+229,197,7,224,26,2,196,105,224,11,0,192,8,226,224,1,129,5,203,48,
+71,211,246,29,7,231,37,2,224,10,13,237,128,4,142,185,97,26,193,12,
+161,82,96,240,135,13,224,82,24,224,93,11,101,37,162,91,96,8,192,111,
+129,131,132,96,64,24,241,11,6,224,142,10,65,119,96,15,168,227,96,15,
+65,7,169,13,225,110,4,0,56,133,3,224,19,0,109,46,0,55,72,244,
+64,6,64,216,225,131,9,97,95,64,80,204,62,225,88,11,225,55,1,96,
+187,235,216,0,133,252,224,31,5,242,99,9,136,67,138,172,226,85,4,224,
+54,1,81,10,75,13,1,32,89,129,53,152,222,166,121,128,181,134,28,228,
+241,3,201,86,237,224,15,239,179,41,167,75,224,29,2,224,191,1,166,20,
+65,42,202,16,224,120,16,97,138,195,1,64,49,251,189,19,224,49,5,65,
+166,0,58,129,89,235,147,2,245,18,2,145,60,96,148,66,4,234,30,7,
+97,146,64,64,245,126,5,1,54,57,98,238,138,141,130,77,64,36,235,249,
+0,129,176,93,241,64,12,0,52,128,131,0,54,224,66,5,225,77,3,226,
+37,20,234,201,9,118,104,227,55,29,64,2,0,79,64,215,147,136,78,230,
+167,159,66,18,64,75,109,153,228,175,3,89,179,255,223,29,223,67,246,209,
+5,232,15,2,70,192,224,68,0,130,20,96,111,96,8,96,230,235,140,12,
+66,29,225,42,2,225,230,17,74,171,227,63,2,179,160,225,23,22,131,6,
+66,248,228,52,9,192,69,161,189,224,15,0,64,148,240,92,5,225,158,4,
+233,143,9,242,87,1,130,36,229,54,13,128,55,192,42,0,51,227,231,3,
+99,70,64,126,104,53,96,128,240,162,0,0,50,112,162,64,25,228,180,7,
+68,240,230,54,7,129,192,239,229,12,251,216,6,64,144,65,222,136,34,155,
+213,64,104,195,161,177,11,88,18,161,201,64,29,195,141,66,150,0,58,128,
+22,224,150,7,167,185,226,101,3,129,178,101,70,224,157,15,253,20,8,66,
+247,227,66,3,224,5,8,229,2,2,252,53,101,238,138,11,128,13,167,154,
+224,96,3,0,54,86,213,224,8,0,118,222,227,225,4,96,60,252,82,28,
+104,18,192,19,139,62,65,38,132,135,0,83,81,169,130,238,142,82,0,55,
+79,169,0,64,169,42,92,188,0,54,97,192,64,237,208,33,250,193,1,64,
+43,129,107,251,43,11,7,108,105,116,101,114,97,108,34,96,46,241,88,11,
+224,18,5,64,213,241,69,4,129,115,187,82,134,144,112,56,64,36,123,238,
+96,174,130,250,224,34,20,172,51,1,64,83,173,121,160,112,64,57,224,53,
+15,0,57,100,121,241,215,13,224,145,21,0,48,64,6,160,0,65,34,241,
+90,3,225,56,1,131,166,96,21,128,77,96,21,247,202,5,128,5,187,197,
+230,142,1,69,65,234,17,8,64,39,165,52,224,41,15,0,61,224,41,0,
+96,219,64,111,247,176,6,234,106,4,224,46,0,213,10,0,54,86,62,98,
+22,64,58,252,187,0,224,58,10,224,147,0,245,69,1,203,194,0,58,128,
+167,224,58,4,136,30,242,251,28,108,228,224,19,3,96,80,176,72,102,199,
+233,138,2,97,20,142,72,228,84,3,78,71,224,97,4,229,69,0,131,134,
+228,104,14,2,83,32,95,183,42,0,49,99,34,128,122,214,243,109,79,224,
+46,1,227,201,2,144,173,142,61,66,74,66,127,172,152,254,66,7,128,228,
+244,255,2,137,236,165,101,163,147,77,182,130,208,162,128,114,68,64,9,224,
+126,12,137,187,64,170,0,54,225,118,5,225,111,16,128,30,242,51,4,4,
+102,111,114,97,108,99,200,225,212,2,97,54,199,17,191,168,199,93,214,224,
+231,228,0,231,195,13,70,137,226,69,16,174,232,224,112,2,89,23,226,69,
+0,231,105,5,116,137,233,108,0,0,48,171,178,71,50,128,36,233,108,2,
+97,217,189,79,192,135,255,243,20,4,76,73,100,101,110,122,9,225,176,6,
+162,140,131,192,225,225,1,178,41,101,90,98,22,145,31,1,49,53,112,97,
+0,50,96,116,108,19,133,213,0,50,72,17,0,50,103,129,64,162,229,220,
+1,64,8,228,100,2,145,87,3,64,64,64,75,129,191,130,26,96,190,227,
+199,6,234,120,3,96,243,96,36,227,177,6,0,57,155,99,64,71,0,58,
+128,50,225,1,17,0,85,225,1,48,0,39,70,189,80,164,96,246,224,213,
+35,96,160,186,79,82,127,138,156,226,182,2,103,17,71,90,226,126,0,0,
+54,68,22,66,36,129,64,67,232,224,19,4,64,84,131,176,251,90,1,231,
+212,4,128,145,226,170,4,182,146,64,76,64,56,251,59,4,245,100,5,237,
+114,0,64,152,228,133,1,224,39,13,100,65,239,154,7,224,42,11,152,205,
+224,81,7,228,207,3,189,147,96,39,147,181,235,148,2,65,169,149,88,109,
+214,225,184,0,176,135,0,85,82,0,129,183,203,167,96,155,0,35,68,233,
+229,105,0,128,12,193,85,130,61,162,166,240,92,7,65,41,216,113,148,80,
+0,85,96,46,193,69,131,181,113,118,64,14,199,6,65,103,148,61,161,229,
+104,31,236,152,0,71,39,101,3,140,143,0,54,118,119,64,63,231,48,11,
+224,5,15,225,231,3,70,202,248,87,19,4,109,111,100,117,108,148,48,66,
+92,96,236,235,159,13,146,92,64,36,175,165,166,169,149,254,234,31,30,0,
+56,144,114,128,19,234,12,0,236,14,13,96,97,224,96,0,229,86,9,64,
+57,224,46,3,77,118,202,227,224,26,11,225,5,18,6,112,97,116,116,101,
+114,110,229,134,0,148,20,224,152,21,224,78,18,0,116,213,131,224,142,1,
+224,190,25,92,200,250,1,21,255,167,3,160,163,66,26,133,19,0,90,160,
+1,152,10,64,23,229,6,6,0,56,161,182,133,43,74,218,0,58,128,157,
+224,36,4,129,114,0,56,112,40,96,37,229,43,17,136,252,229,39,19,138,
+245,88,102,69,7,0,83,163,119,102,1,245,241,12,243,244,1,128,47,195,
+169,224,49,7,233,105,5,192,111,128,53,229,111,0,97,64,224,23,21,129,
+2,240,167,6,105,165,231,58,9,97,26,231,58,18,0,81,230,57,28,192,
+215,231,46,56,224,211,22,132,153,0,79,226,62,2,2,99,97,115,98,147,
+224,19,4,3,108,97,115,115,224,20,7,3,100,97,116,97,224,19,8,226,
+123,1,224,22,5,252,148,1,224,23,4,0,111,224,17,7,1,101,108,224,
+125,9,233,107,1,224,21,6,2,101,105,103,99,138,224,22,3,1,105,102,
+224,17,8,3,109,112,111,114,224,146,8,0,105,224,57,9,3,110,102,105,
+120,224,20,12,224,123,8,96,21,0,114,224,21,9,4,115,116,97,110,99,
+224,191,8,1,108,101,224,125,8,229,77,1,224,21,3,3,110,101,119,116,
+164,17,224,22,3,0,111,224,210,8,228,134,2,224,22,4,6,114,105,109,
+105,116,105,118,224,65,8,2,116,104,101,224,44,8,224,105,11,253,9,0,
+178,135,224,0,11,66,53,134,179,132,71,123,0,0,85,196,76,69,64,228,
+39,2,244,50,2,66,142,234,208,7,1,46,46,64,108,228,224,7,128,5,
+112,33,230,179,4,98,253,137,159,228,160,2,102,28,198,41,130,251,64,135,
+234,191,20,5,83,121,109,79,112,101,97,192,239,135,8,215,22,232,24,4,
+227,151,2,64,23,232,23,3,103,152,195,109,195,104,0,67,187,243,93,229,
+0,51,250,125,2,224,89,5,235,45,37,99,238,96,96,0,55,69,245,132,
+6,228,7,17,0,55,136,162,224,153,1,234,96,23,97,54,235,55,0,225,
+54,11,228,186,36,104,181,224,169,1,228,143,30,134,139,232,245,0,74,86,
+96,204,72,157,237,48,11,106,237,138,133,119,163,237,243,14,183,184,238,32,
+4,0,67,238,244,4,128,127,64,103,169,126,226,186,0,73,102,70,146,0,
+54,102,86,138,86,188,33,225,4,10,142,160,234,71,4,225,211,0,230,166,
+4,193,127,206,209,160,128,230,100,0,130,243,163,12,130,235,121,178,64,36,
+0,54,230,137,10,134,128,64,29,174,66,0,54,226,168,5,1,64,35,73,
+226,2,64,95,57,75,250,64,38,238,46,0,225,234,12,227,34,49,143,201,
+231,198,1,227,38,2,129,10,224,23,4,118,246,227,63,19,247,23,3,227,
+95,51,231,81,11,227,82,53,226,202,18,97,96,133,10,229,95,3,143,192,
+224,17,3,1,60,45,224,17,7,133,19,224,17,3,136,237,0,79,239,241,
+5,128,14,232,220,0,193,1,64,119,132,250,64,231,0,50,159,13,136,55,
+110,117,64,31,131,227,115,161,237,66,1,148,7,237,40,3,129,24,248,190,
+9,236,226,6,64,81,131,181,0,83,195,246,1,50,52,227,86,1,178,57,
+140,205,195,127,0,51,64,63,133,172,131,34,130,94,64,25,162,74,64,28,
+64,6,66,28,225,11,3,4,101,109,112,116,121,230,161,2,96,80,224,96,
+2,98,0,65,232,97,165,65,175,253,7,2,87,177,224,21,0,64,38,192,
+24,160,147,99,191,119,90,64,15,67,45,128,98,64,209,131,98,0,54,163,
+221,64,17,171,38,154,234,96,7,129,117,108,252,0,50,77,144,65,12,65,
+43,64,15,65,12,68,73,64,42,243,157,0,64,102,225,42,1,237,14,15,
+224,12,0,64,36,64,63,211,98,0,90,128,188,0,90,161,88,224,7,3,
+210,228,108,130,167,171,160,48,231,174,3,77,162,228,110,3,0,53,164,110,
+145,2,66,215,64,29,239,91,3,79,125,179,220,101,157,96,197,229,103,0,
+67,51,76,25,5,50,48,48,32,95,56,247,213,3,237,245,28,240,179,1,
+248,14,12,155,140,224,107,0,0,85,226,23,2,1,91,93,104,73,247,244,
+17,128,11,163,159,167,1,64,226,131,164,244,172,17,166,57,166,52,64,49,
+131,94,241,47,3,149,5,230,158,12,64,52,225,66,7,240,158,2,255,8,
+6,66,88,0,53,64,50,251,91,2,64,68,131,95,226,233,5,67,176,131,
+35,100,195,0,90,240,43,17,0,67,123,181,240,40,3,96,85,68,73,226,
+70,1,224,4,4,226,31,0,70,50,231,143,11,0,53,97,228,224,240,11,
+0,53,185,69,231,143,29,224,88,5,102,51,225,193,2,128,106,64,176,239,
+22,11,64,108,0,54,193,24,231,174,6,128,83,231,175,3,161,58,166,109,
+0,53,65,131,2,52,54,50,86,64,70,38,102,42,64,38,231,214,9,132,
+144,231,214,4,231,85,3,96,0,64,138,249,248,20,0,85,233,58,39,244,
+34,10,233,57,21,67,185,165,213,1,66,39,167,29,165,29,0,53,64,249,
+239,19,3,246,132,1,153,167,100,244,226,114,5,64,90,97,89,229,96,8,
+65,92,65,218,64,5,226,128,1,193,202,192,2,0,66,224,177,0,128,237,
+224,190,3,229,253,2,197,135,230,1,22,224,156,3,226,230,40,131,175,233,
+210,78,233,208,4,233,207,10,0,53,246,136,1,1,56,32,83,248,0,53,
+97,204,0,80,96,17,0,57,64,80,248,242,7,99,41,104,105,0,85,147,
+225,160,72,132,3,0,75,66,177,0,58,128,59,4,10,65,32,80,32,64,
+11,202,180,225,171,12,129,32,113,94,160,78,128,40,198,41,225,186,5,97,
+183,192,30,97,182,225,196,77,133,203,97,194,224,22,0,225,182,1,194,84,
+64,220,246,158,0,0,67,226,108,0,1,90,32,224,74,1,64,34,0,54,
+96,34,90,32,96,14,245,109,0,2,54,32,95,212,116,71,191,64,27,131,
+37,0,85,181,109,64,21,161,57,225,55,4,118,52,225,50,1,193,25,193,
+19,128,7,97,255,224,27,0,64,59,119,3,131,81,200,78,232,70,0,254,
+63,0,168,128,64,125,174,163,141,133,0,52,101,46,229,224,5,226,231,12,
+0,80,225,45,6,1,95,49,96,64,169,197,233,212,4,128,39,143,72,98,
+87,0,50,229,91,1,64,128,194,156,192,20,225,8,8,225,217,0,192,182,
+130,12,193,229,3,51,32,64,89,125,178,64,104,64,39,66,62,194,88,64,
+7,0,89,233,128,4,67,159,129,30,133,253,128,0,194,80,67,55,224,29,
+1,104,66,97,167,192,37,96,17,195,166,192,143,96,0,73,110,99,219,136,
+71,231,81,3,64,229,180,223,87,106,161,144,0,58,128,110,106,179,96,153,
+228,211,2,227,32,22,227,20,0,229,6,3,96,24,72,86,2,55,32,95,
+175,91,224,51,2,64,15,224,45,2,128,21,105,42,224,47,8,234,167,4,
+166,121,131,18,64,0,64,182,245,105,0,1,51,53,96,5,117,135,131,102,
+64,5,64,34,131,49,2,35,49,48,192,0,68,36,64,40,162,234,64,144,
+0,80,128,42,166,180,0,51,227,2,14,225,248,6,194,139,97,215,64,16,
+129,248,163,15,129,58,224,225,1,239,115,1,138,140,128,0,0,95,98,141,
+105,191,64,128,131,143,100,198,64,90,99,155,0,73,128,155,131,29,0,85,
+96,26,130,168,3,85,32,75,52,96,113,64,18,240,41,3,193,101,224,13,
+5,71,238,112,55,94,147,69,243,2,58,49,54,69,157,97,6,224,39,1,
+99,201,65,145,96,20,104,28,104,114,1,49,54,103,224,161,23,0,52,111,
+124,64,20,129,143,174,76,160,53,75,243,0,52,110,61,195,231,227,75,1,
+128,57,161,64,0,50,103,134,246,209,9,8,65,109,98,105,103,117,111,117,
+115,157,226,160,46,0,55,75,159,226,250,0,2,95,49,49,231,240,2,64,
+218,164,245,233,108,1,64,156,90,102,90,6,170,74,224,121,23,4,58,92,
+49,48,38,224,116,3,224,41,16,11,32,32,102,111,117,110,100,58,32,32,
+32,32,160,48,132,31,224,119,0,104,175,142,2,104,190,76,5,169,115,237,
+196,3,2,69,79,70,237,194,4,224,114,7,79,245,0,48,198,42,224,145,
+21,8,101,120,112,101,99,116,101,100,58,160,145,4,66,32,95,53,49,109,
+153,2,51,51,57,241,105,1,225,53,1,131,28,240,210,8,64,162,224,18,
+6,100,143,224,18,5,64,149,130,47,224,19,2,65,99,65,133,224,150,1,
+3,84,82,97,119,161,32,224,24,5,160,248,192,24,224,218,19,2,123,45,
+35,160,210,113,47,0,55,224,246,4,2,35,45,125,192,71,224,163,8,66,
+158,224,162,6,70,130,224,161,6,1,73,110,202,143,224,164,8,3,84,66,
+114,97,150,196,128,27,165,130,225,29,6,102,147,224,18,5,141,255,224,121,
+4,66,190,64,93,67,41,242,141,6,125,198,224,23,11,111,158,231,223,0,
+224,151,1,6,125,32,108,97,121,111,117,160,180,225,41,2,224,23,4,128,
+111,99,42,0,95,115,30,1,55,50,136,164,224,25,4,224,20,1,225,225,
+7,224,195,9,137,138,192,57,0,49,136,203,224,18,4,0,50,71,64,192,
+23,193,218,235,121,44,96,0,66,166,0,54,229,173,0,133,149,0,53,115,
+188,232,19,0,0,53,80,67,231,174,2,0,53,81,130,131,43,0,54,64,
+218,115,101,76,223,128,209,96,4,68,189,205,165,65,106,96,95,0,89,105,
+180,135,3,167,92,136,102,64,99,0,55,192,150,234,70,0,234,3,2,161,
+54,243,227,4,167,145,224,46,30,99,77,96,32,160,42,224,39,15,132,245,
+160,85,224,39,17,139,120,224,206,4,161,200,172,169,244,117,3,205,82,101,
+195,160,130,71,126,244,157,5,140,218,97,87,0,53,86,27,64,29,0,53,
+83,216,98,21,192,236,224,111,25,224,71,0,192,110,96,204,224,110,15,128,
+230,224,77,5,102,100,3,95,49,48,54,74,254,65,246,64,48,2,95,54,
+50,129,217,227,165,0,96,52,64,163,201,77,130,33,65,206,64,182,64,201,
+3,55,53,32,95,66,46,3,95,49,56,56,192,9,2,55,55,32,160,209,
+102,117,80,1,226,144,0,3,95,53,49,48,227,164,7,160,168,160,255,144,
+138,225,150,5,116,115,96,29,150,15,192,29,103,98,167,68,225,58,29,139,
+64,193,58,226,5,12,134,114,224,158,0,1,95,53,72,121,1,35,49,165,
+252,224,50,35,101,205,226,15,5,224,41,13,0,57,128,150,64,232,175,142,
+0,53,93,248,128,8,171,243,192,223,151,14,160,251,0,49,76,116,97,23,
+224,245,20,132,77,64,23,193,90,170,141,64,8,128,206,98,140,129,102,224,
+106,0,137,116,96,25,81,223,160,71,228,23,2,194,191,235,128,1,224,138,
+23,106,135,194,76,242,41,4,129,217,194,26,79,104,226,83,7,192,101,128,
+176,68,238,82,2,98,186,230,244,11,4,108,105,110,101,32,230,245,0,162,
+119,1,51,56,69,94,130,119,132,50,173,125,224,211,0,76,141,100,236,165,
+14,1,50,48,133,29,96,12,0,55,99,34,3,67,32,95,57,68,71,160,
+145,96,61,0,51,64,29,143,250,65,72,0,57,96,202,128,37,96,102,128,
+43,197,59,181,251,225,51,30,228,94,29,165,48,225,188,7,97,165,0,57,
+97,68,101,176,248,229,4,225,203,10,228,139,3,128,153,130,233,96,9,162,
+59,204,203,236,184,0,195,19,133,169,96,86,75,83,64,121,64,241,228,98,
+8,160,92,205,225,245,23,0,98,103,96,78,129,14,224,227,6,1,64,35,
+74,139,96,86,97,19,226,138,28,196,69,128,123,224,21,7,0,49,120,245,
+225,131,25,135,226,229,115,23,224,38,0,0,83,108,167,225,170,16,176,234,
+96,77,114,59,0,48,224,196,4,96,220,64,21,64,243,113,222,80,218,113,
+54,224,70,8,128,28,224,37,38,80,244,224,37,17,78,239,87,136,227,125,
+4,204,45,128,0,64,156,216,211,101,19,225,83,4,224,233,7,193,44,65,
+23,224,29,4,99,5,130,52,115,117,230,99,4,204,175,234,214,16,17,85,
+110,114,101,99,111,103,110,105,122,101,100,32,105,110,112,117,116,203,185,233,
+94,5,98,235,225,108,16,98,49,192,194,129,222,128,135,141,138,96,234,64,
+167,205,140,67,238,224,161,2,224,142,1,19,73,108,108,101,103,97,108,32,
+67,104,97,114,32,108,105,116,101,114,97,108,170,71,225,119,18,64,90,225,
+119,19,226,208,1,1,95,49,128,206,224,201,21,226,54,7,225,234,42,224,
+114,9,225,193,2,227,173,10,227,132,16,97,69,133,123,227,250,0,167,226,
+241,29,4,247,193,1,112,176,228,178,7,255,113,7,107,111,232,143,37,128,
+123,147,193,224,0,2,3,95,49,54,49,133,137,65,82,64,90,0,50,149,
+208,244,142,0,224,194,3,1,49,54,232,4,4,192,195,224,181,2,96,228,
+224,181,6,224,180,69,224,75,0,64,63,128,162,224,98,1,160,79,224,32,
+1,169,89,225,162,17,75,190,145,54,66,81,101,2,243,112,1,89,185,232,
+188,4,0,32,118,85,201,67,0,85,236,104,1,115,194,64,237,102,253,88,
+83,208,48,188,166,64,154,246,86,0,225,79,8,198,107,230,113,0,194,24,
+195,144,224,16,2,234,236,14,225,35,0,224,39,2,0,83,218,124,224,20,
+0,64,1,179,134,224,115,4,129,205,147,141,224,123,2,212,176,234,108,7,
+203,83,228,240,0,0,52,105,183,229,236,2,130,237,0,85,226,246,1,87,
+174,224,238,0,64,0,192,44,96,171,193,104,162,129,226,39,53,65,25,181,
+19,224,201,1,169,92,65,119,192,228,133,119,231,137,1,226,201,0,162,199,
+130,86,1,52,56,144,4,245,103,1,128,82,194,210,192,52,224,174,6,192,
+194,192,179,224,191,32,227,163,6,224,166,2,228,48,14,196,43,128,168,160,
+181,227,111,17,224,95,0,66,149,217,206,234,126,0,136,115,193,21,233,77,
+2,0,50,143,92,3,95,50,51,49,210,9,242,133,3,1,108,101,112,50,
+224,18,3,3,119,104,101,114,112,249,224,20,3,1,100,111,224,17,7,1,
+111,102,242,190,2,224,177,0,105,62,194,226,128,110,224,50,1,0,105,96,
+50,133,226,84,131,249,247,8,108,90,154,60,145,48,227,44,5,0,49,97,
+27,160,32,142,6,224,0,0,225,232,1,136,71,197,234,105,120,140,145,65,
+109,65,60,149,71,67,250,97,28,172,63,224,15,1,99,43,224,30,2,76,
+171,224,136,4,200,0,96,77,149,130,225,134,0,206,179,106,78,0,39,196,
+48,108,238,64,154,228,45,5,130,20,114,84,160,108,0,52,74,119,224,14,
+0,202,127,237,125,7,116,98,164,59,224,27,0,129,109,3,95,53,54,56,
+142,198,225,119,1,1,46,46,243,40,1,227,87,0,224,153,3,172,44,227,
+220,4,106,77,100,69,166,54,142,59,242,42,0,65,114,128,78,68,171,129,
+254,247,169,3,130,226,129,65,1,48,49,145,245,224,25,1,202,177,177,28,
+64,18,174,216,235,94,9,163,44,0,56,102,162,1,53,56,73,32,99,125,
+241,57,0,227,55,29,224,171,18,200,115,64,132,100,240,97,174,240,212,37,
+238,163,8,224,230,0,236,96,1,97,91,236,108,7,239,132,14,130,204,161,
+160,96,225,0,52,98,25,0,80,128,57,65,82,199,167,161,96,64,61,208,
+178,250,52,1,226,129,5,224,214,10,128,139,224,214,7,226,176,0,224,214,
+120,64,40,224,214,26,160,151,131,132,240,180,0,224,145,39,161,251,224,152,
+19,160,139,224,138,18,226,198,19,0,54,66,182,64,6,99,112,226,187,30,
+0,58,137,238,89,234,236,137,0,99,238,236,94,2,96,148,130,190,1,55,
+50,229,167,2,21,92,51,52,38,115,114,99,47,77,105,99,114,111,72,115,
+47,76,101,120,46,104,115,64,21,6,44,52,51,54,58,49,52,176,106,227,
+227,0,225,211,9,224,11,2,207,52,67,11,229,19,6,131,9,137,123,128,
+199,1,95,54,64,29,2,51,57,49,83,181,0,55,73,74,1,95,54,115,
+147,64,0,104,225,233,83,2,129,62,225,197,0,133,34,224,107,0,194,132,
+225,220,1,233,69,11,128,59,225,143,5,96,81,65,140,229,159,5,224,84,
+1,226,47,4,226,32,17,0,64,138,19,161,199,72,18,224,217,13,113,135,
+81,172,224,29,12,130,2,0,49,72,69,66,0,228,207,10,128,33,2,53,
+32,67,116,234,2,54,49,55,224,68,8,1,95,49,112,156,157,52,136,147,
+224,108,12,224,86,7,193,145,104,214,232,175,5,225,24,60,224,219,25,234,
+189,1,193,206,135,7,234,204,0,247,43,21,195,97,226,8,18,172,56,131,
+107,0,51,96,127,225,66,11,224,35,0,225,169,17,224,33,28,128,242,0,
+52,161,172,225,132,12,96,13,192,14,225,173,31,225,59,13,2,95,55,50,
+104,193,68,59,204,249,65,153,0,51,79,207,128,85,99,81,132,120,131,74,
+167,189,231,211,0,242,248,2,133,24,73,21,196,230,132,211,64,22,1,56,
+53,128,30,85,206,247,6,0,224,8,0,129,22,96,48,64,17,224,48,16,
+224,42,37,64,29,0,85,195,249,234,203,5,98,156,1,95,52,105,18,224,
+164,22,133,230,86,125,224,115,24,129,95,129,94,106,51,98,61,225,33,2,
+160,18,0,66,99,55,224,195,27,224,41,33,224,237,2,97,157,128,117,66,
+77,0,54,160,47,224,193,27,160,26,224,42,29,1,64,58,99,11,140,57,
+225,249,44,64,64,0,54,202,239,163,198,232,78,2,225,168,0,0,50,91,
+53,224,84,19,224,147,0,225,172,28,192,45,225,175,3,192,119,109,192,3,
+49,54,49,50,64,42,210,234,226,243,2,131,159,160,154,231,206,1,0,51,
+64,99,224,48,1,224,101,1,224,181,28,64,21,225,231,23,225,233,5,224,
+134,77,65,143,156,196,231,190,1,225,143,11,227,56,23,225,142,58,221,69,
+224,136,1,225,161,3,224,140,3,69,174,128,79,0,52,224,149,30,224,150,
+50,64,118,237,112,2,224,146,5,129,150,0,51,224,62,5,225,63,0,201,
+192,100,191,226,91,7,169,19,197,109,143,127,224,43,8,103,23,224,248,1,
+0,48,98,164,192,106,224,212,42,248,227,3,224,131,120,224,59,0,224,107,
+0,241,21,3,110,84,0,55,234,135,2,31,68,97,116,97,46,73,110,116,
+101,103,114,97,108,46,94,58,32,110,101,103,97,116,105,118,101,32,101,120,
+112,111,110,101,0,110,112,136,1,64,58,131,40,134,222,96,229,96,139,226,
+51,19,128,169,193,22,103,9,94,165,224,218,15,192,46,224,206,4,224,45,
+30,98,85,64,162,148,22,3,85,32,75,50,96,45,64,18,145,147,96,154,
+64,14,144,101,71,130,2,80,32,35,114,112,0,80,128,24,144,48,160,24,
+96,126,128,24,87,172,4,10,65,32,95,54,103,216,0,73,149,207,196,200,
+232,230,5,144,212,121,171,241,33,6,232,44,0,0,95,92,2,1,53,54,
+248,128,13,4,92,57,50,38,110,184,113,124,42,92,99,9,83,32,95,55,
+49,50,32,95,54,54,73,189,182,76,236,93,4,64,44,72,231,86,38,137,
+97,74,1,112,173,1,48,48,97,159,0,55,76,166,4,95,49,54,48,54,
+163,114,0,85,64,22,253,44,1,247,84,0,96,99,163,107,101,11,192,35,
+96,87,3,56,50,52,32,170,222,234,165,3,243,127,8,0,48,96,0,128,
+32,138,131,192,206,0,89,209,89,193,72,196,9,234,100,24,169,219,234,99,
+17,188,175,160,65,142,25,160,19,99,136,1,67,32,244,60,1,248,81,2,
+137,142,144,116,113,126,73,246,64,16,221,129,224,221,7,177,145,102,37,0,
+32,171,243,128,20,192,110,0,85,228,230,0,128,7,65,120,176,210,66,79,
+202,37,78,18,119,217,1,90,32,89,84,161,129,210,90,235,217,4,202,108,
+134,161,0,67,90,220,65,249,0,90,96,189,129,238,224,100,2,128,102,200,
+81,156,58,229,97,2,100,144,1,95,50,159,58,109,127,2,95,53,51,128,
+58,183,93,83,193,227,11,1,97,43,163,11,230,213,4,225,181,1,204,149,
+128,13,224,30,3,0,89,129,45,224,17,2,151,127,224,17,4,192,69,224,
+21,3,245,157,2,240,214,0,224,104,3,226,53,0,224,26,0,224,61,1,
+226,82,0,64,249,192,53,226,57,0,224,33,1,184,10,238,139,0,192,2,
+160,23,224,42,4,224,21,0,192,147,237,37,0,224,95,2,128,40,224,186,
+2,244,78,2,242,169,15,213,9,192,38,160,84,224,174,0,184,0,131,153,
+160,0,224,109,76,249,11,15,126,208,224,36,2,161,85,224,103,0,229,8,
+16,193,66,96,30,160,35,254,144,2,195,164,96,44,224,12,0,150,74,224,
+23,0,224,0,1,224,111,51,178,74,224,85,5,132,126,224,50,0,128,93,
+210,28,77,147,228,74,3,225,116,0,96,20,111,179,2,49,54,48,241,27,
+0,146,30,216,50,225,161,3,210,70,210,59,68,134,188,35,227,4,4,195,
+71,160,230,226,109,1,226,207,3,224,36,5,229,37,11,192,221,226,181,0,
+224,53,27,230,157,0,224,53,36,207,109,224,106,37,211,141,160,231,225,206,
+12,197,202,225,198,12,161,184,225,233,4,220,188,161,226,225,93,2,224,33,
+3,113,35,180,49,224,96,20,233,34,6,13,98,97,100,32,115,116,114,105,
+110,103,32,103,97,112,215,179,97,225,132,49,101,148,0,39,69,149,96,74,
+255,198,5,11,117,110,116,101,114,109,105,110,97,116,101,100,127,203,1,47,
+83,128,75,255,210,3,234,195,1,161,74,64,15,225,175,24,224,46,30,161,
+15,224,92,31,161,161,227,23,2,116,84,225,40,10,111,156,128,10,225,147,
+66,106,220,149,196,234,230,1,235,56,1,192,7,135,60,70,148,138,151,233,
+1,0,225,2,12,66,81,99,168,231,44,0,96,230,64,8,64,26,64,70,
+138,59,103,151,225,255,5,3,66,97,100,32,73,154,5,32,101,115,99,97,
+112,123,131,128,201,101,95,225,65,10,128,202,224,33,18,0,57,100,39,224,
+32,19,101,237,224,99,19,96,182,224,133,21,189,78,224,33,18,218,169,224,
+33,17,224,135,23,75,210,224,66,21,158,164,224,100,20,98,66,70,89,230,
+181,16,128,202,64,22,128,34,109,88,64,8,152,66,1,95,53,73,138,5,
+53,57,57,32,64,35,88,31,66,153,224,18,1,2,64,35,57,148,127,133,
+148,130,2,3,66,32,95,51,65,67,108,97,201,235,66,84,0,50,64,122,
+2,52,50,32,128,72,162,35,228,181,1,96,117,127,187,118,201,64,207,64,
+76,133,176,238,164,2,245,74,6,98,248,228,238,0,192,26,224,23,2,2,
+95,57,56,105,251,131,5,164,92,0,79,162,181,100,89,169,244,128,144,96,
+38,107,184,131,129,224,164,2,224,103,3,247,94,0,224,96,6,224,84,8,
+224,83,24,227,58,8,128,31,163,184,202,240,160,18,0,56,224,17,0,192,
+35,0,54,224,17,4,231,255,4,97,254,224,86,1,232,9,0,224,21,12,
+100,157,224,22,10,67,13,224,22,9,150,239,224,21,7,67,124,224,66,10,
+129,255,160,22,68,16,223,205,0,89,193,66,161,214,198,187,233,59,4,229,
+84,5,251,188,2,0,53,200,20,225,151,5,96,51,199,48,235,157,1,235,
+160,0,193,187,114,37,141,116,96,0,136,164,64,95,96,68,236,211,1,96,
+42,119,229,192,42,64,123,167,73,226,249,3,130,247,224,234,5,143,21,0,
+79,133,68,238,152,9,2,78,85,76,100,245,97,194,224,37,16,2,83,79,
+72,128,37,64,172,224,37,17,1,84,88,128,37,64,132,224,37,16,0,69,
+192,37,64,162,224,37,17,1,79,84,128,37,67,170,224,37,17,1,78,81,
+128,37,68,5,224,37,16,2,65,67,75,128,37,69,20,224,37,16,1,66,
+69,161,9,65,212,224,37,17,0,83,128,36,66,127,224,36,16,0,72,160,
+187,66,232,224,36,16,1,76,70,161,82,225,121,20,0,86,160,74,99,74,
+224,37,16,0,70,192,75,225,121,20,1,67,82,160,37,225,121,20,1,83,
+79,160,37,225,121,20,1,83,73,160,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,1,68,67,157,136,0,35,101,55,224,
+38,16,1,78,65,162,60,0,50,226,251,21,1,89,78,160,38,226,252,22,
+0,66,160,38,225,131,20,1,67,65,192,77,226,254,21,0,77,160,37,225,
+132,20,1,83,85,192,115,225,132,20,2,69,83,67,160,38,225,132,20,0,
+70,163,0,0,50,225,131,20,0,71,192,37,225,130,20,0,82,160,37,71,
+232,224,37,17,0,85,192,37,225,128,21,0,80,160,37,225,127,20,0,68,
+195,228,114,21,203,156,224,0,20,69,68,148,65,1,95,52,72,120,65,108,
+72,126,160,6,78,29,0,49,64,154,64,12,0,55,128,6,0,56,72,183,
+0,57,232,164,0,2,95,54,48,224,11,0,0,58,128,7,5,10,65,32,
+62,61,32,64,12,146,51,0,62,96,11,145,216,0,60,96,11,0,54,96,
+11,3,105,99,109,112,96,14,177,158,81,223,233,61,2,0,52,65,56,224,
+20,8,65,39,224,20,7,114,204,224,20,8,66,132,224,20,7,0,49,98,
+154,224,21,9,66,99,224,106,8,137,145,224,20,5,0,53,64,231,0,67,
+104,108,224,106,2,66,123,1,95,49,98,15,1,95,49,82,134,224,7,55,
+65,21,246,183,0,212,116,71,153,189,130,243,20,1,108,149,3,67,32,61,
+61,232,205,1,135,165,0,85,64,12,64,8,0,90,213,248,231,184,0,199,
+250,103,142,233,181,0,199,184,96,216,105,112,226,101,12,2,99,97,115,172,
+75,233,96,6,0,53,175,197,248,218,0,130,16,204,159,64,1,170,63,106,
+74,139,82,211,89,232,130,0,75,72,3,67,32,60,32,180,156,200,57,224,
+234,7,224,28,0,128,232,181,236,234,212,3,192,250,224,34,1,242,39,1,
+160,68,139,94,224,67,7,225,5,2,226,52,3,192,0,107,189,171,138,2,
+49,53,54,118,161,1,53,54,66,129,177,153,224,106,95,65,92,137,235,226,
+164,7,96,34,226,228,9,226,207,11,142,97,224,63,7,224,41,11,0,51,
+131,57,224,175,7,226,250,48,64,190,248,213,1,80,140,162,191,130,35,117,
+187,96,36,164,159,82,186,214,210,106,35,1,51,32,215,183,64,54,3,58,
+49,53,56,132,123,108,10,118,149,202,196,130,86,202,192,172,38,130,186,1,
+53,56,130,187,224,77,1,96,162,192,41,147,4,170,134,115,44,211,15,0,
+39,234,195,2,120,86,217,251,64,136,183,43,88,202,69,138,237,115,0,128,
+14,237,255,1,69,91,143,85,65,86,69,104,207,33,224,35,6,81,155,224,
+35,1,171,43,64,105,215,46,224,242,2,98,106,224,242,35,227,75,2,224,
+241,48,0,54,224,241,0,224,181,2,0,52,64,89,224,181,0,0,53,64,
+152,64,43,133,238,224,179,0,225,23,0,226,90,4,0,64,224,61,1,224,
+19,3,242,20,4,224,222,29,160,165,224,222,52,133,139,121,104,88,115,205,
+16,96,69,128,53,145,26,204,203,141,59,64,98,0,57,71,42,102,160,236,
+215,0,251,252,1,64,90,229,31,2,225,61,20,130,201,224,38,9,226,62,
+13,143,240,226,66,23,242,49,6,7,100,105,103,105,116,84,111,73,189,60,
+240,100,14,250,97,1,112,110,97,151,211,5,224,49,27,96,176,224,49,22,
+64,39,96,255,97,34,206,209,100,36,101,32,121,215,97,233,227,103,6,65,
+169,226,51,6,113,69,64,45,221,42,0,89,99,130,144,241,64,4,0,85,
+128,50,98,26,186,219,65,187,166,118,207,69,242,199,6,128,189,194,80,64,
+95,91,129,128,141,230,133,4,194,43,229,56,5,154,198,98,125,194,57,1,
+49,53,98,117,66,42,64,77,219,111,242,92,0,242,136,0,231,165,27,4,
+83,79,85,82,67,140,159,160,204,195,37,64,103,143,150,184,16,92,224,64,
+20,98,56,160,19,1,54,57,74,13,0,52,132,75,3,95,54,50,56,249,
+202,2,64,205,224,174,5,144,137,128,210,64,186,196,148,97,106,104,123,160,
+186,176,95,225,76,0,0,53,97,236,252,168,5,161,89,232,229,3,246,167,
+19,15,85,110,99,108,111,115,101,100,32,123,45,32,99,111,109,109,223,249,
+136,131,228,39,5,242,220,0,243,175,14,231,125,0,129,248,232,152,0,225,
+194,13,0,52,129,194,240,164,0,97,15,129,24,86,107,97,78,253,189,12,
+224,149,38,192,103,224,148,28,130,243,224,149,25,227,114,1,224,150,7,234,
+36,5,169,145,226,251,11,224,46,30,165,177,163,75,224,233,3,224,84,4,
+242,213,1,224,177,6,192,158,224,26,0,64,6,195,163,224,18,2,160,247,
+227,147,1,66,137,0,54,98,137,0,85,138,10,129,18,254,68,0,128,185,
+3,95,52,54,50,192,101,225,173,10,64,68,134,175,0,85,225,113,0,128,
+50,67,81,242,184,0,131,94,64,205,172,139,224,72,2,100,238,67,59,135,
+104,64,81,166,78,132,131,230,76,3,254,225,1,128,100,224,74,5,128,60,
+230,48,16,230,9,5,151,172,105,107,3,95,49,55,50,229,230,2,12,92,
+51,52,38,108,105,98,47,68,97,116,97,47,89,218,2,46,104,115,64,19,
+4,44,49,48,53,58,144,172,97,91,246,104,0,224,128,0,229,172,17,192,
+109,230,18,0,128,171,229,185,4,98,9,133,185,68,129,128,196,235,179,20,
+130,78,192,25,236,29,4,128,99,235,105,61,224,69,10,129,110,224,69,7,
+186,133,130,203,141,61,224,91,5,229,144,17,4,109,111,100,117,108,237,56,
+1,237,36,2,162,200,235,231,12,135,241,237,255,0,141,58,166,152,237,15,
+10,96,173,160,88,65,101,198,241,0,80,150,61,0,85,97,123,64,95,231,
+7,2,163,198,64,52,224,13,0,127,42,96,102,0,39,250,87,9,6,108,
+97,121,111,117,116,76,144,184,97,0,225,163,9,109,225,160,25,224,2,0,
+128,47,132,40,225,207,8,166,92,228,86,1,246,111,1,224,59,0,224,56,
+12,251,128,0,128,27,229,22,1,161,25,224,31,6,111,22,207,14,216,107,
+192,7,64,247,223,38,1,53,53,64,146,0,85,65,200,185,81,98,5,200,
+23,70,147,96,37,121,188,138,42,224,58,5,192,0,224,151,14,192,34,224,
+150,2,206,192,225,68,0,66,98,249,135,4,247,132,5,215,135,196,217,160,
+36,224,24,2,225,47,0,200,237,194,168,71,121,224,127,1,228,130,3,217,
+222,96,43,66,200,162,136,96,42,224,251,1,68,9,96,252,162,170,225,3,
+18,96,128,224,51,12,113,77,96,117,224,52,4,135,230,192,63,64,11,133,
+10,227,106,0,128,28,64,7,227,196,0,250,195,2,231,88,14,130,46,203,
+153,228,96,7,251,197,3,65,117,67,220,163,104,161,137,97,61,101,94,0,
+52,161,20,164,37,192,122,225,22,13,96,35,224,226,9,140,171,64,199,251,
+34,2,224,237,3,129,186,133,15,162,0,193,161,231,114,2,129,237,64,192,
+225,29,1,224,159,0,128,233,224,158,26,160,108,225,185,5,129,237,193,108,
+64,88,191,52,224,165,3,224,95,50,128,186,192,95,192,69,128,101,226,94,
+15,234,198,0,64,22,163,150,128,0,128,97,230,13,14,225,77,1,99,103,
+228,232,1,100,167,96,25,218,153,130,54,160,10,129,90,230,54,5,233,95,
+3,228,247,1,227,222,1,227,95,1,234,217,15,192,59,132,109,225,22,6,
+226,249,3,227,247,1,163,250,224,198,0,131,222,192,13,244,205,11,224,31,
+1,226,24,1,230,253,11,129,229,224,138,12,171,230,163,107,1,48,49,241,
+128,2,224,208,6,128,169,197,18,235,160,5,134,46,7,32,101,114,114,111,
+114,32,125,102,52,224,101,2,128,95,133,99,229,105,1,224,154,24,228,33,
+5,161,79,96,43,64,23,113,194,228,136,8,234,172,1,194,107,161,177,102,
+237,97,71,161,103,245,58,0,192,16,130,31,130,59,193,116,131,151,224,13,
+9,226,9,1,5,67,32,95,51,56,49,165,107,193,44,224,171,3,131,93,
+151,87,163,176,230,66,13,161,92,131,45,151,155,64,47,225,100,1,5,115,
+121,110,116,97,120,129,100,225,98,30,72,9,142,99,64,139,135,38,168,32,
+205,191,64,22,64,150,160,22,0,54,233,204,3,97,99,137,204,64,145,192,
+47,64,181,160,46,138,228,104,232,64,14,138,182,4,85,32,75,32,65,139,
+156,67,209,1,10,65,120,204,0,53,68,38,2,90,32,85,170,16,233,228,
+4,224,18,6,132,139,224,18,4,151,146,232,20,9,65,106,232,6,5,160,
+105,1,64,85,73,82,0,64,64,7,133,119,192,15,224,69,6,64,227,105,
+231,230,62,5,160,45,224,60,1,165,188,224,169,6,65,245,224,80,6,181,
+66,224,18,3,65,142,160,65,224,80,7,224,41,6,129,137,160,41,234,63,
+3,65,75,139,79,108,52,1,75,32,79,177,131,167,96,52,66,122,64,35,
+202,13,97,168,100,35,129,191,69,102,3,10,65,32,73,89,139,66,48,204,
+154,99,25,82,73,112,253,0,52,109,97,2,90,32,90,67,139,0,52,76,
+194,0,89,96,73,64,135,233,67,1,203,191,230,46,5,192,166,0,53,130,
+89,173,74,232,106,0,224,12,0,230,230,4,202,149,164,191,192,39,227,101,
+0,227,162,0,96,8,110,79,0,53,168,214,224,70,3,99,53,123,16,64,
+22,167,237,229,84,3,64,36,67,218,99,153,71,139,227,131,1,246,242,1,
+2,53,53,52,96,5,99,124,182,237,104,124,160,6,64,39,231,198,0,193,
+14,228,103,6,162,137,150,96,192,117,224,7,3,164,70,228,168,1,228,79,
+0,168,130,64,183,64,60,224,33,12,128,27,224,26,6,129,40,160,137,100,
+114,232,248,0,224,38,13,132,106,103,206,164,44,162,106,194,113,184,229,96,
+12,96,11,248,246,0,134,36,98,158,67,226,226,200,2,3,39,32,95,56,
+78,148,96,123,129,15,225,14,4,161,82,192,31,0,85,68,12,66,103,107,
+111,77,122,166,188,0,51,85,45,224,0,3,225,168,2,225,163,6,88,98,
+4,95,52,54,52,32,229,36,1,10,77,104,115,46,66,117,105,108,116,105,
+110,133,35,2,49,54,52,67,50,64,53,0,49,144,128,225,205,0,224,58,
+6,5,80,114,101,108,117,100,173,190,66,200,0,54,98,200,0,75,99,50,
+196,254,128,1,231,154,3,233,166,1,0,32,152,207,96,59,133,24,229,69,
+0,133,46,64,194,160,69,160,44,64,20,239,63,1,236,34,1,226,217,3,
+195,55,194,218,232,209,3,192,125,130,215,164,74,96,26,80,170,165,14,148,
+189,135,79,125,91,64,33,230,246,2,195,48,160,96,227,65,1,227,185,2,
+236,119,1,96,23,224,25,11,96,251,231,32,3,224,182,0,220,122,228,13,
+1,195,235,96,174,64,32,64,154,0,50,99,150,6,53,52,48,32,95,57,
+57,72,137,226,14,1,1,95,52,153,179,67,182,65,91,64,7,148,210,99,
+245,1,95,52,216,52,192,32,194,150,224,15,1,130,174,161,28,98,82,1,
+51,51,96,83,128,134,64,18,160,28,1,53,51,102,109,96,160,0,95,192,
+21,0,67,81,181,0,49,226,158,1,1,67,39,79,91,64,25,133,30,193,
+60,227,175,1,64,219,97,160,64,11,224,5,0,151,180,99,90,163,109,64,
+4,165,232,193,38,163,100,224,170,1,0,53,151,242,169,173,0,48,132,148,
+0,48,67,110,96,0,163,158,225,37,3,3,54,32,95,52,119,93,64,231,
+200,103,210,80,0,51,70,75,2,95,49,49,65,25,68,1,130,40,1,50,
+48,66,40,3,95,49,50,49,96,108,141,208,160,102,64,6,236,229,0,160,
+95,0,57,128,39,193,41,65,144,132,94,109,90,141,82,97,216,97,162,160,
+174,192,72,3,95,49,52,48,161,179,192,84,130,182,161,149,224,20,3,230,
+132,11,160,116,129,40,194,122,224,141,0,227,61,4,230,165,0,163,39,162,
+170,64,153,3,56,32,95,52,120,59,0,64,230,233,14,190,200,64,10,210,
+180,192,7,192,11,224,141,1,224,107,2,227,18,1,1,95,52,92,24,224,
+0,7,194,190,0,53,97,84,68,6,211,45,0,73,64,186,0,83,231,106,
+6,224,7,13,224,205,2,64,18,134,98,132,10,227,160,2,224,2,7,224,
+140,0,128,15,227,217,1,224,36,12,224,37,20,224,40,4,224,41,34,238,
+80,0,0,39,132,25,237,168,17,228,243,0,160,55,192,1,178,104,102,212,
+231,58,1,224,5,3,231,70,4,196,237,224,66,1,99,216,161,227,164,127,
+240,168,0,66,181,0,49,89,15,195,236,163,148,122,127,65,184,196,93,3,
+95,55,54,52,64,12,84,21,224,22,2,192,228,224,88,3,224,85,9,160,
+50,233,229,3,0,95,222,153,64,0,197,55,224,2,17,226,246,3,225,27,
+2,161,55,225,115,5,224,28,19,225,178,3,193,135,193,26,230,37,4,224,
+20,0,224,8,2,1,95,55,183,169,197,2,128,2,161,110,224,197,3,64,
+15,226,32,3,90,56,226,167,1,194,240,225,252,2,173,180,160,42,192,19,
+197,216,96,129,160,172,226,107,7,192,92,160,62,192,195,98,28,224,5,3,
+193,65,224,57,3,162,49,224,25,10,160,2,224,25,17,226,169,1,225,112,
+3,192,164,64,19,226,247,1,225,39,5,133,249,106,120,233,3,5,160,68,
+96,86,224,80,0,228,211,2,224,224,8,66,112,96,61,128,39,134,204,64,
+53,202,129,228,57,0,64,126,0,95,125,84,72,27,230,221,7,224,28,16,
+2,95,49,53,197,162,128,0,198,192,234,36,1,130,29,225,241,3,227,225,
+2,224,210,5,160,247,224,128,7,224,215,0,224,236,3,224,218,0,198,242,
+224,249,2,200,90,226,93,11,226,192,1,228,2,2,226,92,255,226,92,45,
+226,90,1,96,0,226,2,14,225,67,3,64,13,226,8,31,224,165,6,96,
+26,193,4,231,205,4,128,155,192,149,201,187,247,208,3,64,0,96,149,64,
+106,227,2,13,123,94,224,120,8,224,136,10,237,237,3,128,57,142,115,227,
+105,19,128,212,128,185,0,51,114,41,0,57,97,53,226,238,7,230,203,2,
+160,3,234,94,5,225,76,2,224,90,1,232,140,3,98,147,225,175,3,242,
+242,1,226,246,3,200,179,229,234,1,161,6,140,73,227,142,16,64,84,239,
+238,8,243,206,5,128,179,64,40,80,83,130,177,232,136,1,232,146,3,130,
+200,192,208,225,42,3,224,98,1,226,82,6,233,158,1,224,89,8,163,79,
+64,251,64,66,65,62,199,84,224,82,4,224,77,16,225,209,1,161,174,171,
+164,235,160,2,224,74,6,203,112,252,5,11,11,110,111,116,32,101,120,112,
+111,114,116,101,100,252,11,0,96,0,73,230,209,160,0,82,64,107,110,251,
+204,124,81,114,1,57,51,202,144,2,95,52,57,75,194,130,44,161,125,66,
+109,160,7,224,121,12,1,58,32,128,111,2,95,52,50,161,68,0,58,136,
+125,81,237,225,43,4,229,37,0,237,233,0,226,217,5,194,15,232,26,4,
+161,197,229,119,7,224,24,2,163,223,229,137,6,226,123,0,224,11,1,1,
+83,32,200,54,229,129,28,162,162,228,209,0,97,230,251,98,11,215,252,192,
+13,163,22,128,16,224,181,2,229,159,3,192,155,227,36,4,228,101,2,96,
+56,140,49,0,56,230,248,5,225,30,2,96,102,225,59,0,230,102,7,224,
+38,50,163,32,134,86,96,38,228,26,21,225,38,14,0,50,224,235,3,246,
+251,0,164,12,224,21,14,165,118,161,10,129,228,88,134,133,108,247,201,7,
+225,73,1,225,180,25,198,55,128,48,225,180,5,224,145,2,237,95,1,224,
+13,11,247,170,14,161,41,230,41,2,108,45,224,184,1,224,0,3,230,25,
+0,224,182,28,196,252,224,129,22,224,171,77,224,170,37,217,182,224,128,22,
+224,170,84,227,216,53,194,92,224,151,13,233,132,1,160,13,227,217,45,155,
+87,0,53,162,201,160,74,3,95,49,48,53,167,215,96,48,0,55,145,103,
+227,253,9,241,92,1,1,95,56,112,228,163,36,197,20,128,8,103,207,163,
+220,224,163,0,247,247,0,64,125,148,204,241,22,5,192,109,195,102,229,130,
+5,229,150,1,128,27,225,4,0,70,29,1,56,49,206,158,128,67,209,122,
+1,90,32,192,166,97,160,84,33,0,50,116,130,82,39,230,34,3,192,87,
+160,116,160,108,192,17,233,196,0,192,17,96,209,100,45,154,192,242,242,1,
+3,32,95,51,57,64,129,230,226,26,230,215,19,15,117,110,100,101,102,105,
+110,101,100,32,109,111,100,117,108,101,230,231,8,111,130,98,172,0,79,96,
+15,224,187,1,96,2,97,255,65,104,0,54,232,217,10,224,242,5,160,37,
+0,95,91,76,86,94,162,5,247,40,0,160,46,64,102,170,60,98,60,1,
+95,54,202,67,179,157,168,52,0,75,224,57,0,192,63,65,110,219,123,225,
+94,1,224,89,1,224,2,0,162,195,224,21,6,160,223,194,215,99,131,144,
+100,87,30,128,133,224,31,4,193,119,106,157,183,118,225,32,2,171,61,0,
+53,225,147,0,212,106,96,192,224,244,0,224,215,0,64,190,0,54,226,45,
+1,236,249,3,212,1,96,149,225,25,7,192,199,131,227,130,35,226,171,4,
+226,156,6,128,70,180,198,0,51,235,207,1,226,82,0,96,137,151,149,0,
+80,87,161,64,31,247,91,8,65,20,160,20,236,122,5,163,217,1,50,51,
+115,251,224,11,2,193,52,64,12,138,36,64,142,196,176,169,177,234,174,2,
+160,65,128,0,224,48,16,224,40,7,66,104,0,55,72,255,64,163,151,255,
+162,11,235,47,7,162,28,224,9,4,224,29,1,224,9,4,233,118,1,233,
+128,2,224,210,0,138,214,132,115,106,200,88,21,102,209,98,62,162,37,149,
+125,114,214,0,95,118,119,114,242,0,52,129,152,129,197,1,95,50,65,148,
+2,53,50,57,96,30,0,57,245,64,1,97,243,0,48,86,75,179,22,97,
+2,249,226,3,96,4,160,21,224,23,10,139,186,245,135,13,166,137,228,229,
+1,168,147,132,115,251,150,1,161,92,232,155,9,224,148,6,224,128,0,96,
+15,225,215,6,224,7,9,230,199,27,224,166,2,96,16,231,49,1,238,181,
+3,161,181,166,237,128,81,194,130,69,174,193,78,0,67,130,248,96,50,224,
+222,7,224,0,3,81,141,129,127,2,95,53,51,67,185,2,95,53,51,64,
+54,160,118,225,172,15,196,189,225,175,36,225,23,5,238,175,4,97,34,130,
+105,0,80,225,195,13,224,84,1,129,78,193,5,129,0,192,39,227,166,7,
+128,195,103,32,178,117,226,2,30,160,228,224,85,26,239,194,1,226,88,45,
+72,33,0,54,122,147,156,248,224,239,8,228,51,6,193,249,193,75,226,53,
+1,224,13,5,199,88,96,153,160,43,236,27,2,236,30,1,226,71,5,160,
+34,224,61,0,126,16,227,84,15,235,243,0,226,240,7,160,132,224,10,2,
+225,175,1,133,97,225,49,6,70,137,172,157,166,166,233,73,1,169,65,193,
+72,1,95,56,129,115,225,63,1,122,169,2,95,53,51,161,91,128,98,224,
+218,0,224,155,9,240,235,17,192,54,242,50,1,195,121,225,50,0,193,39,
+133,16,64,52,224,93,2,0,83,160,53,123,67,226,119,3,0,85,96,43,
+235,95,4,1,95,55,67,111,0,85,101,240,160,215,227,191,1,64,0,226,
+148,12,224,165,26,160,145,64,168,228,19,6,224,79,6,228,36,2,224,0,
+2,64,178,111,22,252,232,5,229,0,52,99,236,242,145,20,194,49,224,211,
+9,234,249,2,224,211,9,97,204,224,85,32,160,82,225,105,8,224,0,1,
+225,18,13,3,64,64,95,57,133,29,2,49,48,56,104,231,130,108,131,90,
+224,5,0,92,239,1,53,53,66,139,131,231,224,6,5,192,7,98,26,103,
+29,73,83,2,95,51,54,98,12,123,208,96,21,101,82,199,51,71,225,155,
+218,3,85,32,75,52,96,227,64,18,146,6,64,209,71,111,96,78,197,169,
+64,59,0,52,167,188,132,181,2,95,52,57,167,168,169,197,194,156,135,201,
+0,55,69,221,137,123,130,65,158,109,64,92,128,56,64,9,224,57,26,160,
+222,98,206,210,224,99,153,0,58,128,233,1,10,65,137,226,99,35,77,251,
+96,99,96,11,138,172,128,13,228,1,1,228,133,2,255,97,5,173,96,128,
+142,3,54,32,95,56,69,63,225,141,2,64,45,1,56,54,137,143,192,76,
+0,67,96,100,65,63,64,155,229,136,2,224,99,0,96,96,3,95,49,49,
+48,64,213,235,188,2,131,4,224,22,1,224,59,0,128,192,161,204,0,48,
+95,12,129,23,0,49,73,147,193,2,64,113,2,95,57,48,76,149,0,48,
+96,23,221,187,1,52,54,166,57,229,92,1,132,78,130,164,98,173,0,49,
+95,82,68,224,134,32,236,226,7,4,79,32,35,57,55,195,210,2,95,49,
+49,106,232,136,39,64,133,197,37,6,95,56,51,57,32,95,55,65,167,3,
+95,49,56,56,64,10,64,9,2,55,55,32,240,146,0,96,115,224,28,7,
+97,215,224,60,18,96,205,1,35,49,222,130,68,52,107,45,1,95,53,96,
+224,132,254,128,177,75,115,2,95,49,49,158,174,3,95,52,49,49,130,21,
+204,201,2,95,52,56,98,74,96,49,0,52,97,123,224,36,1,0,54,158,
+217,65,220,138,156,162,36,231,152,0,161,241,183,77,163,247,0,83,97,246,
+65,89,65,120,1,51,32,238,14,1,1,45,62,141,254,130,24,96,31,64,
+151,67,143,64,158,197,32,160,68,128,71,164,98,224,74,7,0,61,160,74,
+226,103,2,64,36,137,73,160,72,229,146,3,160,76,160,162,192,79,3,79,
+32,35,49,66,123,192,121,227,4,5,192,41,137,151,200,125,171,111,226,172,
+2,229,221,2,80,148,2,52,50,48,139,169,96,8,66,23,162,14,128,34,
+225,32,5,1,51,53,163,44,161,16,96,15,64,114,66,211,224,48,11,160,
+182,3,56,53,57,52,192,116,225,78,20,224,207,1,224,248,6,1,56,54,
+69,47,225,42,3,225,69,11,193,25,225,26,1,174,44,224,16,1,98,26,
+238,244,28,193,63,161,76,195,226,225,79,18,66,103,78,233,131,233,97,80,
+65,90,1,53,55,180,136,64,37,227,227,6,227,79,55,101,174,232,254,4,
+225,249,28,64,25,64,159,193,239,226,9,0,200,100,100,159,68,85,64,170,
+102,201,96,93,100,97,66,135,0,48,196,79,67,121,143,31,192,81,100,80,
+160,6,64,29,143,49,129,201,2,95,49,49,174,143,66,165,224,22,2,0,
+53,64,93,64,22,142,166,227,58,1,10,80,114,105,109,105,116,105,118,101,
+115,46,99,69,64,35,134,232,133,111,224,115,2,66,189,224,129,8,96,48,
+135,6,0,75,234,139,0,0,83,163,177,130,173,224,5,4,76,192,151,236,
+194,7,1,95,53,65,122,102,164,0,52,64,175,0,51,97,191,220,148,128,
+37,131,186,224,41,21,64,137,71,119,100,201,252,16,0,3,66,32,95,54,
+110,253,0,50,120,168,146,53,100,225,0,35,81,1,228,224,2,64,150,135,
+223,105,85,218,123,96,26,133,32,72,23,64,236,97,165,225,66,12,164,211,
+99,54,101,69,1,54,50,194,89,229,240,14,224,79,21,164,216,224,79,25,
+98,179,160,172,0,54,161,141,0,75,128,214,130,61,129,18,5,55,55,32,
+95,56,53,119,247,2,50,50,49,160,11,80,69,170,104,66,217,0,48,224,
+34,0,1,49,52,233,225,4,224,64,18,65,144,231,137,1,224,65,0,114,
+135,71,68,187,137,224,65,6,1,49,53,135,199,1,53,50,160,44,192,80,
+224,202,0,130,219,224,120,18,1,53,48,64,185,64,32,224,116,0,77,200,
+0,53,192,45,0,80,103,200,2,53,49,57,238,5,3,160,16,96,42,66,
+228,2,57,53,52,82,143,160,230,169,28,0,73,66,59,236,44,4,96,124,
+108,44,142,36,230,81,3,178,172,96,204,164,56,96,149,243,175,1,224,76,
+11,0,49,66,175,160,77,235,187,0,96,146,0,55,102,9,108,223,179,41,
+241,214,0,238,4,9,247,122,20,195,147,64,7,204,6,239,184,9,232,242,
+4,64,17,196,168,224,0,4,160,20,160,44,226,40,1,225,111,1,65,124,
+192,11,65,157,64,223,65,19,0,50,240,179,4,233,204,0,225,239,1,169,
+85,2,64,95,50,137,192,129,255,132,196,220,212,101,116,106,241,0,56,160,
+8,64,87,2,49,48,56,132,156,140,18,96,217,117,78,240,52,4,160,249,
+164,151,5,67,32,60,32,64,35,200,167,193,10,225,57,0,192,24,97,150,
+128,1,224,237,0,67,45,68,66,119,117,96,0,160,158,140,219,162,15,227,
+3,4,0,49,107,38,128,128,160,77,226,234,5,166,255,68,179,0,52,107,
+214,142,216,248,170,5,224,167,10,193,58,0,85,204,98,208,18,224,126,2,
+149,159,0,54,247,136,3,13,116,121,112,101,32,115,105,103,110,97,116,117,
+114,101,137,58,128,151,240,72,4,224,215,4,224,209,12,64,41,168,7,224,
+112,5,1,51,52,235,188,2,224,72,3,227,254,5,151,247,225,96,23,225,
+52,0,226,51,7,224,128,0,1,95,54,103,67,225,53,11,128,0,224,54,
+3,66,87,135,5,224,116,10,1,49,53,163,145,69,114,192,51,187,8,99,
+159,162,18,229,40,6,0,49,140,68,228,17,3,136,219,102,224,3,49,48,
+56,50,71,219,249,39,2,236,69,10,225,159,1,24,67,97,110,110,111,116,
+32,115,97,116,105,115,102,121,32,99,111,110,115,116,114,97,105,110,116,217,
+49,235,102,0,140,108,1,57,56,68,114,224,81,19,4,92,49,48,38,32,
+64,0,14,102,117,108,108,121,32,113,117,97,108,105,102,105,101,100,249,130,
+0,2,49,52,57,223,130,161,34,136,4,3,67,32,95,56,97,178,105,99,
+141,114,64,29,135,241,227,237,11,229,139,4,0,95,228,25,1,241,121,6,
+129,55,1,55,50,230,247,2,27,92,51,52,38,115,114,99,47,77,105,99,
+114,111,72,115,47,84,121,112,101,67,104,101,99,107,46,104,115,64,27,7,
+44,49,50,57,56,58,49,57,128,178,2,85,32,90,97,133,1,49,56,64,
+96,66,72,79,246,1,49,48,224,199,1,172,143,226,113,1,166,195,142,95,
+0,51,73,184,164,147,70,16,193,236,177,72,224,172,57,2,51,48,52,224,
+172,0,217,178,177,181,227,34,1,134,0,192,0,226,144,4,1,53,49,66,
+255,64,226,225,68,1,226,128,23,164,72,224,29,5,98,45,1,53,49,202,
+176,1,54,56,231,11,3,98,219,176,159,225,41,2,74,184,0,52,193,31,
+227,124,12,73,88,74,0,242,205,5,206,3,111,41,96,188,240,177,7,96,
+10,208,208,96,12,1,49,53,65,195,0,53,64,237,224,160,10,224,19,12,
+230,139,1,64,0,0,58,135,207,130,144,1,49,53,75,113,102,26,96,24,
+207,13,224,139,0,164,37,0,50,109,22,64,33,137,220,0,83,168,163,224,
+228,3,163,243,0,90,229,94,1,228,48,9,188,187,160,204,229,131,3,225,
+78,4,226,96,2,100,18,1,49,54,121,161,140,82,160,61,224,96,4,225,
+212,9,229,59,4,0,49,145,107,129,64,224,177,3,204,146,98,89,104,203,
+236,107,1,64,110,1,95,56,66,9,192,0,160,89,0,53,65,95,1,95,
+55,200,103,2,49,50,56,189,90,64,184,108,158,0,56,103,100,193,109,0,
+54,97,50,136,137,241,55,3,166,13,182,220,130,137,245,217,3,229,29,1,
+214,110,209,85,136,234,180,23,241,66,4,237,172,0,2,49,53,49,90,236,
+81,106,0,35,97,222,64,25,0,54,69,84,109,198,171,83,194,84,64,73,
+192,92,226,57,4,224,76,15,64,215,173,105,1,54,57,69,66,0,53,96,
+133,96,39,65,238,0,55,65,238,192,13,77,147,1,95,49,81,56,64,25,
+72,133,224,39,1,224,53,5,76,169,224,13,1,116,89,96,13,64,110,234,
+222,1,100,146,0,48,65,133,67,87,65,10,1,55,53,139,223,236,58,15,
+64,77,194,193,173,235,226,155,1,0,50,64,245,0,75,226,173,8,84,158,
+82,19,148,213,230,237,0,228,75,5,228,109,1,194,129,229,230,5,0,50,
+105,116,139,240,228,23,9,0,95,85,20,244,141,2,128,160,221,28,130,228,
+132,143,141,202,0,54,68,97,64,34,230,111,0,75,222,1,64,95,66,98,
+64,22,134,104,128,101,0,48,74,15,86,25,0,50,65,84,1,49,54,96,
+142,0,54,65,187,182,22,0,58,134,131,231,218,13,168,79,66,161,105,66,
+98,169,137,85,0,64,195,179,138,41,234,38,6,204,218,224,25,9,99,18,
+224,25,12,193,87,98,240,230,71,0,96,21,0,85,163,21,192,115,128,144,
+131,29,96,9,71,73,195,108,224,67,9,96,25,78,164,229,162,4,224,43,
+13,96,185,71,120,129,85,161,163,114,141,224,58,6,230,4,0,224,141,1,
+193,15,224,211,0,162,120,192,179,224,105,4,224,27,2,204,108,215,243,109,
+29,248,9,0,203,203,224,98,0,160,38,224,13,6,229,15,0,246,157,0,
+103,8,229,81,1,238,109,0,139,237,192,63,134,127,102,190,0,51,236,114,
+6,236,69,4,246,95,6,224,125,0,162,206,246,100,9,224,96,2,182,100,
+160,44,131,75,160,12,176,100,2,49,48,49,68,64,120,19,227,111,1,128,
+0,234,35,4,182,163,249,8,4,246,151,5,224,121,1,96,96,183,98,224,
+69,6,0,50,69,170,224,69,6,128,131,0,56,195,170,160,136,229,251,2,
+97,230,224,97,2,225,183,17,130,173,226,31,0,225,134,5,129,113,161,160,
+226,101,2,225,84,2,108,85,204,5,225,206,1,193,185,224,40,1,225,191,
+16,225,193,4,100,65,225,199,14,225,166,1,248,77,18,224,37,5,192,34,
+134,134,193,91,129,94,225,122,0,65,123,248,94,0,225,207,1,225,204,39,
+226,25,20,226,132,5,193,233,224,142,4,251,131,3,185,90,251,121,22,111,
+242,173,194,161,164,187,207,231,160,5,135,162,224,187,4,129,171,230,136,3,
+96,188,72,37,136,42,99,254,137,203,100,0,149,89,192,0,226,142,37,105,
+206,226,66,9,128,73,237,137,7,107,75,156,250,64,245,224,31,6,99,140,
+224,69,1,241,93,1,170,156,238,170,1,225,108,0,111,33,128,171,235,226,
+1,2,63,63,63,171,189,2,95,49,52,103,41,209,200,226,160,11,160,0,
+70,130,202,114,225,207,0,238,218,16,227,62,5,227,16,1,227,35,2,229,
+42,4,64,17,128,33,224,52,3,224,58,4,160,59,229,28,1,224,28,4,
+225,244,0,224,2,8,192,32,128,104,239,251,5,227,247,11,160,70,90,7,
+102,79,229,110,7,228,176,11,218,44,161,136,130,192,224,236,1,120,32,224,
+160,0,226,143,8,130,116,119,228,226,90,5,229,162,0,96,122,228,103,2,
+241,20,1,227,92,2,224,197,8,226,46,5,225,124,3,224,157,4,225,69,
+0,225,138,3,212,217,182,45,246,52,0,224,36,1,226,208,6,225,127,3,
+230,183,3,225,67,8,241,52,3,253,17,15,1,49,52,79,230,171,58,164,
+125,99,88,75,19,120,79,1,49,49,148,72,224,147,0,97,148,172,118,227,
+237,5,224,189,0,1,95,56,80,65,229,123,6,229,82,0,64,116,163,181,
+129,97,232,199,7,96,219,164,83,64,16,96,218,132,230,3,95,55,54,52,
+79,85,130,54,225,64,18,64,4,192,141,239,119,40,4,55,48,58,51,49,
+163,185,64,154,64,126,76,222,133,138,225,16,3,1,95,56,75,193,225,106,
+28,254,93,4,225,112,9,231,174,2,64,252,212,203,109,125,224,238,25,0,
+65,224,238,51,4,54,57,58,50,53,224,238,0,246,30,2,227,249,1,226,
+192,5,227,34,2,226,192,17,64,244,214,46,64,7,128,213,166,57,192,38,
+214,15,0,32,226,73,5,69,3,254,82,0,228,251,8,130,123,128,143,229,
+139,7,1,49,50,66,122,160,17,142,72,64,23,166,218,164,137,226,111,1,
+64,184,229,31,2,199,29,234,149,1,206,65,128,31,200,137,194,207,128,45,
+160,19,231,35,1,192,230,162,242,237,27,16,64,11,228,242,7,241,33,5,
+135,84,96,24,98,62,1,53,48,140,130,96,10,230,225,3,225,74,0,225,
+48,10,0,51,95,208,193,31,1,53,48,64,111,109,37,90,140,1,50,57,
+154,145,160,68,65,120,0,54,193,120,237,50,1,237,51,1,0,53,156,114,
+109,51,96,45,174,240,86,117,1,75,32,76,153,224,1,13,139,148,192,0,
+64,86,133,114,64,66,238,196,0,235,93,1,161,68,0,55,96,16,1,52,
+57,228,214,0,245,2,4,105,5,64,6,2,50,56,49,226,241,2,5,101,
+120,112,111,114,116,98,207,64,93,0,51,96,93,83,236,244,64,6,104,145,
+2,50,48,55,224,58,2,6,116,121,81,73,100,101,110,128,60,1,64,85,
+89,194,192,164,213,240,225,23,0,0,55,97,84,226,133,14,212,82,216,140,
+250,82,4,104,13,97,114,224,58,4,224,55,10,226,46,4,0,52,129,116,
+224,51,37,0,57,195,8,224,51,33,0,53,143,121,251,76,9,66,212,114,
+231,0,73,114,206,165,163,227,43,1,96,54,226,194,4,243,132,4,104,249,
+225,229,0,224,142,13,1,49,50,123,142,227,27,13,99,103,231,77,3,232,
+150,1,232,98,0,224,2,1,160,183,224,47,7,192,5,227,39,10,0,50,
+66,137,224,0,1,226,190,3,249,28,5,225,241,5,192,98,230,7,1,105,
+223,219,116,103,193,145,157,0,56,250,196,1,165,225,247,107,12,87,186,7,
+97,32,99,108,97,115,115,32,183,93,0,52,180,36,225,148,6,224,166,7,
+225,39,2,224,28,13,227,134,1,224,54,9,227,162,2,64,14,237,43,4,
+224,2,3,225,9,3,233,11,3,129,3,224,5,0,213,183,114,51,117,184,
+224,32,6,0,80,203,84,0,32,159,83,116,46,71,186,82,29,150,214,224,
+10,13,235,207,8,151,199,65,100,102,98,225,102,1,132,46,0,56,83,163,
+0,64,225,96,2,26,115,117,112,101,114,102,108,111,117,115,32,105,110,115,
+116,97,110,99,101,32,98,105,110,100,105,110,103,231,6,1,225,10,2,224,
+1,11,235,146,19,224,58,4,194,122,238,12,0,0,39,192,8,193,72,224,
+100,0,64,25,224,112,0,128,55,240,177,6,224,142,4,2,95,49,50,116,
+8,64,0,226,230,6,203,11,224,79,6,128,18,224,93,1,128,16,224,13,
+4,128,10,230,117,4,169,236,231,164,7,64,0,167,235,224,104,4,224,158,
+1,226,171,7,170,0,224,2,6,192,168,224,30,3,226,99,2,103,161,0,
+66,96,37,65,15,248,50,10,224,252,24,192,88,163,136,187,235,224,178,4,
+133,212,0,49,64,178,236,13,2,240,49,8,0,49,98,130,225,23,4,170,
+2,192,78,239,96,4,105,196,96,46,69,83,79,113,224,60,6,71,87,0,
+54,100,248,0,52,244,239,1,160,150,128,52,225,158,1,218,121,224,31,0,
+1,52,52,230,113,0,224,192,1,128,69,224,19,3,0,50,170,88,224,19,
+2,216,53,232,160,0,132,160,1,50,56,98,194,224,58,1,0,52,148,70,
+64,184,225,249,1,68,174,226,1,1,138,202,0,57,78,253,163,192,234,63,
+25,226,110,1,224,23,1,162,251,144,120,233,72,6,64,164,123,155,192,222,
+234,108,6,234,76,5,128,0,226,153,3,172,66,168,53,100,19,0,57,137,
+61,68,82,0,49,226,210,4,70,231,150,50,225,26,3,97,164,229,180,2,
+165,219,160,14,0,49,103,205,161,52,139,178,3,83,32,95,54,87,140,64,
+147,0,35,174,193,253,35,1,0,58,128,140,120,41,2,32,95,54,64,213,
+64,28,0,55,86,177,96,35,64,25,0,55,65,114,108,66,64,20,139,14,
+228,195,1,68,184,0,34,128,26,0,54,168,225,104,221,75,101,1,52,53,
+226,103,1,1,52,54,64,155,155,82,0,57,88,201,241,144,3,69,192,99,
+17,74,6,161,4,113,136,129,74,1,95,52,97,111,64,99,137,230,133,205,
+0,52,121,201,99,140,81,200,91,57,160,19,64,41,169,205,200,36,167,244,
+65,223,246,4,2,214,242,161,249,160,25,169,42,0,85,154,226,232,24,3,
+113,254,162,123,130,186,232,128,11,128,62,232,127,18,228,97,3,224,92,2,
+192,202,96,99,201,178,163,7,233,182,2,172,194,2,52,57,50,228,129,8,
+224,94,60,160,90,194,32,138,184,3,95,49,52,56,78,74,88,171,64,21,
+138,135,242,133,4,233,65,25,242,240,0,96,115,230,185,7,1,52,52,131,
+85,228,186,4,234,209,3,206,129,64,92,228,6,0,96,83,200,240,0,83,
+141,5,64,57,237,243,7,96,28,99,203,224,60,2,1,95,54,220,153,246,
+54,1,192,56,230,57,6,64,16,70,142,129,124,111,50,1,95,55,221,51,
+192,0,132,43,231,248,7,131,228,227,51,1,9,109,97,108,102,111,114,109,
+101,100,32,71,244,11,100,97,108,111,110,101,32,100,101,114,105,118,231,249,
+1,192,145,225,12,3,233,239,6,130,182,136,201,164,222,0,32,233,238,0,
+98,6,226,246,15,96,49,248,245,8,77,53,126,38,224,249,5,164,245,226,
+105,6,224,44,14,125,30,161,10,128,27,225,13,14,234,121,24,12,100,97,
+116,97,47,110,101,119,116,121,112,101,32,234,126,6,225,175,2,165,192,64,
+65,245,180,3,66,162,140,38,99,42,0,56,68,27,126,105,64,24,197,87,
+229,243,1,69,40,65,93,102,63,1,50,50,109,146,0,52,79,116,64,59,
+66,199,198,244,224,209,12,165,209,224,209,19,2,67,97,110,96,212,65,228,
+224,206,0,126,29,0,52,233,175,3,130,119,250,183,0,64,8,97,81,230,
+31,4,0,58,128,207,5,10,65,32,79,32,80,224,110,13,11,68,97,116,
+97,46,66,111,117,110,100,101,100,192,7,96,116,77,190,64,172,224,57,21,
+3,69,110,117,109,96,4,192,51,0,55,65,119,224,51,21,224,4,0,224,
+51,0,64,171,224,103,22,3,113,46,69,113,224,47,0,65,103,224,47,21,
+4,73,120,46,73,120,224,47,0,224,199,25,2,79,114,100,64,3,192,49,
+0,56,65,215,224,49,21,82,150,3,97,98,108,101,224,8,0,224,59,0,
+225,1,20,11,71,72,67,46,71,101,110,101,114,105,99,115,192,8,224,167,
+29,29,76,97,110,103,117,97,103,101,46,72,97,115,107,101,108,108,46,84,
+72,46,83,121,110,116,97,120,46,76,105,102,144,1,64,126,66,36,224,68,
+16,17,84,101,120,116,46,82,101,97,100,46,73,110,116,101,114,110,97,108,
+96,13,224,60,0,67,112,224,60,21,3,83,104,111,119,96,4,224,51,0,
+69,23,232,188,4,66,118,216,16,231,55,0,137,48,105,45,205,68,3,49,
+52,54,51,232,32,2,224,84,0,226,224,2,251,151,0,160,10,227,135,0,
+248,213,5,130,174,0,56,196,225,137,168,165,8,233,181,5,224,68,1,195,
+207,64,61,224,17,0,224,20,3,224,21,7,224,24,1,224,25,11,224,28,
+1,224,29,4,224,83,1,96,5,230,42,6,224,48,16,224,2,3,236,110,
+0,165,201,236,146,11,150,165,72,216,224,83,26,224,80,2,129,35,224,81,
+9,2,32,95,55,71,99,203,237,225,164,1,7,115,104,111,119,115,80,114,
+101,130,180,224,108,20,204,14,192,103,224,1,1,105,107,224,25,12,239,210,
+0,224,22,14,224,104,11,142,145,246,211,3,224,201,4,0,67,109,143,128,
+5,236,145,0,64,84,2,95,56,55,105,114,0,39,109,171,129,23,0,85,
+107,152,235,138,6,224,220,11,128,2,192,34,224,169,1,232,95,0,161,238,
+230,130,2,98,251,67,48,254,144,1,224,230,6,224,234,4,224,28,22,224,
+253,3,128,28,128,114,224,2,0,231,96,1,224,67,14,224,65,8,239,231,
+0,224,8,18,205,209,64,57,160,231,97,90,130,218,0,52,66,215,0,85,
+227,211,2,66,46,4,80,97,114,101,110,194,46,192,113,128,83,105,5,160,
+52,2,79,32,35,84,47,161,123,129,44,0,57,107,244,75,226,226,73,4,
+194,177,128,140,96,58,0,51,224,58,1,64,35,224,102,2,237,147,0,225,
+126,5,206,174,1,85,32,247,51,1,225,235,7,251,70,5,144,237,225,77,
+2,161,10,64,90,193,6,64,8,226,109,0,64,5,162,36,226,22,2,243,
+147,1,64,9,132,166,128,156,138,115,89,69,128,165,3,79,32,35,49,86,
+204,224,215,2,224,253,0,224,250,2,79,253,224,34,6,239,137,1,64,1,
+180,134,128,59,224,119,29,67,244,192,83,1,85,32,254,229,2,96,113,0,
+49,83,29,192,30,105,13,64,131,254,224,8,2,64,85,32,89,230,174,204,
+1,55,55,160,209,0,48,236,135,4,96,10,64,4,225,212,1,108,122,0,
+52,159,111,64,203,186,190,224,32,1,0,55,87,255,226,102,7,2,83,116,
+114,235,20,1,161,236,1,48,48,133,17,224,58,1,226,162,13,228,209,3,
+226,121,5,224,50,2,65,106,0,54,224,187,0,1,95,57,96,91,142,96,
+177,88,1,49,49,178,222,239,178,5,240,192,0,3,95,52,54,52,97,63,
+0,49,226,173,3,103,47,218,60,0,83,100,163,3,49,52,56,53,65,80,
+1,55,52,138,72,234,44,5,64,136,225,68,0,65,91,65,187,64,20,225,
+180,1,69,95,138,151,64,92,0,54,237,130,0,0,50,193,230,65,175,0,
+54,64,12,64,31,143,43,96,120,65,89,5,95,49,51,49,32,35,116,131,
+64,93,64,185,1,35,49,106,124,64,44,143,46,130,89,64,50,243,239,1,
+64,162,254,250,4,231,166,16,98,136,236,60,7,64,19,147,52,97,116,70,
+204,128,17,96,101,230,142,13,3,114,101,97,100,225,187,0,128,45,176,70,
+69,220,211,25,96,64,64,217,242,77,4,124,208,65,176,224,78,1,4,101,
+114,114,111,114,130,7,82,35,65,225,130,68,224,113,9,0,32,139,165,2,
+102,105,110,171,48,226,203,3,128,4,226,5,4,97,59,143,33,0,75,90,
+151,192,249,160,163,64,29,143,41,2,75,32,90,146,84,237,54,1,245,185,
+15,232,89,0,232,86,7,228,198,3,135,237,232,168,0,252,60,2,232,49,
+0,163,30,129,35,128,114,243,116,2,245,70,9,224,91,5,226,8,0,225,
+162,13,6,116,121,112,101,82,101,112,161,35,196,159,212,188,0,79,123,238,
+228,228,2,160,91,160,135,131,12,64,214,99,246,0,49,138,55,225,181,6,
+8,109,107,84,121,67,111,110,65,112,192,100,238,240,0,224,64,37,224,162,
+0,104,188,68,133,227,227,0,96,175,132,77,131,86,224,40,36,1,95,54,
+92,138,2,54,50,53,226,145,0,226,39,3,238,26,4,64,0,66,11,206,
+146,235,63,34,204,191,160,155,64,1,235,62,41,166,36,226,80,6,225,240,
+7,227,162,2,227,184,2,226,6,20,5,99,111,109,112,97,114,141,37,102,
+51,0,55,79,100,129,166,160,150,235,181,14,235,191,4,248,113,2,107,111,
+235,89,0,128,5,170,218,128,68,160,74,233,241,8,64,58,100,104,240,168,
+4,235,196,1,98,120,65,145,97,190,234,86,1,239,216,1,102,156,197,250,
+212,151,228,96,27,1,60,62,235,55,2,160,161,128,73,67,92,224,81,43,
+225,87,4,64,0,199,116,224,57,24,1,69,81,192,52,200,157,225,199,0,
+193,53,193,50,97,41,227,170,7,224,95,23,1,76,84,233,244,4,224,90,
+14,75,124,160,87,225,144,4,224,93,23,0,71,192,93,160,47,139,185,232,
+114,23,160,37,224,29,5,232,235,2,227,148,0,229,188,6,131,148,146,14,
+1,75,51,96,196,230,247,8,229,211,8,64,51,79,211,227,200,39,176,233,
+96,0,227,199,136,1,61,61,227,194,0,101,91,122,48,237,237,0,149,120,
+138,253,227,215,3,172,40,203,145,227,145,10,237,126,2,64,55,237,139,8,
+227,158,92,1,38,38,227,158,71,193,46,64,0,227,153,32,2,84,114,117,
+227,208,0,226,208,22,226,201,15,233,11,0,65,96,227,97,0,227,194,6,
+224,135,23,3,70,97,108,115,192,136,128,49,227,31,20,83,151,85,46,65,
+144,151,187,129,156,130,18,78,143,183,14,111,253,98,28,226,16,0,108,175,
+96,10,232,120,1,132,44,129,202,156,116,231,41,4,160,28,204,186,85,34,
+0,49,75,2,96,0,124,1,0,57,90,53,106,208,1,56,56,154,64,4,
+95,49,55,55,32,150,196,120,222,0,55,186,79,140,108,192,199,203,140,0,
+89,128,157,0,80,64,159,0,55,227,160,2,5,102,111,108,100,114,49,232,
+209,2,131,220,109,103,227,176,15,176,165,64,94,0,54,235,65,35,64,229,
+235,65,12,227,216,2,129,236,98,10,122,219,132,126,129,177,64,112,251,11,
+0,1,49,52,75,21,128,52,236,87,9,224,224,1,9,87,97,114,110,105,
+110,103,58,32,99,246,141,10,227,246,0,129,115,0,57,117,44,224,77,19,
+4,32,121,101,116,44,160,60,65,202,90,18,226,62,11,204,89,130,211,74,
+226,98,147,130,47,64,32,139,62,65,54,5,73,79,46,112,101,114,89,27,
+0,73,204,50,67,145,2,55,32,95,79,48,90,179,129,78,0,49,160,16,
+96,62,139,95,168,46,196,72,132,174,116,23,129,145,209,33,224,13,9,231,
+38,0,124,68,0,50,96,165,175,25,229,144,75,128,77,229,144,24,64,9,
+247,129,0,96,80,143,209,164,178,222,159,108,75,172,80,218,184,231,230,8,
+96,110,131,126,228,71,0,0,66,205,8,207,18,96,214,0,54,65,190,99,
+92,176,28,230,62,30,1,116,111,224,171,42,228,42,5,243,191,8,192,120,
+224,171,8,128,195,196,78,224,183,13,228,215,2,226,147,7,231,165,22,224,
+199,0,130,93,139,177,0,85,72,30,164,89,102,161,198,167,64,34,136,63,
+232,11,36,249,146,3,96,0,226,150,5,226,119,3,242,173,5,226,133,11,
+228,85,2,64,23,235,108,1,224,16,0,224,13,13,203,119,224,92,0,226,
+200,9,224,47,6,128,2,171,141,162,107,214,101,238,118,0,130,240,99,141,
+244,198,2,238,83,1,162,68,227,37,7,0,82,230,228,3,224,23,2,224,
+51,19,2,66,32,82,80,240,125,195,230,195,1,128,5,226,164,9,2,109,
+97,120,97,119,162,166,224,31,9,1,105,110,224,31,2,252,173,7,0,85,
+254,185,1,167,96,240,139,3,128,244,97,61,71,10,166,228,0,53,74,39,
+230,144,9,226,186,3,130,67,91,147,103,99,128,220,128,62,64,236,193,206,
+226,0,9,240,53,7,227,79,5,240,18,5,160,176,1,50,50,102,38,192,
+47,225,191,0,131,125,79,80,128,150,228,243,1,149,10,160,66,0,49,82,
+231,224,233,0,199,222,2,95,49,48,128,54,96,18,2,53,52,48,127,97,
+193,172,231,107,0,97,147,96,113,224,152,3,235,1,13,192,200,224,190,1,
+0,89,96,151,162,213,128,226,97,37,151,13,224,50,3,128,47,128,121,224,
+227,0,192,52,128,46,194,158,138,193,195,6,128,209,97,37,113,16,224,15,
+0,163,233,129,209,6,49,49,50,56,32,95,51,123,81,97,237,83,56,236,
+224,2,149,45,1,49,49,180,220,225,76,1,224,107,10,96,103,225,44,2,
+64,79,118,211,96,72,2,49,52,54,128,67,64,9,248,91,2,225,112,1,
+227,234,2,229,62,2,162,128,241,222,8,160,153,0,52,99,44,160,72,227,
+233,0,66,130,137,230,2,85,32,90,201,169,64,20,137,51,105,42,86,5,
+0,52,64,60,128,11,64,91,64,14,160,20,96,45,0,54,96,45,127,74,
+0,83,105,194,0,48,224,129,0,99,64,193,137,83,133,0,54,64,245,112,
+46,224,234,1,225,73,1,64,77,180,191,133,84,230,60,1,67,114,99,86,
+1,50,53,131,122,64,43,244,190,1,230,253,2,255,169,9,230,5,0,129,
+42,255,173,35,161,160,73,33,224,58,9,248,170,4,255,215,6,64,158,136,
+226,123,32,136,165,232,162,0,2,67,32,60,85,135,64,42,237,75,1,5,
+67,32,67,32,61,61,192,23,229,147,4,226,107,2,97,82,195,58,197,136,
+3,32,95,49,56,64,43,64,57,137,115,141,202,224,54,1,160,200,100,252,
+241,43,5,224,81,48,160,77,192,237,137,145,129,98,192,58,0,95,161,173,
+131,2,2,95,55,53,235,29,0,96,61,141,115,100,61,1,57,57,68,214,
+1,50,50,195,102,216,123,0,89,228,71,0,232,82,11,0,90,97,89,172,
+144,168,100,68,2,227,252,5,224,57,1,64,1,235,217,0,137,57,132,70,
+163,131,251,103,1,224,0,0,64,218,136,14,131,119,229,8,0,192,79,96,
+241,229,159,17,228,221,1,254,115,0,199,39,224,2,1,96,40,224,78,1,
+254,179,1,224,39,6,254,179,11,224,37,0,106,247,128,29,96,68,224,61,
+16,160,62,224,29,7,96,2,100,162,230,48,4,96,0,235,48,1,250,245,
+2,230,110,4,252,85,1,232,190,8,136,58,160,218,227,168,1,0,54,68,
+66,226,139,4,239,255,7,230,156,0,165,134,0,48,98,77,97,112,1,49,
+52,96,160,0,67,253,26,2,224,65,2,224,165,2,102,49,224,5,4,163,
+132,244,97,5,231,20,5,1,54,52,196,154,193,23,251,133,10,64,8,203,
+125,128,7,224,125,2,64,150,192,57,234,228,20,99,231,0,50,68,218,133,
+127,133,103,0,56,243,71,0,241,53,1,225,166,2,231,38,2,163,90,224,
+100,43,168,144,192,95,96,77,163,46,4,64,95,50,51,49,195,139,230,71,
+0,252,15,3,192,51,224,243,2,224,2,0,129,254,225,255,0,129,91,224,
+18,6,194,22,226,204,5,224,60,11,234,99,2,226,32,1,128,2,232,195,
+7,227,207,0,98,234,193,211,197,121,64,39,155,132,96,249,202,11,64,22,
+129,238,100,232,151,254,252,111,1,232,3,1,225,63,7,208,221,231,249,4,
+225,121,9,237,61,4,64,108,97,68,241,212,0,202,84,241,207,6,160,105,
+96,12,229,171,0,225,42,3,224,2,6,193,77,224,247,3,225,85,18,254,
+255,8,225,100,90,136,131,225,100,60,225,11,9,227,203,2,230,195,1,164,
+105,225,129,8,77,63,224,68,5,227,223,66,64,10,247,7,1,227,238,48,
+227,239,8,224,12,3,128,166,235,175,2,247,130,23,192,63,172,41,192,69,
+227,233,8,96,159,94,210,232,59,7,228,66,20,228,31,11,226,185,3,192,
+39,65,123,214,159,143,33,1,49,51,69,210,233,132,1,6,114,101,99,83,
+101,108,69,253,187,1,244,39,6,234,224,6,251,151,0,71,166,207,146,195,
+84,224,40,0,127,171,224,99,1,2,103,101,116,207,131,224,77,3,0,58,
+128,156,1,10,65,224,42,2,6,115,101,116,70,105,101,108,78,29,64,30,
+139,45,224,30,1,13,68,97,116,97,46,82,101,99,111,114,100,115,46,83,
+224,43,5,139,68,224,117,4,224,30,3,0,54,224,74,19,2,72,97,115,
+224,43,3,211,243,96,218,150,179,97,74,0,51,128,30,235,6,1,160,28,
+128,6,64,26,138,130,0,85,230,220,3,225,200,7,227,103,16,64,63,137,
+212,66,80,83,34,1,48,54,128,85,252,208,0,74,218,248,15,4,234,195,
+0,97,174,234,195,15,98,130,67,99,128,210,128,156,192,23,224,1,1,233,
+85,19,230,54,8,160,11,192,31,128,87,226,240,1,230,158,3,245,164,2,
+224,43,2,192,5,131,202,2,49,52,52,66,203,255,47,9,163,12,252,233,
+0,175,174,194,207,173,44,4,49,48,57,52,32,146,149,108,237,153,75,128,
+51,64,40,146,45,0,90,143,32,160,6,64,4,160,10,3,95,49,55,50,
+226,27,2,27,92,51,52,38,115,114,99,47,77,105,99,114,111,72,115,47,
+84,121,112,101,67,104,101,99,107,46,104,115,64,27,6,44,49,49,56,49,
+58,51,214,197,96,143,64,138,0,56,67,221,238,154,7,225,100,7,67,42,
+241,253,6,100,25,165,68,192,2,238,165,2,240,176,6,224,5,3,170,203,
+224,92,0,126,24,229,172,7,224,17,9,234,188,0,192,56,225,39,19,224,
+39,6,224,99,0,224,82,14,234,230,6,233,249,4,225,12,5,234,155,20,
+160,43,231,28,4,199,25,2,49,48,57,163,29,192,40,192,110,229,171,0,
+235,30,1,174,201,194,72,134,246,239,189,12,231,0,18,194,176,128,128,1,
+52,52,97,186,135,89,1,56,54,229,205,0,237,60,1,206,127,129,0,133,
+248,162,145,225,99,12,225,106,0,192,202,237,32,4,121,243,128,0,225,87,
+0,179,154,129,109,135,19,128,108,173,129,160,20,171,90,65,6,0,50,80,
+103,96,124,166,6,229,234,3,165,216,227,3,1,7,110,111,77,101,116,104,
+111,100,230,26,2,235,167,0,224,248,22,130,10,226,23,5,160,13,224,23,
+4,98,187,238,44,1,224,248,10,225,36,12,193,13,163,185,1,52,48,136,
+231,195,202,0,56,80,47,241,144,1,244,58,0,224,163,25,232,112,1,227,
+11,18,66,5,232,165,3,66,23,227,171,1,224,162,6,165,213,199,40,178,
+84,128,6,64,5,118,238,66,139,225,119,1,12,80,114,105,109,105,116,105,
+118,101,115,46,61,62,129,119,0,58,130,193,128,66,105,55,101,205,230,5,
+1,143,118,233,85,0,0,67,89,184,236,77,3,224,25,17,96,91,135,101,
+227,149,0,96,25,224,11,2,192,8,97,146,64,47,219,226,196,204,0,48,
+154,38,99,174,81,146,114,108,66,41,1,95,49,80,165,233,10,2,1,95,
+53,71,40,82,178,223,227,69,245,70,241,6,52,50,53,32,75,32,85,228,
+29,2,192,1,151,172,96,0,224,28,9,128,1,230,133,0,224,37,18,224,
+35,4,224,32,23,64,211,162,54,128,165,252,5,0,231,34,14,0,83,66,
+55,132,234,141,210,199,1,242,122,3,163,174,65,177,224,28,4,96,65,132,
+97,231,207,0,64,19,230,38,1,130,79,178,56,131,47,231,64,9,0,51,
+99,199,228,209,4,105,241,229,44,6,128,157,200,13,235,112,5,224,23,5,
+195,144,132,238,231,152,8,224,73,68,65,100,233,87,2,225,102,7,0,52,
+152,152,161,184,64,15,97,52,130,79,96,60,137,121,226,146,5,76,130,162,
+141,99,118,130,141,64,45,169,103,226,117,7,130,107,192,13,224,1,7,226,
+102,72,224,29,20,224,26,17,224,23,14,224,20,11,224,17,8,226,217,4,
+96,0,65,14,251,127,0,3,32,75,52,32,89,128,224,1,1,231,143,2,
+96,42,235,244,2,225,164,7,0,49,182,42,128,112,66,145,109,247,225,164,
+1,66,161,225,164,18,0,51,127,23,225,164,0,64,61,225,164,9,97,162,
+224,234,3,224,1,3,225,161,187,224,14,5,225,175,9,97,26,229,130,8,
+0,55,97,106,171,111,252,190,1,71,30,126,30,168,39,235,137,2,102,20,
+65,183,128,15,80,144,99,144,163,171,224,67,1,74,86,246,72,1,65,167,
+65,161,229,11,11,141,41,136,124,224,63,0,64,48,0,52,160,12,237,24,
+0,246,236,1,64,43,105,212,0,48,77,193,64,44,0,53,140,231,198,51,
+229,18,1,97,7,66,164,73,192,249,96,0,69,38,217,110,170,160,224,172,
+2,0,48,111,153,235,112,8,65,67,0,54,161,67,0,89,201,154,65,115,
+69,90,172,184,229,199,12,132,179,224,33,18,135,11,200,206,224,191,4,192,
+25,249,163,2,133,158,224,187,1,224,49,5,160,109,165,247,80,40,197,50,
+224,44,11,224,43,1,232,25,1,174,160,232,143,0,64,247,238,221,1,69,
+162,166,180,235,57,5,235,117,0,0,95,64,61,128,13,98,4,96,34,133,
+217,128,125,225,206,0,96,160,71,243,0,51,95,205,247,218,2,224,96,33,
+1,49,52,65,172,128,103,236,72,2,224,56,40,96,148,236,49,6,96,24,
+2,95,53,55,134,70,97,7,230,110,1,88,194,128,166,192,107,67,124,202,
+12,0,80,105,55,64,66,1,95,51,113,77,224,252,25,1,95,52,177,167,
+163,77,237,19,5,180,27,224,203,1,224,2,4,79,253,224,73,1,64,0,
+236,222,1,224,60,0,244,51,9,224,52,5,224,112,2,96,48,237,70,6,
+224,44,4,225,103,3,224,39,1,224,36,5,0,66,96,35,224,234,10,1,
+95,52,80,218,131,133,96,249,161,106,130,114,65,102,135,152,136,248,227,103,
+0,96,78,0,64,224,113,2,227,79,16,226,11,0,227,146,16,129,210,160,
+197,224,33,12,224,231,0,128,105,160,129,224,32,2,191,113,187,151,251,79,
+2,0,49,179,98,66,0,0,51,109,51,2,49,52,49,196,122,227,132,11,
+227,133,2,130,30,128,104,251,221,4,64,67,80,42,0,49,175,72,164,181,
+251,172,2,225,239,0,229,134,2,194,214,128,138,160,156,96,138,195,230,210,
+96,133,101,228,24,4,3,95,49,51,50,80,151,0,51,74,174,236,108,1,
+2,98,105,110,82,243,229,86,1,229,37,5,142,233,68,119,0,52,85,204,
+0,51,224,58,3,2,78,117,109,240,254,0,224,240,0,196,118,130,61,218,
+212,225,83,9,143,143,225,83,9,224,129,6,225,177,17,163,134,132,235,141,
+178,160,121,186,115,143,17,3,95,49,52,50,193,145,192,1,253,45,3,1,
+55,57,67,221,225,211,3,227,13,4,128,48,98,248,251,162,3,237,120,3,
+224,28,7,225,3,32,140,55,64,8,167,168,224,249,2,231,113,5,235,246,
+0,227,53,0,98,80,224,91,15,101,120,0,67,226,79,5,224,16,11,232,
+42,7,126,115,1,56,54,225,227,3,5,102,117,110,100,101,112,97,230,0,
+90,242,180,12,224,83,3,131,219,227,134,3,128,8,239,72,14,129,177,224,
+184,3,2,64,95,54,78,138,226,24,4,199,231,224,45,11,0,49,74,54,
+224,46,13,224,171,9,227,172,11,192,90,129,94,225,184,4,224,101,0,96,
+102,137,23,224,102,9,96,0,226,128,1,232,16,14,96,42,228,192,18,228,
+4,2,224,159,5,192,24,160,159,225,45,9,96,133,224,151,12,224,77,10,
+128,135,232,31,6,227,40,7,226,210,0,228,174,4,0,48,141,62,0,52,
+96,42,128,44,225,0,1,167,223,224,60,1,229,87,2,160,114,232,105,0,
+227,169,57,225,122,2,129,17,227,137,16,224,202,9,64,99,140,145,1,49,
+52,138,170,136,51,226,41,3,224,172,131,133,205,235,126,9,168,195,224,187,
+8,226,248,6,230,40,3,101,252,96,142,228,236,0,71,155,143,6,128,192,
+0,80,183,63,128,139,0,32,137,193,64,36,216,125,229,108,1,252,170,6,
+64,104,0,48,68,57,100,66,120,184,0,56,64,98,80,117,239,227,0,226,
+115,2,129,75,225,81,6,1,49,48,156,36,229,127,26,227,170,3,225,245,
+29,102,46,229,107,1,1,50,50,224,49,2,101,76,0,48,65,19,225,198,
+6,1,52,55,180,236,225,104,3,227,141,15,197,117,1,49,49,146,248,1,
+48,57,81,117,226,0,2,224,92,8,168,115,224,92,10,235,97,1,228,146,
+13,160,124,0,54,133,235,139,104,224,122,19,96,0,65,201,239,187,1,174,
+94,225,234,6,65,39,226,15,3,226,227,1,224,36,3,143,150,0,83,64,
+99,65,79,160,119,64,25,238,149,1,1,80,32,132,111,0,80,128,24,0,
+54,224,87,5,197,120,224,87,5,204,151,0,90,64,241,2,90,32,64,86,
+225,64,23,203,167,225,41,3,233,4,8,64,40,210,2,224,103,0,237,89,
+0,224,240,12,96,51,195,1,237,249,0,97,111,236,9,2,239,76,4,1,
+50,56,98,164,192,98,126,182,160,13,112,151,235,62,2,229,96,8,194,224,
+197,35,192,96,231,133,5,161,220,161,213,224,104,5,234,21,0,131,29,224,
+29,0,234,39,6,224,40,1,237,57,4,232,63,0,2,95,49,49,64,198,
+253,232,4,65,196,204,218,80,22,80,83,68,52,99,45,5,48,48,32,85,
+32,65,160,91,232,8,11,97,73,132,38,79,199,1,52,32,64,15,226,108,
+1,66,73,96,74,130,13,73,253,224,25,2,98,100,160,25,177,241,74,199,
+254,67,6,247,22,2,8,67,111,110,115,116,114,97,105,110,158,85,64,55,
+194,120,64,79,67,87,0,85,128,78,0,54,96,22,136,134,131,78,252,69,
+0,225,16,3,96,26,224,5,0,97,4,206,180,216,24,161,168,231,213,7,
+164,173,167,217,224,39,11,226,130,2,231,145,8,224,27,2,131,240,98,249,
+245,65,1,118,84,225,230,1,148,156,230,72,5,96,177,253,95,5,64,26,
+1,67,32,248,238,28,160,75,233,163,16,224,141,4,79,36,228,145,1,152,
+112,160,214,224,26,13,249,21,0,0,83,90,172,154,178,185,174,244,84,1,
+249,48,9,128,119,225,44,8,197,222,0,85,64,165,128,37,169,83,188,225,
+129,36,232,127,10,160,25,99,67,225,75,5,128,11,161,102,224,27,0,192,
+29,225,32,1,225,108,17,193,109,160,0,224,105,83,128,29,201,103,147,246,
+2,51,51,57,249,204,1,253,152,1,128,0,248,62,6,96,53,255,225,15,
+128,126,103,10,0,52,99,171,253,27,7,68,99,122,66,247,188,8,166,180,
+0,90,143,221,236,82,5,227,113,0,104,27,1,51,57,133,9,1,48,57,
+69,9,228,70,3,64,117,78,98,224,85,0,3,85,32,75,50,64,76,0,
+80,65,237,254,23,1,226,86,1,157,171,175,157,164,5,242,216,1,224,233,
+18,202,175,101,28,64,119,0,51,131,116,111,68,169,112,0,67,160,230,192,
+88,242,41,1,224,90,21,225,216,2,245,28,15,224,37,5,96,205,116,161,
+224,153,1,128,2,226,40,4,125,40,227,96,1,64,15,64,185,64,173,131,
+207,71,42,105,133,0,53,71,11,131,93,224,47,5,236,165,2,96,59,64,
+177,224,232,5,224,73,17,129,4,135,93,0,75,96,145,217,219,192,99,211,
+88,183,234,96,47,135,89,224,47,7,1,66,32,224,43,11,202,98,252,81,
+20,71,63,252,81,16,0,52,149,70,64,76,134,120,3,85,32,75,51,248,
+205,5,228,116,1,0,58,128,46,252,119,15,196,95,224,19,3,224,1,3,
+227,239,1,224,37,17,224,35,4,224,32,23,224,29,20,224,26,17,224,23,
+14,248,50,7,64,237,135,88,67,212,73,227,65,46,0,54,103,34,69,140,
+103,181,1,50,55,121,192,0,48,239,254,3,2,100,102,108,103,98,64,39,
+0,54,167,74,64,105,67,228,228,155,1,98,195,68,130,227,146,5,130,78,
+248,70,16,235,71,24,0,52,94,34,202,204,0,48,74,97,160,243,130,33,
+228,59,3,0,51,162,193,230,242,1,233,207,2,227,235,0,64,19,166,75,
+215,86,235,104,4,198,175,246,184,0,96,247,132,83,195,61,75,115,236,237,
+25,96,210,249,149,2,64,204,64,170,64,79,132,74,245,102,3,237,65,23,
+164,225,64,68,0,50,129,179,131,137,231,204,0,233,251,3,64,37,107,21,
+225,31,0,64,48,131,138,231,250,1,224,9,1,161,206,232,249,0,228,124,
+1,224,25,1,104,44,226,108,0,232,221,11,231,137,2,224,46,20,149,103,
+228,233,6,224,47,19,204,194,224,92,0,134,75,224,47,16,139,97,224,198,
+10,233,198,16,165,123,64,24,196,82,249,176,7,226,40,0,235,221,27,229,
+117,2,226,119,0,96,39,225,164,6,100,197,160,26,235,79,3,250,16,2,
+224,32,0,224,152,8,224,231,0,128,31,104,111,224,36,0,193,39,96,29,
+240,182,7,192,119,67,194,64,19,96,125,69,170,231,99,1,66,131,2,53,
+51,55,98,89,150,86,1,49,49,225,136,0,110,102,64,126,228,37,1,1,
+36,120,246,7,1,192,141,161,103,228,0,7,241,37,5,158,45,240,222,7,
+0,49,178,100,225,185,0,224,67,4,2,95,49,49,76,27,1,49,49,90,
+197,226,24,6,175,8,225,128,1,224,252,13,172,221,0,49,190,156,192,22,
+224,77,7,226,102,19,228,140,1,225,158,13,224,31,5,97,158,241,57,4,
+225,24,6,143,187,157,4,239,187,6,224,142,1,225,9,7,96,94,224,170,
+2,77,213,66,56,135,212,1,49,50,144,95,192,133,64,131,226,154,3,225,
+19,5,8,66,32,95,57,53,53,32,95,54,71,104,2,54,50,53,69,126,
+128,62,136,17,0,80,237,146,2,2,79,32,35,73,165,167,76,231,83,1,
+227,207,5,225,53,11,171,141,225,100,1,224,40,15,233,168,6,224,40,3,
+235,222,5,227,159,2,225,102,8,226,5,8,225,111,3,160,70,65,38,0,
+48,131,4,1,50,55,65,127,111,18,0,57,101,172,236,147,1,140,96,193,
+108,131,60,160,5,64,3,224,117,1,224,114,6,224,120,9,66,221,161,150,
+128,179,224,183,0,224,67,21,224,73,20,224,74,2,224,76,0,229,0,5,
+160,62,240,118,1,226,215,4,226,83,5,66,70,131,128,224,66,11,194,142,
+236,198,7,226,151,7,129,44,160,168,160,79,229,26,6,192,69,160,66,97,
+72,224,78,0,236,249,4,3,95,49,49,55,133,18,160,29,229,47,4,0,
+56,98,245,192,0,199,237,224,178,4,229,123,5,163,25,224,141,5,229,168,
+15,160,44,224,120,23,64,29,235,19,4,225,171,5,0,51,164,121,228,107,
+1,224,48,24,160,8,224,48,0,227,94,0,227,12,16,172,94,128,26,228,
+115,10,86,145,0,56,164,88,224,77,0,225,130,2,195,186,225,133,0,130,
+75,225,81,2,96,123,228,142,1,192,58,68,247,67,24,235,97,0,192,182,
+173,178,96,221,164,111,1,48,56,252,127,5,18,97,100,32,102,105,110,97,
+108,32,100,111,32,115,116,97,116,101,109,101,177,214,226,95,4,239,38,0,
+224,16,6,228,34,0,232,122,3,228,138,2,229,198,7,144,229,224,74,5,
+233,219,0,225,128,0,65,127,238,222,0,160,236,192,245,160,2,224,29,3,
+218,244,96,90,96,101,224,8,43,141,151,230,139,1,239,146,1,227,197,7,
+226,171,0,192,66,96,68,135,171,227,125,1,192,15,128,32,238,219,4,109,
+84,0,54,109,72,238,2,5,160,0,128,50,160,125,232,31,9,224,33,4,
+0,67,134,58,192,22,193,33,227,79,2,76,90,225,71,0,174,97,128,164,
+135,177,96,36,103,146,0,50,138,235,65,126,96,8,238,199,0,0,80,210,
+62,66,197,134,138,0,56,140,102,224,58,5,97,222,129,204,96,253,192,247,
+136,181,0,52,252,218,4,2,97,105,108,162,103,64,173,1,95,57,73,117,
+2,95,49,48,137,124,255,33,11,96,142,231,24,0,233,11,0,224,85,4,
+2,62,62,61,128,44,233,39,11,0,98,194,215,193,33,226,84,0,226,9,
+5,226,18,13,229,189,1,160,34,225,243,65,225,112,0,224,209,12,225,37,
+0,230,154,9,234,200,4,78,92,175,217,192,79,160,0,128,142,243,21,2,
+196,157,160,2,224,24,1,232,7,4,165,254,228,249,11,224,39,4,161,144,
+229,33,24,162,165,224,130,2,224,211,11,225,119,9,96,17,0,66,64,87,
+64,216,0,55,225,29,3,9,70,114,111,109,84,104,101,110,84,111,226,75,
+2,0,66,177,69,1,39,66,116,247,227,56,4,224,125,23,224,119,0,160,
+72,224,115,18,162,104,224,101,83,160,213,224,99,13,225,151,24,233,239,4,
+225,151,18,231,18,2,224,179,12,192,173,64,18,224,169,14,96,167,224,159,
+4,224,77,2,196,19,227,110,0,232,173,4,228,151,0,86,196,246,210,0,
+166,240,148,129,224,144,4,233,133,11,96,22,232,28,2,135,108,0,52,111,
+194,160,99,161,2,198,163,224,17,1,225,20,2,97,19,224,14,0,128,1,
+224,109,0,213,54,160,80,194,148,204,78,232,230,6,132,14,2,49,50,54,
+140,18,83,207,144,22,95,201,225,33,3,224,217,4,103,164,97,98,255,223,
+0,193,16,101,129,193,45,177,41,128,41,224,148,0,224,81,1,224,137,1,
+102,64,96,133,235,100,13,171,99,97,218,128,99,181,222,2,49,51,50,251,
+189,5,168,67,2,95,49,51,160,226,224,51,11,0,52,161,212,229,167,0,
+128,60,228,122,2,200,214,193,246,231,76,15,249,81,5,161,97,169,45,109,
+96,0,51,109,229,225,90,11,97,74,226,13,4,82,14,98,40,69,35,156,
+66,192,0,224,160,10,225,242,11,194,187,231,87,1,243,132,5,224,165,40,
+226,246,0,226,53,9,239,142,2,205,33,144,39,192,21,192,206,110,42,224,
+203,2,96,0,229,214,1,234,79,7,229,180,11,160,46,192,214,192,51,224,
+48,10,166,80,227,71,0,228,117,15,162,184,224,87,5,64,44,96,7,224,
+41,3,221,142,129,126,229,241,1,128,84,235,65,6,97,111,225,42,1,97,
+167,97,38,65,85,0,57,142,178,240,202,9,237,236,6,226,122,5,161,206,
+224,29,0,226,119,8,225,210,8,226,166,0,225,219,2,128,138,2,49,49,
+52,197,34,1,95,57,69,31,0,95,67,106,128,123,225,185,2,1,95,54,
+209,93,224,249,2,128,123,96,70,227,97,7,226,116,7,237,28,5,208,60,
+226,238,5,200,5,96,0,225,134,4,202,193,225,140,11,245,146,5,229,134,
+6,229,114,10,224,42,5,165,7,235,194,4,246,135,0,160,107,226,235,6,
+160,17,226,236,3,100,207,146,149,224,213,9,234,229,1,192,30,192,129,192,
+13,108,147,192,24,250,38,12,238,48,0,236,78,13,224,18,4,129,250,160,
+48,230,61,1,96,2,182,162,224,69,4,96,18,224,39,4,224,154,2,198,
+252,149,228,227,164,6,224,2,0,192,157,224,195,1,160,57,225,166,1,194,
+153,224,67,6,224,153,0,224,67,27,225,71,2,224,35,3,194,106,247,165,
+6,224,39,8,129,114,224,19,3,238,29,0,238,240,5,225,240,5,160,54,
+128,137,228,111,2,225,59,0,224,135,0,192,196,224,114,8,192,14,96,53,
+243,240,4,224,245,9,224,50,6,64,86,161,123,224,70,3,98,223,224,75,
+5,227,59,1,224,59,1,224,244,11,224,79,69,225,2,6,194,44,0,83,
+64,72,152,145,158,101,67,32,225,151,0,224,46,3,224,40,11,200,67,2,
+95,49,51,187,181,224,0,2,229,90,16,100,195,131,229,237,191,19,8,114,
+111,109,83,116,114,105,110,103,246,125,0,224,219,5,224,95,5,237,55,2,
+228,195,5,1,49,56,237,65,1,224,62,3,224,16,0,223,191,227,105,6,
+228,161,2,213,121,0,67,237,143,1,224,0,2,224,88,1,226,224,8,227,
+76,1,224,125,10,224,191,2,229,7,11,226,206,83,224,195,0,224,50,16,
+193,241,225,243,6,86,31,65,248,243,24,1,193,53,64,161,162,6,65,221,
+1,51,54,101,23,0,51,128,47,0,57,228,85,2,226,23,59,6,82,97,
+116,105,111,110,97,207,223,226,25,153,226,27,10,228,82,0,224,39,5,227,
+183,1,228,235,7,226,34,16,226,35,13,230,116,0,224,131,2,229,189,0,
+224,113,13,192,1,226,47,17,224,56,12,230,36,6,224,121,1,224,45,4,
+0,83,226,75,7,2,49,51,57,241,105,0,237,64,5,224,67,36,232,238,
+1,224,135,2,233,118,7,225,10,8,224,73,11,196,205,224,56,6,227,4,
+8,1,49,51,237,167,1,228,249,1,227,8,21,1,56,56,64,11,0,56,
+197,36,135,249,226,87,0,133,77,0,56,96,49,0,57,73,92,128,48,169,
+102,64,126,0,48,136,103,0,51,89,153,224,109,17,224,59,9,128,0,227,
+114,58,6,73,110,116,101,103,101,114,227,113,150,193,142,79,159,5,75,32,
+95,50,50,51,64,126,0,50,64,54,65,135,160,105,252,163,2,1,49,54,
+170,107,224,171,4,3,95,49,49,54,159,157,0,49,198,227,227,85,5,128,
+173,0,83,167,161,233,40,3,233,34,1,224,228,1,233,28,13,192,29,193,
+199,233,22,9,192,33,129,36,225,33,2,226,211,0,226,71,0,169,253,193,
+30,148,237,226,57,3,0,48,252,113,0,224,121,18,232,230,8,224,121,61,
+239,15,2,216,160,80,22,248,172,0,64,0,228,195,4,217,217,228,209,1,
+225,63,1,205,194,64,119,137,12,224,28,2,97,227,96,182,67,43,250,83,
+1,64,199,233,61,1,226,152,9,0,51,112,238,254,42,10,229,84,3,128,
+91,161,56,224,115,1,240,20,2,161,48,231,217,22,238,55,1,225,102,5,
+192,160,225,7,8,227,71,33,227,55,1,227,64,5,226,191,1,192,208,241,
+14,1,241,23,4,254,130,21,224,85,0,225,238,1,1,49,48,229,197,0,
+192,95,128,74,224,104,9,224,196,6,222,192,226,135,1,195,81,128,99,229,
+200,7,226,165,0,239,116,5,152,30,251,183,2,163,204,2,49,50,51,143,
+48,64,13,85,174,0,80,244,59,0,97,46,0,90,224,53,6,1,64,64,
+228,80,0,2,95,54,50,133,64,231,164,3,225,172,9,228,18,0,237,136,
+6,4,32,95,56,52,48,95,97,0,48,196,159,192,202,161,100,228,66,4,
+2,95,54,51,131,240,226,53,4,226,47,5,0,50,146,82,224,127,2,192,
+108,224,41,4,2,83,32,73,184,115,130,232,225,48,5,242,177,5,0,85,
+67,188,97,63,208,228,2,64,95,52,115,93,68,252,237,153,4,226,0,2,
+197,125,96,0,90,25,93,183,3,80,32,95,57,66,144,255,87,0,226,180,
+9,97,144,0,49,101,113,116,28,0,52,99,155,225,34,1,225,241,0,241,
+31,4,226,23,1,129,175,164,47,64,160,64,54,240,248,5,185,11,224,182,
+1,98,24,0,50,81,42,180,154,65,146,96,4,0,57,230,220,3,22,116,
+99,69,120,112,114,58,32,99,97,110,110,111,116,32,104,97,110,100,108,101,
+58,32,134,232,148,221,0,55,135,202,1,49,51,64,240,65,137,244,225,4,
+224,92,9,2,79,32,35,66,123,130,109,160,55,163,177,64,16,224,60,2,
+2,58,49,52,68,121,1,10,65,192,67,0,49,134,172,3,49,53,48,32,
+96,28,0,48,96,28,161,169,230,159,2,144,252,96,21,230,204,2,0,49,
+158,35,112,230,1,52,57,64,83,129,172,0,58,133,12,96,102,2,48,52,
+51,104,150,96,96,104,201,224,22,3,75,217,64,22,0,55,224,22,5,72,
+118,64,22,0,54,96,22,225,60,1,13,80,114,105,109,105,116,105,118,101,
+115,46,87,111,114,91,71,64,37,0,53,224,106,6,0,49,128,22,0,52,
+160,22,2,51,54,53,201,12,64,12,64,246,73,89,64,102,101,125,64,14,
+67,211,140,54,0,95,96,10,91,253,236,78,1,96,38,64,82,0,51,224,
+82,5,66,141,64,61,84,186,224,68,0,100,5,233,240,2,0,53,64,149,
+0,53,194,74,0,51,119,195,224,31,19,65,240,224,31,16,68,41,3,49,
+51,57,49,124,182,0,50,70,239,0,54,64,132,224,57,1,130,66,224,223,
+3,97,178,106,14,96,41,2,95,57,55,213,193,224,21,5,138,216,224,59,
+4,160,110,128,230,224,45,1,4,95,49,55,55,32,164,171,2,38,48,46,
+164,196,224,56,4,224,45,13,224,44,31,96,36,192,44,65,119,0,50,97,
+119,0,83,224,1,1,2,39,32,95,84,159,208,181,134,0,64,9,96,27,
+176,107,96,5,224,11,3,64,112,0,48,100,178,0,80,131,229,0,65,193,
+9,0,53,128,30,5,56,54,32,64,85,32,165,182,224,8,0,229,80,4,
+0,39,96,63,199,217,106,198,96,60,128,45,224,76,16,96,26,87,42,224,
+41,26,96,214,224,47,35,224,43,38,225,51,122,0,49,94,44,225,52,162,
+225,53,11,231,100,4,160,17,199,81,225,53,46,224,238,36,224,189,36,0,
+85,128,168,75,37,128,45,141,194,225,38,28,224,59,8,2,49,51,56,225,
+100,33,96,61,0,90,168,40,224,68,3,69,9,224,67,25,96,51,68,218,
+224,42,24,228,150,3,234,129,0,224,111,3,224,68,27,224,111,46,68,164,
+135,88,0,66,93,247,128,123,205,155,238,173,3,128,27,128,77,1,51,52,
+224,77,0,224,117,26,66,65,224,117,0,233,233,2,203,195,64,106,227,101,
+0,224,102,2,70,57,224,101,53,225,185,38,160,66,224,211,51,236,58,2,
+195,118,226,176,22,192,116,224,41,34,139,84,225,172,2,64,45,144,177,128,
+234,96,52,77,161,192,52,224,15,11,0,51,74,160,224,85,0,66,7,137,
+67,196,30,193,146,0,89,209,127,129,152,226,21,17,0,50,177,201,72,85,
+64,197,228,57,3,128,195,64,0,225,92,16,192,34,225,83,5,132,162,66,
+34,64,177,64,20,127,40,128,192,227,203,10,224,104,1,224,34,25,0,58,
+129,3,137,130,73,23,146,15,92,51,227,33,1,224,142,1,64,46,234,5,
+0,224,46,10,96,178,224,46,5,138,29,0,83,96,137,0,51,191,160,64,
+67,64,15,96,137,224,102,0,64,45,0,54,96,45,4,85,32,90,32,90,
+130,246,64,20,138,35,2,102,47,32,64,12,138,25,64,206,224,33,2,169,
+219,0,52,104,242,74,37,0,55,233,227,0,97,53,138,56,105,227,224,19,
+4,0,52,91,138,224,18,1,1,56,48,98,128,224,18,7,97,67,224,20,
+8,0,56,96,83,160,19,234,120,2,233,153,2,96,155,136,255,3,85,32,
+75,52,224,177,3,196,112,97,162,64,56,0,64,99,44,1,95,53,113,1,
+64,33,130,138,192,211,129,49,0,54,138,180,147,186,3,51,55,49,32,71,
+255,74,109,108,79,0,51,106,7,169,123,113,53,224,204,3,77,226,116,159,
+0,54,105,189,224,43,3,224,39,2,1,38,49,137,185,160,25,160,14,64,
+28,0,56,107,153,64,35,96,206,172,103,128,140,1,80,32,128,40,128,162,
+128,59,192,73,2,64,89,32,83,98,160,80,199,131,224,211,1,0,55,107,
+29,192,74,128,16,0,95,64,27,160,0,64,116,130,115,3,105,116,111,102,
+66,3,64,49,97,26,3,56,32,95,53,109,4,66,102,192,211,64,7,106,
+153,1,51,55,149,7,80,59,64,6,66,109,0,53,76,233,160,39,0,54,
+128,109,64,11,64,84,130,122,2,102,62,61,96,98,162,115,0,62,96,12,
+130,115,1,102,60,128,26,130,108,1,102,60,96,12,129,221,3,102,110,101,
+103,96,14,129,214,1,102,42,96,12,129,193,1,102,45,64,12,65,185,64,
+12,0,43,96,12,128,207,65,7,225,255,1,238,194,0,226,8,3,226,15,
+1,84,100,3,10,65,32,73,96,63,128,171,128,63,240,33,0,64,8,94,
+12,64,32,128,190,3,85,32,75,50,100,131,64,18,128,196,65,138,115,23,
+0,85,97,206,84,233,96,21,244,142,1,101,71,101,184,101,99,224,2,0,
+97,144,128,114,192,46,178,213,193,171,160,143,224,198,0,176,82,224,30,5,
+240,146,0,84,35,161,1,206,172,82,33,128,45,182,227,224,86,19,212,15,
+224,86,47,130,139,192,218,192,25,128,104,69,49,134,188,166,96,230,95,1,
+224,246,1,147,254,225,56,6,224,32,3,146,123,167,18,224,32,11,145,58,
+224,219,10,192,24,112,203,166,212,143,181,74,55,247,228,3,0,53,248,211,
+0,160,45,224,28,12,224,98,10,213,27,224,52,9,241,180,0,198,215,244,
+194,9,224,54,10,113,102,224,26,14,241,109,1,209,151,66,122,163,58,240,
+32,11,2,73,110,116,144,31,64,58,224,36,4,3,68,97,116,97,64,30,
+88,96,4,95,84,121,112,101,192,12,160,47,163,115,224,84,11,5,70,108,
+111,97,116,87,128,39,64,228,113,44,193,155,135,209,146,179,1,95,52,121,
+58,182,158,64,45,240,249,7,0,54,128,68,131,146,224,108,12,2,67,104,
+97,160,146,64,44,224,60,2,1,49,51,145,54,95,57,163,195,66,187,225,
+161,1,98,186,0,50,164,201,82,79,245,45,5,243,236,4,0,51,97,77,
+96,22,243,177,2,68,4,128,183,131,243,233,36,0,243,49,2,2,95,49,
+48,122,161,234,118,1,244,71,4,111,26,224,44,0,100,164,1,51,53,193,
+24,128,14,1,54,32,165,217,70,211,227,38,1,161,82,164,48,197,238,187,
+27,66,70,167,4,160,6,128,189,1,67,39,73,99,224,232,4,110,107,96,
+201,173,162,128,229,119,124,0,67,128,24,64,0,160,70,105,17,224,78,3,
+97,65,87,172,225,206,0,96,183,243,22,1,224,222,1,65,208,162,188,64,
+10,0,50,129,158,168,82,0,55,190,197,146,151,64,28,66,54,0,32,64,
+129,66,228,0,79,179,186,5,90,32,95,57,54,49,224,106,1,0,75,71,
+80,0,52,100,0,224,10,1,64,64,130,207,71,181,0,80,65,13,96,215,
+243,172,3,85,190,192,69,226,27,1,0,90,161,161,225,164,5,243,187,8,
+194,58,246,173,4,2,95,55,52,236,113,7,244,29,5,132,246,192,106,196,
+248,149,242,182,97,203,208,96,96,245,118,3,224,149,0,98,176,128,127,1,
+50,52,64,31,100,95,167,235,0,50,181,22,1,50,50,71,131,0,52,77,
+109,97,141,224,15,4,171,23,2,48,56,50,227,128,0,244,253,2,227,100,
+1,12,101,120,105,115,116,101,110,116,105,97,108,115,32,85,134,25,97,108,
+108,111,119,101,100,32,105,110,32,112,97,116,116,101,114,110,32,98,105,110,
+100,105,110,103,252,129,0,227,64,14,115,166,71,153,225,58,15,2,49,48,
+48,229,95,0,0,64,74,147,248,7,5,224,17,8,65,225,132,129,108,52,
+64,84,167,74,172,60,160,5,96,18,161,79,247,124,3,160,87,220,196,64,
+65,166,48,69,250,193,168,249,120,4,247,46,7,2,56,57,53,65,51,97,
+126,253,150,2,2,99,110,83,161,13,195,160,225,209,2,249,107,2,225,245,
+0,195,64,70,112,97,172,228,15,2,64,22,135,70,98,53,206,194,96,12,
+225,15,4,64,93,199,144,231,152,2,224,34,3,228,47,0,89,119,192,32,
+65,136,1,56,55,75,116,131,67,237,113,4,1,95,56,73,117,128,49,68,
+34,160,36,183,213,132,85,97,62,215,144,65,228,96,174,224,104,1,131,20,
+164,129,160,6,128,0,64,57,67,9,225,176,0,165,58,227,50,2,0,49,
+150,84,225,192,2,247,115,6,127,23,65,146,225,128,4,0,68,226,142,0,
+160,158,161,203,193,136,131,67,150,58,228,74,2,225,178,11,251,39,13,250,
+43,2,225,98,18,240,118,0,100,83,232,185,0,227,245,0,192,246,224,76,
+1,0,67,64,15,128,72,128,14,96,56,96,19,97,141,72,146,96,92,129,
+130,161,78,197,224,229,232,0,226,91,6,224,58,18,228,167,0,225,233,25,
+225,210,22,227,19,9,64,0,64,197,189,230,227,142,0,128,217,67,106,129,
+72,225,215,2,131,9,0,49,122,30,161,101,131,235,89,192,99,235,123,33,
+231,190,10,86,231,228,124,19,135,191,128,25,225,177,2,129,24,160,99,204,
+43,179,201,230,219,2,160,71,224,94,13,227,177,9,100,201,224,106,7,0,
+67,161,100,192,109,136,210,160,109,224,255,4,1,51,52,98,143,224,110,14,
+197,72,224,95,7,232,139,0,64,126,167,58,65,100,0,85,227,219,0,224,
+102,8,224,21,13,160,124,64,19,69,151,225,31,1,137,71,136,112,192,93,
+193,40,227,180,3,70,150,232,9,1,233,117,1,225,84,3,129,148,137,116,
+192,108,128,18,236,53,0,224,88,6,155,245,64,250,64,247,0,50,78,69,
+251,241,4,104,152,141,209,1,49,51,231,166,0,225,196,7,192,32,125,84,
+96,213,137,185,70,96,64,167,64,17,136,144,235,147,0,130,170,0,67,73,
+9,193,73,228,81,9,226,109,2,102,38,80,184,231,91,9,227,232,0,173,
+68,193,19,226,205,4,225,25,3,234,173,12,130,207,130,74,64,26,96,30,
+225,169,0,128,195,233,62,1,134,211,0,50,126,61,0,67,224,168,2,237,
+182,4,0,50,78,180,224,201,5,83,196,70,23,0,49,172,166,225,233,8,
+98,126,113,39,1,50,48,64,237,131,97,224,40,14,253,14,0,0,50,75,
+42,234,20,6,201,54,129,27,229,81,6,100,201,66,220,134,98,160,0,64,
+227,209,217,224,178,1,0,56,75,235,239,76,1,226,149,3,1,51,51,235,
+224,1,229,117,2,224,15,0,171,68,193,101,2,95,53,52,80,180,64,217,
+224,154,0,106,162,235,199,2,132,138,128,10,0,95,125,134,96,103,112,77,
+227,114,0,224,80,1,1,54,56,247,119,0,96,20,0,53,76,159,162,162,
+1,55,49,65,206,96,11,160,46,0,52,126,75,229,202,7,2,95,50,55,
+74,133,1,48,50,128,150,128,186,234,39,3,129,64,0,50,85,30,229,177,
+2,64,21,3,80,32,95,56,128,83,64,201,0,51,82,67,191,157,101,194,
+226,12,7,0,75,226,9,15,233,189,9,234,87,1,224,0,1,227,237,0,
+65,185,224,166,9,66,57,99,149,130,120,230,186,0,224,86,1,225,65,3,
+65,85,2,57,32,95,116,125,192,90,169,244,141,20,199,76,230,77,0,164,
+155,225,129,0,73,18,160,10,163,124,160,13,198,149,234,25,0,192,201,224,
+44,11,231,187,0,224,61,2,173,210,224,66,3,204,4,224,53,0,192,69,
+224,70,15,228,6,2,234,161,1,169,142,224,137,7,128,219,164,122,192,63,
+96,10,108,65,97,83,95,15,233,56,0,112,31,225,159,8,141,198,227,221,
+1,67,79,203,79,98,251,128,71,64,23,66,166,213,87,128,2,151,198,64,
+26,199,50,226,43,8,1,50,48,225,189,1,235,236,7,104,209,97,193,138,
+208,0,66,84,214,194,37,215,248,193,21,171,149,68,186,2,50,51,49,226,
+4,0,128,90,208,75,128,223,225,70,3,166,164,163,150,160,132,0,50,104,
+88,134,62,71,21,96,4,0,57,234,60,3,16,103,101,116,83,117,112,101,
+114,67,108,97,115,115,101,115,58,32,138,73,80,76,86,32,200,215,193,142,
+174,47,235,122,9,64,7,128,142,134,15,107,28,68,62,79,200,106,120,0,
+48,87,20,206,125,64,42,0,83,65,32,0,57,64,180,206,234,128,94,164,
+117,224,0,5,97,190,235,179,0,65,137,181,169,1,49,48,87,124,150,65,
+80,56,97,157,161,13,225,19,8,225,180,2,115,182,97,173,232,82,8,227,
+203,1,232,244,4,193,216,0,48,86,51,166,148,91,171,77,63,133,167,224,
+78,12,64,151,241,144,1,1,83,32,96,201,229,177,0,97,188,128,57,106,
+249,237,173,5,128,22,224,182,2,230,85,0,1,49,51,100,208,162,124,0,
+48,64,12,160,186,231,60,0,103,6,0,51,100,241,139,119,64,13,80,49,
+136,43,128,208,1,48,48,97,157,0,49,66,189,64,31,128,120,96,198,1,
+50,56,194,124,96,14,89,30,225,170,2,209,23,128,162,245,35,8,224,7,
+3,192,133,193,185,136,128,101,140,133,161,64,20,136,131,65,32,204,54,224,
+66,5,0,49,115,49,96,42,135,234,96,148,91,85,65,127,0,53,128,68,
+135,32,153,227,167,164,166,85,64,29,131,238,0,90,128,82,168,251,65,11,
+161,154,224,111,3,182,236,73,155,137,25,108,210,163,154,238,222,1,229,76,
+8,193,134,128,30,229,76,5,226,148,0,176,156,0,57,212,215,230,241,0,
+234,43,0,64,46,242,97,5,230,218,1,0,67,102,97,161,132,165,102,234,
+211,1,232,0,3,103,98,228,101,1,243,165,14,224,157,1,224,60,2,232,
+173,1,98,55,194,118,65,23,246,242,1,224,58,3,170,114,243,19,3,227,
+70,12,73,233,147,232,149,203,128,181,160,61,104,6,238,155,1,85,39,242,
+249,3,65,144,131,245,0,75,227,23,7,167,175,0,57,165,111,232,66,0,
+224,239,2,110,249,160,46,1,50,49,134,4,64,40,224,156,1,160,140,225,
+35,3,0,50,104,119,229,204,4,128,135,0,54,164,125,66,129,64,185,0,
+52,98,128,64,218,209,161,233,101,1,225,126,0,105,114,224,23,1,226,65,
+0,135,81,167,191,164,27,194,100,230,248,5,192,68,226,96,0,162,146,151,
+64,215,94,228,93,0,224,46,21,161,4,64,29,196,140,234,21,3,224,43,
+4,0,50,163,192,240,184,0,239,196,2,224,40,5,240,192,2,196,140,228,
+215,1,224,28,2,113,9,162,154,192,255,194,255,226,180,1,1,95,57,223,
+115,64,1,167,89,0,49,131,56,96,52,71,84,225,239,0,0,80,239,210,
+1,5,95,56,55,51,32,79,228,101,3,169,246,2,49,51,49,65,200,198,
+112,197,45,246,0,0,0,39,128,58,228,235,4,230,128,1,1,51,49,166,
+155,175,153,230,38,9,175,76,128,82,226,55,3,225,15,1,97,27,164,101,
+88,11,230,238,2,241,66,0,233,220,8,161,94,192,250,199,143,227,249,11,
+238,144,4,160,141,165,161,242,236,2,227,152,7,237,194,2,226,49,2,233,
+132,0,230,86,2,192,117,225,150,0,245,183,3,103,23,0,49,247,209,0,
+128,61,160,199,224,111,2,134,143,67,55,68,80,166,145,225,59,42,228,45,
+2,128,40,224,236,2,64,1,247,9,23,224,234,2,234,181,8,107,68,197,
+91,129,50,224,75,6,224,45,3,193,41,128,43,224,2,3,229,150,6,245,
+247,0,193,23,225,88,3,240,98,2,247,13,6,228,18,0,98,117,235,54,
+4,0,95,90,251,225,187,5,130,29,107,30,0,49,77,66,229,87,4,225,
+101,40,224,178,0,160,0,246,112,0,228,97,22,225,98,1,128,235,160,46,
+224,40,9,201,64,228,50,8,224,25,0,1,85,32,196,215,160,64,128,225,
+245,64,7,226,250,2,224,36,1,231,220,1,227,52,3,225,67,1,64,46,
+225,67,14,161,207,176,136,70,47,0,49,105,64,65,160,1,53,55,80,12,
+1,57,56,106,235,228,103,1,224,0,1,224,121,3,128,7,174,25,227,119,
+4,64,57,118,150,224,70,8,78,194,224,149,4,224,87,2,225,41,9,225,
+253,8,160,38,225,31,4,0,52,199,99,131,118,234,188,1,227,228,4,97,
+86,227,213,4,100,143,66,189,224,142,2,145,184,224,154,1,160,56,224,150,
+5,166,100,128,141,227,152,2,224,10,0,224,200,8,240,129,2,224,199,1,
+231,236,3,168,127,224,175,22,167,57,228,143,7,101,233,254,242,2,230,109,
+0,228,156,6,244,226,5,96,229,0,67,64,21,118,95,96,145,247,8,8,
+227,56,2,130,238,73,46,177,255,128,6,64,125,0,54,100,244,0,54,225,
+55,2,224,0,1,130,225,231,251,2,227,98,3,160,119,224,25,1,163,60,
+230,62,0,128,199,96,135,128,43,247,204,1,231,215,15,243,117,2,160,186,
+97,144,224,32,1,97,106,132,218,64,32,193,144,227,118,4,70,1,64,11,
+65,84,0,57,106,117,225,61,2,220,7,225,248,5,224,170,8,136,80,192,
+22,160,25,224,241,0,225,219,4,225,220,2,128,227,230,114,8,96,50,1,
+49,49,183,35,0,66,72,69,142,143,192,135,225,187,2,135,105,0,83,113,
+184,72,97,65,167,76,65,200,32,192,17,0,75,254,85,1,1,95,54,68,
+13,64,18,144,24,64,0,130,25,192,0,226,213,10,129,165,96,254,248,183,
+1,229,72,1,238,6,3,129,1,225,51,3,161,114,229,48,2,192,64,161,
+185,167,208,200,51,233,146,5,160,121,224,146,8,192,24,216,99,235,168,6,
+0,48,250,42,5,225,191,4,128,10,242,101,0,192,119,0,80,229,88,5,
+139,60,110,111,0,85,144,5,0,50,206,83,4,95,52,54,52,32,240,135,
+1,5,110,101,103,97,116,101,250,198,1,132,90,80,131,96,128,251,173,1,
+224,135,6,128,232,193,46,161,40,2,32,95,54,79,114,193,94,196,34,229,
+250,0,237,129,6,224,107,15,225,88,0,231,190,10,195,48,232,86,16,192,
+161,228,24,4,231,212,10,103,159,224,55,4,226,155,2,0,67,250,153,0,
+225,0,5,204,170,224,151,8,78,220,224,63,27,96,103,242,33,29,4,116,
+99,80,97,116,210,23,152,147,159,114,114,34,0,57,113,12,247,242,4,224,
+76,9,2,79,32,35,79,180,244,241,0,64,55,0,56,244,52,0,128,203,
+163,212,169,209,97,41,79,176,117,186,91,202,107,247,0,52,224,152,3,1,
+61,61,162,46,224,35,18,2,84,114,117,226,84,1,224,165,4,77,173,144,
+136,64,125,76,69,236,218,1,232,211,7,244,189,4,232,247,0,237,1,15,
+237,41,1,229,188,2,224,39,10,229,20,2,227,153,8,224,27,0,229,121,
+1,224,35,8,247,90,2,200,168,77,68,244,254,7,192,196,224,73,1,128,
+195,96,41,240,131,2,224,249,3,236,37,2,249,243,13,130,236,224,94,3,
+192,96,224,59,3,194,248,170,211,231,163,7,96,137,129,92,232,53,8,147,
+1,165,45,66,213,253,7,2,224,36,6,3,85,32,75,51,226,244,2,178,
+151,192,0,64,228,73,166,0,80,180,206,1,95,52,140,108,96,0,224,188,
+1,233,38,6,0,51,239,27,2,224,223,6,224,51,3,234,67,3,160,56,
+0,50,144,15,0,50,226,133,3,3,98,105,110,100,228,218,1,224,82,17,
+204,111,224,96,1,97,51,234,44,4,0,56,245,146,3,224,71,6,160,19,
+194,200,231,91,2,224,69,4,64,21,229,52,1,96,31,103,45,97,208,64,
+14,232,217,3,100,163,196,69,224,100,0,194,112,236,224,11,1,49,57,198,
+87,128,1,236,99,7,230,168,0,232,106,0,247,12,1,242,224,6,64,98,
+249,186,5,224,0,0,224,252,8,162,190,227,196,2,192,102,64,0,224,23,
+7,230,54,4,192,33,226,243,9,237,147,3,237,153,1,229,199,7,230,133,
+10,131,247,0,95,69,2,0,54,128,184,224,248,1,128,5,92,6,160,28,
+226,188,8,192,33,1,48,56,226,71,4,17,116,111,111,32,109,97,110,121,
+32,97,114,103,117,109,101,110,116,115,162,85,224,47,18,2,102,101,119,224,
+46,8,224,239,3,225,10,2,192,2,226,42,4,234,86,20,234,95,1,225,
+207,1,152,229,128,19,170,73,64,3,226,9,7,183,106,225,199,0,166,5,
+224,111,0,231,50,0,224,117,18,224,135,10,224,187,3,144,210,160,196,192,
+103,64,1,227,46,1,226,195,2,228,176,3,236,11,4,236,228,10,224,72,
+7,224,177,2,226,43,6,224,189,7,64,6,224,49,6,225,92,1,225,12,
+1,96,37,129,18,224,38,0,99,37,167,126,160,151,222,31,131,35,224,0,
+3,192,69,129,102,224,173,2,224,186,5,225,246,2,224,128,3,96,165,224,
+140,0,226,17,7,134,251,194,57,132,76,97,227,226,42,10,96,61,227,43,
+4,192,153,144,151,129,166,230,19,6,163,71,65,191,235,177,0,64,1,224,
+41,9,224,225,0,128,17,189,35,185,100,128,52,0,83,192,167,171,12,65,
+201,0,85,72,128,238,246,1,192,116,224,182,0,231,99,6,230,67,2,104,
+183,200,67,64,44,114,178,0,90,102,148,114,209,3,54,32,95,55,97,139,
+235,162,1,65,159,241,64,7,136,139,230,139,2,227,44,0,163,197,233,82,
+22,227,228,1,11,66,97,100,32,112,97,116,116,101,114,110,32,251,188,3,
+233,97,0,72,233,0,51,182,174,0,51,247,4,1,105,249,64,27,153,78,
+1,80,32,64,11,217,64,0,65,128,26,153,49,97,78,226,176,1,231,126,
+6,225,148,3,77,18,94,233,128,250,0,58,135,70,151,39,235,95,0,247,
+45,1,78,22,185,93,230,6,0,226,30,8,226,161,2,230,195,7,128,40,
+130,45,162,43,1,95,55,102,123,96,133,229,82,4,64,110,152,59,70,203,
+108,135,203,237,224,190,0,64,35,0,54,224,146,2,231,29,1,130,220,226,
+185,8,224,16,3,71,60,64,64,216,1,107,93,134,180,234,151,19,64,50,
+202,134,224,50,21,3,70,97,108,115,224,51,1,129,208,91,44,137,61,170,
+103,98,240,226,238,3,178,20,224,33,18,182,81,129,97,224,33,13,135,207,
+131,39,123,8,227,81,9,201,170,231,236,5,233,178,10,96,75,0,85,99,
+204,252,204,2,119,209,0,95,240,52,5,200,232,227,26,1,160,111,65,32,
+0,85,166,48,250,155,2,183,72,224,58,1,224,35,13,129,244,224,94,1,
+128,205,164,198,225,56,2,100,30,228,62,8,106,23,224,88,13,67,226,224,
+88,2,224,250,8,128,81,0,85,64,76,99,71,224,61,2,66,219,155,2,
+0,49,65,15,242,43,1,242,132,4,0,49,153,27,224,93,0,225,137,8,
+206,154,225,137,10,224,178,1,0,51,64,21,64,163,225,130,5,0,49,98,
+41,224,191,0,1,95,50,67,176,128,40,128,0,226,66,18,208,218,128,31,
+236,230,11,192,174,224,25,4,99,67,235,249,8,248,10,3,235,244,11,98,
+174,226,64,6,0,54,243,85,6,226,73,15,101,249,224,16,1,130,207,225,
+66,4,65,163,224,92,7,97,118,224,82,15,230,57,1,241,233,13,227,18,
+8,224,51,0,226,114,9,225,41,16,96,109,227,75,9,129,9,225,216,23,
+0,52,130,61,193,216,224,199,1,226,198,10,69,130,225,49,5,224,95,23,
+136,121,224,94,1,227,89,4,228,18,11,96,63,240,122,29,9,100,115,69,
+70,105,101,108,100,115,32,230,216,11,69,6,134,187,64,159,1,80,32,163,
+96,0,80,134,91,134,201,96,23,100,115,0,85,128,22,134,209,64,48,254,
+63,10,0,48,201,69,230,236,1,201,201,232,195,3,83,26,162,213,254,62,
+22,1,48,51,163,185,225,0,2,0,58,127,37,197,241,231,143,0,65,8,
+1,53,50,88,79,2,49,49,48,64,176,64,39,135,32,129,126,147,70,128,
+98,134,35,152,140,70,37,225,66,17,3,101,110,117,109,203,245,64,81,135,
+3,193,48,96,238,129,48,68,190,1,10,65,70,235,132,157,227,203,12,134,
+77,224,26,12,134,70,226,189,13,226,216,0,226,190,5,96,22,84,23,101,
+224,97,86,231,145,5,1,95,49,250,120,0,136,89,128,32,229,151,18,224,
+36,4,229,129,9,96,24,85,220,224,37,2,228,185,17,98,78,224,209,12,
+228,211,0,224,94,4,183,42,224,91,1,228,72,6,0,55,66,148,228,72,
+6,224,133,1,239,145,5,228,24,9,228,105,11,192,24,228,105,0,2,51,
+48,52,239,170,3,227,130,1,224,24,7,225,101,4,98,89,66,3,200,188,
+0,89,214,16,233,2,1,108,30,238,40,1,64,13,131,69,224,169,10,230,
+151,0,232,146,19,224,206,11,192,25,96,180,224,73,1,224,244,16,96,154,
+241,185,6,129,81,128,23,96,246,137,77,243,18,2,230,87,0,161,215,246,
+13,4,224,80,8,245,213,3,235,238,1,99,135,68,197,236,146,5,96,30,
+64,174,226,229,1,130,210,97,98,128,32,216,106,96,69,96,4,74,146,96,
+32,0,90,64,124,90,52,98,42,1,75,50,192,23,96,0,97,225,130,67,
+224,0,1,227,44,12,225,219,8,97,220,138,102,99,222,207,243,236,239,8,
+133,186,164,112,224,216,0,245,141,0,241,133,0,192,200,162,10,226,20,1,
+160,9,129,239,226,34,2,235,186,6,101,43,129,160,248,100,2,128,23,174,
+214,128,70,82,16,0,80,214,58,231,56,2,223,13,232,62,8,192,159,96,
+161,229,200,3,162,203,81,127,3,32,95,53,53,250,45,2,229,160,6,162,
+47,0,56,236,34,0,237,107,5,13,115,101,99,116,105,111,110,32,102,105,
+120,105,116,121,209,128,101,137,0,56,229,121,3,1,36,120,166,180,237,233,
+5,65,137,139,188,206,167,243,174,7,225,140,6,128,30,225,144,5,195,84,
+64,116,0,50,64,208,0,79,193,34,130,190,135,148,243,59,8,99,18,96,
+166,224,148,3,224,178,9,225,222,56,128,198,250,66,7,130,86,99,136,208,
+150,227,133,0,246,100,0,225,208,14,160,84,240,194,2,250,123,0,224,21,
+2,224,60,30,64,58,242,254,2,226,24,0,226,22,5,128,174,225,116,1,
+135,109,225,110,5,224,0,1,226,51,87,232,233,1,232,184,11,204,25,224,
+213,3,225,149,5,162,24,236,79,1,227,35,0,192,51,247,233,22,128,122,
+161,69,224,13,0,246,178,7,227,74,6,128,20,132,212,160,14,99,250,132,
+228,228,76,0,163,246,0,57,138,74,1,50,57,228,227,4,226,125,1,193,
+173,66,88,130,224,0,85,97,3,0,56,170,122,224,122,2,65,50,138,2,
+128,50,226,194,10,102,195,224,13,5,160,172,128,2,160,14,226,255,13,84,
+229,224,246,2,96,14,224,16,1,129,74,163,38,96,14,0,64,71,10,128,
+58,131,87,129,16,104,249,64,107,128,36,96,117,166,62,73,17,1,52,55,
+70,190,222,46,160,7,254,61,2,224,190,2,224,2,3,192,30,192,136,199,
+128,224,2,0,181,104,225,158,1,238,75,3,99,218,129,147,1,85,32,177,
+80,129,180,163,170,225,27,0,65,252,224,7,7,101,152,227,33,6,224,9,
+0,224,165,2,244,110,2,161,2,96,86,224,210,6,96,17,194,51,64,92,
+65,230,136,197,225,6,1,225,115,0,226,193,2,224,231,3,160,101,251,212,
+4,192,131,168,107,225,83,2,192,45,160,245,251,82,11,225,248,2,193,98,
+128,91,224,26,6,224,148,4,213,249,225,180,15,129,17,224,66,9,226,145,
+0,224,127,14,224,106,0,96,170,224,35,21,128,1,169,90,192,0,247,253,
+6,128,178,226,167,0,160,14,224,50,4,224,88,15,211,40,224,0,1,224,
+234,14,224,2,3,224,246,0,64,0,228,139,9,249,129,9,252,77,1,226,
+67,2,225,236,0,130,42,128,181,68,39,64,20,227,142,0,0,95,115,248,
+144,212,116,23,224,227,0,1,95,50,151,75,224,42,1,1,51,56,69,89,
+0,50,154,204,64,44,181,225,64,65,192,22,64,8,232,53,0,224,125,1,
+162,89,248,5,1,226,239,5,224,173,2,225,74,2,161,98,192,44,224,62,
+4,128,166,225,32,6,224,181,12,250,112,1,96,223,225,13,0,171,13,225,
+13,21,224,225,13,0,56,202,129,163,133,254,96,13,64,183,96,19,227,173,
+5,96,16,3,95,52,55,53,96,113,69,245,246,215,2,238,177,12,28,97,
+109,98,105,103,117,111,117,115,32,111,112,101,114,97,116,111,114,32,101,120,
+112,114,101,115,115,105,111,110,250,192,0,226,70,15,96,123,64,224,129,53,
+96,21,224,240,1,1,53,56,225,29,4,224,209,10,224,172,38,0,98,87,
+124,4,114,101,102,105,120,224,164,11,228,250,2,4,95,49,55,50,32,224,
+55,1,16,92,51,52,38,115,114,99,47,77,105,99,114,111,72,115,47,70,
+104,24,2,46,104,115,64,24,4,44,54,52,58,55,192,68,164,238,237,187,
+1,225,210,0,171,39,170,230,3,95,55,54,52,164,206,235,29,1,129,28,
+160,220,65,211,78,4,0,50,201,143,64,0,4,80,32,75,50,32,79,55,
+151,53,133,237,1,64,89,100,79,65,35,229,41,3,233,85,1,104,109,139,
+157,64,79,0,54,234,125,1,138,55,128,113,130,76,160,115,241,235,0,0,
+57,234,126,0,184,220,64,19,236,228,0,105,186,135,16,233,167,0,171,240,
+100,91,64,138,198,149,64,34,0,80,192,179,130,133,193,199,96,182,210,155,
+251,28,1,224,61,7,193,25,224,33,1,225,3,1,161,25,0,65,225,25,
+4,72,86,146,66,109,179,67,26,1,95,49,78,32,89,243,5,95,49,55,
+55,32,35,97,27,0,58,128,211,145,228,104,231,3,67,32,95,52,66,122,
+226,3,1,4,110,101,103,97,116,215,209,97,22,4,10,65,32,65,32,64,
+11,145,165,0,90,65,77,64,14,0,54,96,14,0,75,96,26,207,162,193,
+31,132,34,171,82,64,32,141,230,0,75,153,194,100,158,89,128,1,52,57,
+99,17,139,26,143,139,64,193,78,50,174,35,206,42,128,24,64,11,174,81,
+224,24,11,160,49,142,113,1,95,49,75,54,164,49,64,115,202,171,251,142,
+5,227,172,1,225,175,1,240,60,11,227,194,0,248,106,20,1,95,56,111,
+174,193,235,226,162,8,128,40,244,104,30,10,103,101,116,65,112,112,67,111,
+110,58,32,251,66,12,240,146,4,0,85,128,206,96,233,212,101,160,105,2,
+52,52,51,226,24,17,226,227,0,3,67,32,95,51,65,211,96,65,130,77,
+104,127,0,58,128,55,192,80,235,228,9,128,65,129,68,101,153,129,189,124,
+201,64,60,130,66,65,3,0,80,228,107,2,2,118,97,108,154,108,224,18,
+1,2,116,121,112,130,120,224,18,1,3,107,105,110,100,224,18,6,3,115,
+111,114,116,64,18,64,90,244,55,1,245,55,24,102,110,129,126,224,12,1,
+64,166,65,147,65,167,252,225,4,204,228,164,185,131,149,238,233,6,66,218,
+97,190,0,56,81,167,253,57,7,64,158,0,54,235,234,2,196,254,170,237,
+234,16,4,162,71,133,74,231,75,0,226,103,19,96,144,0,56,69,91,96,
+195,165,132,226,115,1,226,113,0,247,245,4,1,95,57,85,227,224,42,15,
+129,45,224,94,1,141,8,64,94,132,122,89,126,1,48,55,225,194,2,10,
+115,101,116,83,76,111,99,69,120,112,114,196,47,65,10,156,169,114,76,97,
+87,1,56,54,178,108,96,71,129,74,1,50,56,134,188,128,19,64,56,132,
+32,0,79,68,77,64,27,97,214,128,180,1,52,53,156,197,96,43,161,238,
+241,69,0,97,198,200,75,237,30,1,64,8,3,95,57,56,54,73,48,129,
+177,234,64,0,162,4,224,12,1,224,25,0,4,95,49,50,51,56,64,5,
+0,52,142,183,207,183,160,178,224,27,3,163,42,160,6,0,66,163,58,67,
+202,194,55,195,123,71,182,224,245,0,227,232,14,9,117,110,100,101,102,105,
+110,101,100,32,207,132,242,112,0,224,54,19,228,22,0,0,52,150,180,160,
+103,0,83,140,84,97,5,104,45,237,174,4,128,35,224,157,5,226,225,0,
+224,105,15,232,253,1,200,0,165,14,167,237,224,61,21,192,167,168,36,128,
+51,160,180,224,55,9,4,79,32,35,51,50,231,186,1,66,35,1,48,32,
+160,45,72,1,0,80,96,200,232,77,1,205,232,232,82,0,67,249,112,27,
+224,0,5,161,7,66,71,249,133,1,224,164,1,1,91,93,96,164,225,9,
+13,2,79,32,35,69,84,193,65,226,24,1,224,255,0,166,84,69,102,224,
+53,4,0,51,244,37,2,224,91,16,73,68,237,233,2,224,91,5,128,0,
+64,182,133,148,0,83,164,63,128,32,98,147,68,127,0,49,70,27,64,229,
+117,138,66,5,132,159,227,230,1,203,66,0,53,68,22,130,225,74,87,71,
+254,1,95,52,71,232,64,0,0,73,101,240,66,197,136,37,2,49,50,55,
+65,172,64,58,96,24,217,251,160,239,199,183,1,95,49,100,139,128,229,162,
+27,88,115,0,54,172,135,224,212,0,160,8,176,98,100,3,192,35,96,95,
+133,209,65,203,82,60,2,95,49,48,182,47,65,45,0,50,66,173,225,177,
+1,3,66,111,111,108,196,119,1,55,54,96,55,224,28,1,4,68,97,116,
+97,46,64,33,6,95,84,121,112,101,46,34,128,189,228,157,0,204,173,242,
+82,4,0,49,100,42,129,165,114,79,239,188,4,236,247,1,242,192,6,128,
+159,133,61,164,147,232,77,11,1,95,52,178,64,194,8,230,178,4,1,50,
+55,193,5,225,65,2,224,109,7,130,62,0,49,69,100,65,26,195,244,193,
+226,225,93,2,224,17,4,252,38,4,96,19,109,164,0,54,98,67,2,50,
+50,52,64,27,133,154,184,115,192,169,224,71,4,96,48,164,153,1,49,55,
+130,52,235,46,1,228,168,20,21,110,111,116,32,112,111,108,121,109,111,114,
+112,104,105,99,32,101,110,111,117,103,104,196,22,92,98,89,99,2,95,50,
+48,227,232,0,96,0,231,113,4,109,40,1,51,57,98,200,2,50,51,49,
+229,216,1,224,41,8,97,233,134,78,168,10,105,109,0,48,96,160,102,210,
+89,32,0,50,75,58,232,36,0,64,50,134,117,91,135,0,90,160,47,1,
+52,52,131,128,64,29,134,123,107,121,64,14,132,66,204,6,193,226,2,49,
+49,52,67,71,97,34,73,67,2,95,49,52,125,53,97,64,66,82,207,100,
+97,220,225,217,1,128,48,64,144,225,83,4,226,79,3,143,89,246,208,3,
+239,214,6,227,52,0,226,148,1,161,74,99,250,0,54,102,152,193,200,232,
+204,6,214,66,141,59,103,248,228,143,0,64,237,132,121,128,134,226,143,7,
+96,77,0,50,103,227,163,8,214,171,0,85,225,31,1,64,19,132,151,224,
+127,10,64,84,0,56,138,145,1,50,54,132,135,245,53,6,96,189,2,10,
+65,32,229,255,11,160,149,131,14,166,97,100,59,1,55,52,109,103,2,49,
+50,54,197,70,64,72,170,141,96,233,160,139,1,56,55,74,46,142,201,64,
+46,65,67,138,248,64,57,164,142,0,56,66,1,128,54,101,228,64,45,64,
+136,128,10,64,43,0,54,197,51,234,136,7,1,49,53,225,123,1,227,137,
+0,65,158,69,142,175,64,99,87,226,15,2,228,28,5,133,92,64,21,224,
+94,17,231,147,0,227,242,8,132,54,64,110,162,11,161,15,128,23,225,104,
+1,149,252,161,39,133,42,224,108,14,72,96,129,209,224,210,7,64,72,226,
+36,4,0,95,247,220,1,94,120,224,27,5,1,49,49,97,155,224,136,14,
+224,43,4,111,129,98,105,96,105,240,126,3,160,6,0,85,229,54,1,224,
+253,2,192,248,239,178,0,226,139,2,225,39,5,0,95,67,47,192,169,68,
+227,0,56,250,37,2,98,98,223,51,225,69,1,225,155,0,251,173,8,224,
+17,3,193,229,65,87,132,152,102,254,68,50,100,16,64,155,225,222,0,236,
+102,7,207,69,192,32,154,148,228,26,5,164,32,160,123,224,25,9,210,118,
+225,206,8,0,50,190,220,160,0,172,156,192,48,235,85,0,64,2,224,39,
+1,128,135,128,1,226,115,1,64,203,233,5,0,100,61,128,189,96,173,224,
+79,0,244,112,2,135,34,160,59,1,95,49,69,113,128,93,246,216,8,224,
+117,6,224,150,0,229,14,3,165,12,152,223,64,134,101,14,70,7,153,23,
+224,151,22,135,55,64,142,169,54,224,131,3,65,229,98,67,237,229,4,111,
+111,177,138,96,0,225,61,6,245,75,8,162,214,129,54,200,33,160,9,128,
+147,162,222,130,96,224,126,0,224,65,1,154,229,231,222,7,192,2,244,108,
+3,224,32,0,200,182,237,48,0,192,99,228,9,3,224,26,0,253,6,2,
+224,31,4,224,131,2,176,111,224,84,1,224,133,1,224,219,0,198,115,193,
+154,224,92,2,64,47,251,102,3,97,67,97,150,66,2,0,55,227,114,1,
+67,44,135,146,0,79,75,86,65,119,126,35,0,56,100,129,67,214,67,83,
+64,27,202,218,136,17,2,95,52,54,83,219,0,49,107,237,96,39,64,196,
+224,39,16,1,50,50,102,113,75,23,64,87,224,39,17,145,216,64,8,64,
+184,96,147,75,124,210,140,110,164,167,52,64,186,136,47,239,237,5,185,236,
+129,71,195,199,96,11,232,20,1,97,183,239,190,6,226,3,11,225,142,5,
+224,30,12,224,85,16,227,243,0,224,85,22,226,103,6,98,23,65,26,65,
+40,251,239,3,64,0,161,2,64,250,137,27,235,139,6,75,134,13,76,105,
+116,115,46,75,110,111,119,110,83,121,109,98,107,189,64,47,172,215,225,42,
+140,226,164,0,224,85,22,225,42,45,66,114,242,192,17,0,50,73,147,128,
+106,204,178,190,51,0,32,176,121,230,98,3,237,106,1,224,164,0,225,82,
+5,170,164,134,113,166,119,224,202,5,128,1,165,26,224,25,8,224,131,0,
+225,32,4,212,139,224,71,9,225,41,0,230,146,11,229,28,8,166,15,224,
+19,8,252,62,1,224,67,8,224,49,6,225,195,3,108,38,145,156,224,33,
+0,224,51,3,224,13,4,224,10,1,96,57,105,44,0,53,145,206,0,53,
+229,0,2,234,183,7,64,39,71,206,128,59,0,67,100,213,249,22,7,225,
+252,4,224,132,57,100,90,66,59,104,66,74,135,68,126,0,75,155,25,64,
+36,2,75,32,75,152,216,64,12,64,43,234,192,0,128,2,230,150,0,193,
+96,130,1,224,31,0,128,2,171,211,229,161,0,193,157,96,5,64,144,96,
+255,226,124,10,193,180,128,99,225,144,5,230,36,0,134,33,129,215,245,138,
+1,161,193,239,41,3,102,90,0,39,169,209,234,52,3,233,29,2,64,1,
+236,80,8,224,26,2,240,151,5,193,106,160,108,67,165,64,12,153,105,198,
+146,128,166,0,79,160,239,64,35,64,242,203,239,224,95,1,237,71,10,224,
+112,0,162,130,226,18,1,224,55,2,146,174,128,7,192,226,240,238,0,1,
+56,50,231,1,1,128,79,239,84,15,31,77,117,108,116,105,112,108,101,32,
+99,111,110,115,116,114,97,105,110,116,32,115,111,108,117,116,105,111,110,115,
+32,102,111,0,114,243,118,0,160,71,0,53,144,54,1,49,52,164,85,162,
+33,0,54,139,232,0,54,92,131,129,5,164,155,177,44,81,199,245,247,5,
+5,116,117,112,108,101,67,224,117,0,0,115,207,198,129,44,79,62,123,108,
+96,104,0,66,78,205,71,213,98,33,0,95,81,167,188,229,96,99,171,13,
+225,232,2,154,12,130,41,66,12,212,203,98,83,228,130,13,104,8,128,230,
+143,99,0,90,64,35,237,165,0,229,126,4,160,123,162,14,0,89,64,13,
+194,43,170,29,224,16,1,229,8,0,160,14,227,33,1,234,197,2,106,244,
+230,0,5,137,114,96,5,235,184,1,130,230,188,47,224,60,1,133,34,242,
+94,4,233,43,1,224,57,0,96,87,105,53,211,183,128,159,227,36,1,130,
+202,144,183,66,175,85,66,224,0,4,227,223,3,66,219,97,176,228,112,2,
+66,32,96,51,193,44,65,158,215,136,230,72,5,247,124,1,67,149,2,49,
+50,51,98,174,0,89,64,16,227,204,2,193,195,193,42,225,32,0,97,0,
+224,15,2,96,27,65,81,128,213,224,83,3,96,201,224,242,1,106,111,128,
+158,0,95,78,106,64,29,164,138,97,233,114,192,224,22,1,227,127,7,128,
+95,252,158,0,224,10,4,240,200,0,1,51,57,64,5,181,31,224,147,0,
+172,156,65,36,165,20,65,30,248,143,1,161,200,193,41,192,205,177,178,224,
+206,0,224,105,4,99,211,192,25,196,49,64,23,0,56,155,173,0,51,64,
+37,144,103,69,224,106,133,228,75,3,224,185,0,224,103,7,64,67,249,231,
+1,160,31,227,55,1,96,130,224,149,2,96,15,160,50,64,11,241,100,9,
+237,34,3,195,99,237,164,6,1,95,57,224,154,2,192,110,224,52,2,64,
+1,163,55,227,68,3,224,190,1,79,135,225,13,4,194,172,242,211,0,129,
+58,84,174,193,246,224,20,1,224,200,0,86,209,134,61,128,113,68,135,3,
+50,56,32,95,212,224,1,49,49,82,1,242,71,11,100,52,248,76,0,238,
+130,8,129,37,96,61,225,37,49,1,67,32,225,39,4,131,177,69,248,2,
+52,57,51,197,247,229,103,1,4,102,114,101,101,32,93,20,20,32,118,97,
+114,105,97,98,108,101,32,105,110,32,111,117,116,112,117,116,32,102,90,52,
+0,112,229,225,3,227,17,4,241,66,0,229,89,1,164,239,129,37,196,236,
+128,13,196,233,161,140,225,183,5,141,215,234,245,1,228,169,17,228,146,9,
+228,137,8,226,230,1,0,53,234,57,1,67,75,140,52,130,254,192,73,64,
+65,64,27,140,32,65,113,135,180,231,100,1,228,67,2,228,139,5,224,42,
+8,224,228,0,130,135,224,191,0,227,158,3,133,15,228,198,1,226,199,0,
+0,32,188,76,133,33,128,234,200,90,128,11,239,56,7,227,188,1,96,0,
+164,181,160,8,128,25,0,58,131,115,249,78,4,129,57,82,126,192,59,224,
+22,2,224,25,6,224,26,6,224,29,7,227,238,3,227,133,10,192,196,226,
+229,4,64,146,202,93,0,95,83,184,65,63,128,169,138,72,65,159,129,49,
+233,246,0,92,110,181,9,1,50,52,98,129,101,60,64,7,0,53,224,13,
+0,64,65,0,54,168,79,145,32,98,26,79,207,1,49,50,96,178,99,10,
+84,62,64,16,123,197,96,22,64,56,136,136,3,85,32,75,51,98,180,64,
+18,136,55,155,10,98,143,0,95,90,253,160,58,96,75,80,43,64,22,123,
+27,128,22,192,236,64,15,154,206,0,52,215,243,1,75,51,113,199,64,18,
+215,232,72,199,200,58,64,23,220,52,161,69,96,23,224,11,2,192,8,98,
+3,64,47,130,180,97,218,231,193,3,2,49,50,51,148,242,97,135,161,4,
+96,49,88,220,128,140,0,50,192,120,64,21,129,143,81,35,224,143,4,64,
+69,163,20,136,130,192,139,195,201,167,179,180,22,128,29,161,46,2,67,32,
+60,239,48,1,243,237,1,224,39,14,169,94,226,62,2,233,121,5,238,122,
+12,131,99,227,71,9,69,1,227,73,1,194,133,228,186,4,200,91,178,47,
+169,67,227,67,0,224,132,8,224,131,4,192,128,165,207,254,36,1,224,50,
+33,196,4,185,67,2,32,95,53,107,252,192,47,224,172,6,224,0,0,228,
+85,0,160,244,225,74,11,163,107,225,73,10,130,159,225,72,10,192,41,227,
+180,2,224,58,20,224,35,0,202,89,233,103,13,228,247,4,160,101,233,93,
+1,224,19,0,198,197,225,69,12,153,94,225,69,8,225,64,9,179,72,225,
+64,20,66,210,0,54,164,99,192,29,254,65,0,64,15,135,247,104,223,224,
+64,3,64,55,132,32,192,232,1,95,48,100,143,64,24,188,5,64,130,93,
+251,207,175,64,169,160,89,224,12,4,238,47,2,1,95,49,136,143,128,125,
+106,19,128,11,0,50,228,254,0,96,97,203,33,227,229,0,108,173,237,228,
+7,161,19,96,17,178,204,246,121,0,195,121,225,184,0,227,164,11,160,67,
+224,46,24,121,127,128,47,129,174,192,121,160,46,227,216,16,193,60,237,84,
+7,225,215,4,64,11,168,175,69,57,136,207,227,205,2,128,47,0,85,129,
+252,132,222,1,49,48,170,137,224,98,10,128,97,96,48,237,163,1,224,184,
+1,193,47,227,64,9,224,75,10,192,24,0,85,97,135,162,240,143,215,205,
+243,128,29,160,103,1,95,56,75,126,249,222,0,97,203,181,178,231,70,1,
+69,112,96,137,109,182,134,104,0,67,65,226,240,161,0,65,203,216,2,182,
+198,4,64,95,56,51,49,101,175,134,67,154,150,227,52,6,118,53,91,15,
+1,95,53,158,152,134,166,66,115,0,49,64,90,80,228,140,113,1,52,49,
+234,134,4,0,83,248,204,37,96,175,64,4,164,201,168,191,66,193,0,48,
+79,240,130,209,93,178,71,231,96,0,128,45,232,22,0,239,172,1,81,29,
+98,235,0,80,240,16,7,6,109,105,110,105,109,117,109,255,206,0,0,50,
+66,35,229,9,1,162,187,64,107,72,70,64,81,96,85,64,83,199,37,194,
+90,241,199,5,160,23,163,148,162,205,162,208,224,13,0,102,31,226,158,0,
+97,242,160,75,145,208,1,95,56,103,113,96,153,96,29,66,181,66,150,7,
+95,55,56,55,32,79,32,35,68,26,194,126,161,249,201,71,0,58,149,194,
+246,206,23,2,78,97,116,150,203,88,76,1,10,65,194,54,97,75,143,53,
+132,28,210,112,195,153,96,186,227,212,1,68,28,129,54,129,69,105,127,140,
+220,192,7,193,18,253,151,8,0,57,159,56,195,27,225,120,2,131,72,203,
+118,141,77,243,187,12,99,184,160,156,251,90,2,65,54,253,195,0,227,98,
+0,211,217,243,152,10,128,162,109,46,225,203,8,0,67,167,206,89,160,195,
+123,96,26,243,77,19,224,199,1,243,80,12,226,57,25,224,123,1,1,95,
+54,96,42,225,228,4,226,75,2,113,25,128,43,137,202,194,23,228,161,1,
+228,57,4,65,242,245,98,4,193,236,76,50,188,210,225,143,4,161,233,128,
+19,3,95,49,48,55,102,90,131,109,177,195,0,67,98,39,99,211,231,233,
+18,225,174,2,165,192,232,18,15,64,29,133,193,225,20,5,224,16,0,225,
+21,5,129,15,192,82,96,36,65,21,97,182,225,36,1,0,80,227,50,1,
+160,0,96,86,225,96,15,224,28,18,65,66,0,54,170,227,224,196,4,170,
+92,118,203,69,78,165,53,128,49,135,242,131,103,226,173,18,164,20,226,163,
+8,129,7,226,48,1,194,150,196,57,247,230,16,142,85,0,66,128,201,165,
+59,196,105,229,68,0,68,221,224,251,1,64,174,168,136,227,181,9,64,35,
+64,178,192,177,64,19,225,138,1,1,95,50,64,38,160,24,1,50,49,215,
+213,71,229,101,53,128,171,0,48,103,245,3,67,32,95,52,113,28,0,49,
+88,32,1,95,49,158,177,64,45,134,215,0,75,193,254,224,132,9,163,51,
+97,75,129,242,175,227,224,151,1,193,50,128,132,174,232,87,58,225,90,0,
+197,127,224,49,0,68,108,134,237,247,154,4,64,145,198,73,224,191,13,67,
+90,224,191,3,134,35,71,45,225,234,4,224,12,4,64,246,227,150,0,81,
+167,101,242,131,109,146,96,103,178,241,195,0,0,67,66,197,167,175,2,49,
+49,57,227,209,1,192,50,202,243,199,78,232,105,8,227,84,1,240,88,0,
+246,158,13,235,244,4,235,211,0,224,54,0,224,55,1,145,164,251,92,11,
+128,48,235,211,3,184,54,101,213,254,255,19,160,47,132,141,193,130,128,0,
+65,204,0,56,233,3,2,0,58,129,220,157,138,211,191,227,89,2,129,98,
+198,175,236,17,1,224,35,3,130,19,1,49,50,184,73,96,250,160,237,179,
+227,226,27,0,0,49,128,159,64,9,97,171,64,126,135,61,130,169,226,167,
+8,0,50,79,203,224,79,0,64,15,244,24,0,241,127,4,64,72,133,147,
+226,236,17,97,74,128,72,246,4,10,130,144,224,22,2,226,155,13,232,146,
+8,128,42,243,124,0,128,138,0,54,134,30,192,123,1,75,50,208,105,64,
+206,134,56,226,198,2,228,187,1,66,239,233,206,3,227,157,2,224,100,0,
+65,212,234,198,2,226,71,2,143,213,169,118,230,131,3,161,139,251,136,1,
+72,109,224,33,15,128,27,128,113,238,128,0,232,202,1,225,31,2,130,202,
+224,31,2,226,205,18,224,54,0,194,208,224,219,5,236,176,4,254,0,0,
+192,49,251,236,14,64,62,202,8,172,127,2,32,95,53,120,59,99,30,107,
+69,232,58,3,250,21,4,192,12,224,20,0,224,159,5,132,218,225,235,1,
+104,247,224,135,9,224,179,0,131,157,230,81,0,192,58,96,143,2,95,51,
+54,161,7,224,79,3,153,145,225,6,3,208,69,224,76,2,115,34,153,223,
+0,49,91,182,128,49,224,18,6,160,192,5,67,32,95,54,57,53,128,138,
+146,119,0,49,187,255,0,48,102,115,7,64,95,54,57,57,32,95,55,96,
+59,1,54,50,64,9,64,36,1,56,56,192,9,2,55,55,32,164,185,224,
+30,0,0,35,245,201,3,227,160,12,245,30,0,184,226,83,148,96,139,71,
+226,96,19,0,53,71,206,3,95,52,52,52,81,86,254,215,0,67,13,135,
+34,227,178,22,0,90,226,57,0,227,169,39,192,30,193,145,227,166,7,135,
+82,227,166,0,243,107,0,64,27,135,64,4,95,52,51,49,32,64,14,198,
+189,166,241,1,50,56,230,133,2,1,50,48,73,208,66,102,226,108,0,165,
+55,64,57,134,201,193,245,227,213,0,64,2,99,167,226,18,3,255,153,10,
+224,17,9,140,44,225,0,3,160,227,99,8,192,32,224,62,3,237,41,0,
+224,86,6,160,38,239,116,5,96,8,160,5,2,95,56,53,239,202,0,224,
+1,1,226,4,9,0,48,227,98,0,204,217,134,44,160,54,164,210,224,73,
+1,228,46,3,4,32,64,95,51,57,174,136,128,163,166,231,230,58,2,70,
+148,73,123,109,33,0,52,64,21,65,226,1,95,57,99,86,64,20,1,48,
+55,135,231,255,56,15,9,101,120,112,97,110,100,68,105,99,116,223,33,2,
+95,49,49,89,126,73,40,192,0,224,223,0,227,226,4,225,120,3,227,178,
+2,225,72,4,225,89,0,192,243,226,106,0,162,17,196,119,225,70,3,165,
+7,224,19,4,166,154,224,22,18,232,111,1,161,232,193,235,165,141,224,55,
+6,231,167,3,224,29,10,72,12,0,56,89,135,0,95,127,151,160,0,192,
+79,64,34,224,91,1,160,52,230,30,0,96,64,235,119,2,224,22,2,200,
+179,224,62,1,131,37,225,60,0,177,165,128,66,207,177,232,152,3,224,77,
+1,123,61,1,95,54,75,33,132,185,228,176,12,160,46,189,180,128,219,133,
+29,64,109,123,128,139,184,165,19,224,99,5,160,105,229,222,17,128,80,209,
+32,192,17,225,252,23,224,0,1,128,47,232,118,5,225,123,10,227,186,3,
+225,90,56,103,3,0,48,102,0,0,55,163,95,225,75,23,251,158,1,166,
+133,99,81,109,137,243,171,3,192,21,231,79,1,179,15,179,14,232,162,5,
+64,20,147,45,64,23,0,56,101,21,64,176,115,119,0,73,244,56,1,103,
+248,174,6,166,67,0,83,65,143,90,157,0,67,127,30,229,98,4,108,27,
+96,226,221,158,229,234,0,64,78,137,42,250,233,1,64,133,224,48,16,192,
+46,64,214,128,0,64,163,138,153,131,98,100,126,130,87,149,7,82,80,1,
+55,57,73,19,2,95,57,56,65,64,0,57,171,106,64,96,155,63,68,148,
+106,218,153,176,65,185,161,224,229,113,5,244,230,5,128,190,239,214,21,96,
+33,96,57,224,226,2,234,223,0,209,65,249,69,0,161,51,64,146,0,54,
+230,141,0,201,49,64,220,1,49,49,135,198,162,200,241,19,2,206,245,128,
+115,96,117,254,80,13,132,36,160,50,160,148,160,13,67,86,172,23,233,170,
+1,210,154,212,160,1,95,56,244,141,0,64,37,2,95,56,51,232,170,0,
+226,164,12,64,61,73,90,64,23,237,111,0,64,142,196,79,77,18,230,0,
+1,1,36,120,101,246,65,2,252,90,0,3,50,32,75,52,64,2,251,99,
+1,128,32,136,149,236,145,14,211,116,192,233,1,49,57,99,123,65,245,206,
+188,66,8,242,29,4,161,104,237,71,0,131,227,231,44,0,193,56,147,253,
+96,74,64,212,224,43,0,160,23,161,219,242,62,8,224,22,10,225,250,0,
+224,96,4,207,224,237,56,2,224,31,18,192,67,224,134,0,98,40,163,33,
+97,241,160,68,226,70,0,114,221,224,32,6,160,69,215,142,64,7,64,26,
+226,67,13,64,50,207,31,230,220,2,134,125,200,44,161,29,160,35,230,167,
+0,64,81,224,15,1,128,151,229,179,3,128,76,178,198,226,228,1,128,159,
+236,22,1,65,190,137,250,96,138,130,244,243,27,7,1,95,49,101,98,224,
+138,0,224,8,0,64,61,138,41,3,95,53,53,53,165,1,64,20,214,242,
+238,155,24,218,67,96,102,234,238,49,226,123,1,234,240,2,98,170,238,151,
+6,64,249,64,25,239,133,20,146,178,192,96,146,174,226,143,1,226,76,0,
+96,72,239,133,30,125,118,224,230,56,192,8,228,234,1,128,132,0,54,171,
+188,1,50,53,121,146,192,82,224,1,3,233,80,0,224,114,2,224,1,7,
+135,223,224,37,21,224,35,4,64,198,201,70,64,135,175,237,225,111,0,236,
+96,1,97,82,132,134,0,51,228,134,0,162,134,64,29,164,66,104,175,154,
+27,82,202,64,25,130,157,228,217,1,3,97,100,105,99,152,137,96,34,194,
+185,77,244,0,57,128,21,130,124,227,199,3,227,217,0,234,74,1,229,189,
+2,234,50,2,83,57,237,224,0,168,124,198,36,224,49,1,241,231,5,128,
+54,71,27,244,6,6,1,95,49,69,201,64,146,0,56,130,136,64,59,228,
+9,1,253,38,0,204,152,224,177,3,164,5,225,134,6,232,48,6,224,59,
+1,239,80,1,109,82,160,94,96,73,64,134,72,82,228,218,6,201,203,192,
+137,2,95,56,52,228,57,4,192,34,224,74,5,192,36,228,137,3,129,31,
+225,16,9,64,115,248,237,8,64,1,137,210,128,82,193,84,225,94,2,70,
+41,128,40,225,153,6,72,118,225,16,4,172,81,64,26,200,200,224,99,79,
+192,14,164,101,227,150,1,192,15,224,132,3,224,47,2,131,118,232,75,0,
+226,119,28,169,56,227,105,0,224,140,16,128,92,224,13,19,224,120,53,131,
+155,66,195,227,79,0,225,75,10,230,177,0,160,121,237,130,4,96,31,224,
+86,0,65,36,88,82,0,49,110,174,224,203,10,163,50,96,118,133,89,239,
+58,1,64,8,245,173,8,118,14,225,34,10,195,69,192,179,224,34,0,237,
+206,4,245,216,6,224,127,1,160,227,226,228,0,200,42,224,44,1,96,14,
+2,49,49,56,75,242,64,37,0,79,247,111,4,64,0,228,55,26,224,101,
+0,235,111,3,239,241,2,192,16,64,100,96,10,159,147,147,103,0,57,106,
+82,94,178,183,21,224,119,2,97,99,1,55,49,240,18,3,23,83,117,98,
+115,117,109,112,116,105,111,110,32,99,104,101,99,107,32,102,97,105,108,101,
+100,144,30,227,169,5,129,128,0,54,133,93,245,187,14,216,128,97,6,224,
+31,0,2,49,49,56,139,122,97,25,70,148,83,22,0,89,132,78,129,145,
+233,67,1,170,36,225,29,1,149,177,64,127,197,171,228,178,1,225,231,4,
+164,143,140,73,190,21,228,184,1,226,142,2,229,14,9,128,51,231,125,3,
+132,234,224,32,7,102,215,192,26,130,72,192,26,190,164,0,85,161,237,224,
+9,1,224,107,0,98,133,64,8,200,223,195,86,131,144,97,193,106,58,239,
+164,12,229,129,1,229,167,8,224,135,3,195,66,225,35,1,225,38,20,184,
+90,225,110,4,249,195,4,224,31,5,224,194,0,239,199,0,196,23,224,91,
+0,224,63,5,227,209,7,239,185,1,224,13,7,224,58,8,207,135,224,44,
+12,167,189,227,78,12,128,26,160,154,246,238,4,224,198,6,228,211,0,231,
+106,3,194,127,224,120,1,226,4,7,192,53,226,136,3,225,100,20,201,13,
+162,221,226,139,15,226,79,4,166,54,224,175,11,225,166,10,202,154,118,41,
+224,240,0,192,140,224,46,8,224,194,2,224,96,2,162,135,229,208,0,165,
+194,120,137,109,170,130,151,1,52,52,230,210,1,225,53,1,224,198,14,168,
+62,224,101,2,128,47,224,97,3,224,216,2,230,110,0,160,82,160,145,228,
+212,9,128,31,129,118,224,27,6,227,185,0,0,32,181,27,240,32,1,109,
+129,224,4,1,128,115,245,56,25,9,102,114,101,101,84,121,86,97,114,115,
+245,56,5,112,243,192,184,64,174,101,151,175,193,146,13,178,12,0,75,69,
+26,255,253,2,69,10,207,97,0,89,162,114,201,250,228,229,3,162,214,226,
+127,5,198,221,225,214,9,192,25,184,48,166,69,231,27,5,65,251,96,33,
+64,59,224,30,5,96,22,129,170,233,163,8,67,84,242,27,3,224,247,1,
+228,50,8,225,19,1,65,204,229,45,2,251,123,1,202,51,195,244,231,69,
+8,200,117,231,106,3,231,149,3,192,35,128,173,224,175,6,238,170,7,224,
+187,3,180,25,192,191,225,7,38,64,43,128,77,0,48,246,42,2,130,70,
+224,41,1,211,166,64,0,65,233,140,199,193,215,231,56,13,117,117,0,56,
+140,229,165,247,225,137,14,164,251,128,180,245,223,0,96,42,245,226,10,128,
+13,210,121,128,143,141,61,238,158,5,78,179,96,94,224,111,3,224,178,0,
+1,52,54,64,153,0,52,85,51,0,52,145,235,160,113,134,175,0,52,124,
+101,227,66,9,4,79,32,35,51,53,199,6,131,51,0,49,204,81,96,137,
+173,171,133,197,194,236,236,118,0,161,0,224,165,3,242,119,3,224,26,12,
+232,69,2,96,2,233,91,5,230,48,9,100,215,236,152,0,129,213,225,6,
+7,207,87,224,19,2,64,188,208,207,224,139,9,143,235,0,50,192,233,64,
+30,228,211,1,227,223,0,85,47,0,50,215,169,96,113,116,178,2,64,95,
+57,194,162,96,56,224,160,2,64,118,78,83,226,77,2,226,228,0,227,230,
+5,0,53,98,236,224,36,28,64,92,64,8,64,91,139,213,64,41,78,146,
+231,16,5,128,165,165,221,137,144,225,107,6,229,198,2,128,1,232,106,5,
+161,13,227,215,3,160,33,231,59,18,240,74,0,224,126,0,228,243,6,224,
+31,5,232,160,0,0,83,224,169,2,232,92,10,160,54,192,50,226,129,3,
+147,95,245,147,1,225,244,0,230,51,0,225,151,4,194,89,192,206,229,12,
+16,231,198,1,219,220,224,13,5,224,56,12,224,57,3,229,44,1,160,44,
+129,210,226,224,4,224,163,1,224,219,2,64,9,226,11,5,233,100,6,225,
+6,9,128,6,129,7,167,87,225,8,11,160,158,120,194,234,163,7,96,161,
+225,213,1,225,177,15,227,57,10,0,48,95,43,160,34,224,82,1,64,18,
+226,112,0,233,165,0,224,17,9,225,49,2,65,159,69,30,64,157,96,161,
+226,122,2,205,189,103,175,173,24,161,81,232,8,16,12,99,97,110,110,111,
+116,32,117,110,105,102,121,32,173,35,129,94,165,8,0,57,99,82,224,66,
+19,3,32,97,110,100,160,58,160,45,225,12,3,226,190,0,226,93,7,67,
+156,238,251,7,230,73,3,1,49,49,130,1,193,107,68,76,129,219,64,69,
+70,9,64,65,0,54,227,222,0,251,32,0,128,8,220,129,84,111,101,234,
+2,49,49,55,129,166,64,54,141,180,224,195,1,12,80,114,105,109,105,116,
+105,118,101,115,46,126,34,104,204,64,44,160,89,230,230,10,2,49,49,54,
+134,209,228,80,1,203,165,64,104,0,50,162,210,228,232,7,135,54,128,209,
+226,97,8,195,12,226,97,26,240,31,4,133,103,111,38,239,152,2,160,38,
+229,161,6,67,1,106,89,228,9,0,0,54,137,220,226,70,55,4,121,99,
+108,105,99,226,64,11,71,195,66,20,70,207,96,196,226,74,20,0,61,226,
+72,17,162,74,225,27,1,239,176,4,225,144,0,192,248,173,53,224,225,0,
+192,224,161,143,224,142,0,161,153,200,64,96,184,227,189,16,225,37,17,1,
+48,56,176,200,238,242,1,1,49,49,122,196,224,237,18,4,101,114,114,111,
+114,203,128,128,135,213,234,2,67,32,80,226,158,2,3,116,121,112,101,64,
+37,224,17,1,2,107,105,110,144,210,224,18,1,2,115,111,114,86,48,224,
+18,3,4,114,101,97,108,109,64,19,64,90,135,220,240,231,39,0,54,178,
+167,66,96,240,231,1,133,76,166,188,102,145,226,199,2,194,46,238,51,13,
+231,91,0,240,179,25,165,118,236,50,12,198,237,193,146,231,7,9,0,85,
+102,33,237,83,8,130,249,237,65,6,160,137,139,127,120,196,0,90,64,49,
+192,25,224,100,8,224,99,2,238,157,1,169,16,238,58,4,224,180,4,231,
+58,2,224,81,8,236,99,9,113,63,96,34,160,25,0,85,227,221,0,1,
+95,56,66,78,191,136,237,128,1,65,171,98,61,109,118,225,101,1,224,136,
+9,128,56,161,138,225,95,12,129,132,166,136,225,129,49,228,171,6,195,167,
+132,33,0,80,98,118,231,235,0,227,211,10,66,145,128,165,232,20,3,163,
+212,243,203,6,110,161,227,161,2,3,32,95,49,56,64,31,97,89,3,95,
+49,49,48,184,186,96,84,227,204,2,225,130,1,97,21,90,87,99,196,224,
+60,0,1,95,50,125,132,0,49,128,31,224,65,2,136,191,225,30,13,129,
+207,225,97,18,193,36,233,96,8,233,199,5,251,83,0,162,21,224,78,15,
+205,96,224,213,8,192,24,98,170,225,50,6,226,135,16,224,46,13,96,0,
+224,49,13,65,121,97,115,225,190,10,224,23,13,96,21,124,35,224,99,2,
+238,203,9,224,132,9,226,252,3,66,244,220,154,252,114,6,97,33,252,108,
+0,0,54,100,226,188,108,192,194,140,150,236,215,0,64,76,0,54,206,72,
+101,250,64,41,0,95,66,105,108,213,192,40,64,39,136,64,224,114,5,252,
+218,1,224,109,3,64,45,136,75,252,184,14,252,178,0,224,22,5,224,1,
+1,196,135,224,37,19,224,35,4,224,32,23,224,29,20,224,26,17,253,6,
+3,160,216,200,208,0,89,130,163,232,213,1,237,65,1,161,107,224,89,2,
+228,40,1,226,135,1,131,7,100,47,65,64,123,201,64,21,238,180,10,128,
+68,104,12,227,94,1,130,101,128,111,224,79,0,129,233,1,32,64,127,181,
+65,190,185,142,96,28,234,114,9,96,109,103,11,112,22,1,57,48,224,158,
+3,224,96,0,228,136,3,234,149,3,209,117,96,7,130,199,240,164,2,166,
+101,192,185,163,213,133,94,238,194,5,74,172,128,0,65,96,136,151,120,83,
+64,208,153,25,241,119,21,0,56,66,144,240,86,4,241,242,8,96,232,153,
+137,241,97,11,64,0,240,25,5,64,148,97,232,229,161,7,64,118,166,135,
+96,105,227,129,17,0,53,105,117,227,129,6,128,157,103,136,169,173,0,53,
+129,162,64,115,136,176,0,85,191,71,64,2,192,26,64,36,227,80,17,192,
+1,227,88,0,225,9,1,224,1,9,227,92,5,226,226,2,64,102,208,60,
+0,89,100,9,1,67,39,208,67,167,22,208,31,192,75,254,232,0,226,96,
+0,161,183,162,164,224,41,2,231,141,10,224,89,2,224,47,21,227,54,2,
+236,123,0,232,114,15,192,205,96,234,229,185,7,224,28,3,230,107,4,229,
+151,8,98,232,238,195,0,192,105,239,253,0,225,204,0,139,21,226,168,0,
+225,233,8,231,144,9,160,78,230,85,9,230,183,4,224,39,0,224,240,0,
+233,105,2,225,220,3,225,88,5,224,55,1,160,255,231,61,15,231,140,175,
+224,219,3,224,58,11,192,30,165,45,145,151,97,57,228,116,2,228,186,2,
+235,21,0,224,60,3,160,62,225,101,2,237,33,8,0,49,246,59,1,161,
+12,226,150,6,165,136,1,51,57,109,140,96,67,226,99,21,224,122,5,229,
+175,1,242,87,0,230,71,8,104,23,224,182,16,98,67,227,93,0,224,157,
+2,192,21,193,65,224,62,1,226,95,3,226,198,3,160,44,192,152,226,143,
+1,160,110,230,92,2,121,4,6,67,32,95,54,51,32,95,133,216,0,95,
+113,190,225,141,4,0,66,223,23,224,104,7,193,15,97,25,101,175,96,11,
+1,55,49,238,142,0,96,66,128,60,224,36,3,192,211,160,25,70,144,142,
+161,246,240,4,238,39,1,13,98,97,100,32,115,121,110,111,110,121,109,32,
+117,115,110,106,224,170,0,64,70,230,35,14,160,0,161,120,184,33,69,55,
+177,215,4,32,85,32,95,49,64,67,1,90,32,89,188,229,69,0,235,48,
+0,133,47,229,35,1,229,38,29,96,246,193,118,225,176,1,229,35,12,225,
+173,3,224,36,9,236,194,28,173,115,96,11,192,118,244,170,0,209,36,132,
+203,161,180,184,192,201,21,0,80,134,184,224,241,2,192,223,132,216,224,82,
+5,227,53,0,130,233,79,113,64,248,98,70,252,20,3,225,142,8,161,230,
+227,190,2,128,182,224,220,8,229,90,3,96,175,255,18,2,227,30,0,230,
+80,15,160,94,225,127,3,224,35,8,225,86,16,239,54,12,224,161,11,224,
+39,1,197,145,243,224,0,252,231,2,197,148,130,16,97,139,2,95,52,52,
+201,153,2,57,56,54,253,93,1,64,0,125,22,241,47,2,2,117,98,115,
+116,249,8,109,112,108,101,109,101,110,116,101,145,81,64,0,66,196,0,54,
+200,126,111,91,65,102,200,141,66,206,224,1,3,255,143,3,64,42,139,238,
+131,144,186,255,0,50,128,68,139,47,224,131,1,2,100,105,99,81,179,64,
+26,242,129,1,229,93,3,122,196,161,135,229,49,8,228,67,0,192,251,132,
+98,130,8,179,124,146,125,1,49,53,146,138,250,175,8,64,159,2,10,65,
+32,90,214,0,54,98,234,64,19,137,120,96,110,106,193,3,95,52,54,52,
+224,180,2,150,51,6,45,104,97,112,112,101,110,97,50,0,58,139,90,97,
+31,64,125,225,200,4,0,95,108,38,78,33,247,174,1,224,32,11,227,97,
+0,227,10,0,224,41,4,128,192,128,41,225,251,2,128,33,75,151,0,50,
+115,117,2,56,52,48,224,170,2,1,61,62,96,159,224,21,6,245,237,2,
+160,32,224,89,5,0,95,154,182,0,67,181,209,192,0,64,229,138,17,97,
+22,225,21,6,224,84,2,0,84,179,174,96,49,246,227,4,110,77,103,101,
+0,56,160,8,88,142,2,49,48,56,133,64,1,48,56,195,154,96,41,2,
+95,49,48,150,59,76,186,174,238,0,52,130,150,236,192,3,65,251,224,83,
+18,213,24,195,101,3,95,49,52,48,70,10,0,49,229,175,0,64,91,242,
+55,28,135,95,166,243,224,32,11,237,95,2,102,250,229,192,10,224,26,12,
+133,174,229,134,9,96,22,241,213,1,165,104,192,186,224,50,11,241,196,1,
+164,216,224,44,2,160,153,224,48,5,192,178,226,80,1,128,7,224,40,8,
+250,88,5,222,181,132,123,182,109,164,136,1,49,48,67,86,96,129,67,107,
+238,78,5,224,143,0,228,55,5,136,207,225,19,3,65,249,71,64,192,190,
+96,119,128,33,64,20,77,72,160,111,1,57,48,126,178,224,101,2,135,186,
+198,34,224,255,1,225,186,18,237,152,0,229,213,23,235,35,98,129,32,230,
+32,21,225,68,2,226,63,9,64,27,242,154,0,1,49,49,70,27,193,15,
+0,89,231,153,0,228,114,1,136,43,167,68,64,53,148,161,225,63,1,96,
+0,225,169,8,64,45,224,101,0,143,249,160,52,224,60,2,224,172,4,242,
+195,6,64,35,165,252,1,80,32,128,181,0,80,101,138,64,176,178,143,106,
+10,66,90,134,74,65,255,68,137,100,37,64,19,64,106,0,48,128,26,216,
+68,250,249,0,1,51,57,128,24,165,216,102,19,0,56,82,235,228,190,1,
+1,91,93,184,39,64,43,152,39,0,67,137,175,201,181,64,239,0,64,165,
+195,231,141,0,65,46,96,9,0,83,98,151,88,29,132,229,251,142,9,230,
+78,0,96,52,2,49,49,49,74,83,98,180,2,56,57,53,234,148,10,8,
+99,111,109,112,111,115,101,83,101,152,213,97,66,64,203,70,233,0,54,149,
+130,160,85,162,230,0,51,96,19,1,95,55,147,205,1,64,64,97,109,72,
+46,225,109,6,0,51,133,196,113,203,252,42,4,224,150,6,128,145,224,144,
+1,6,104,97,115,70,105,101,108,168,37,64,42,0,54,97,86,64,119,224,
+79,43,2,115,101,116,224,79,13,0,54,197,142,96,64,0,51,224,64,6,
+2,95,52,49,64,224,249,229,3,4,99,67,111,110,69,90,76,193,195,133,
+208,255,32,1,225,174,1,97,187,104,45,0,57,106,179,232,86,0,0,51,
+66,118,250,172,17,26,67,111,110,116,114,111,108,46,69,120,99,101,112,116,
+105,111,110,46,73,110,116,101,114,110,97,108,46,233,53,0,230,228,0,96,
+95,2,49,49,51,68,139,106,184,104,141,232,142,1,224,95,10,4,44,32,
+97,116,32,225,9,0,3,51,32,95,57,134,250,128,207,131,31,132,189,139,
+115,163,209,101,238,64,213,128,206,2,95,49,48,203,137,96,214,0,54,107,
+200,66,144,75,68,1,67,39,93,33,226,138,5,163,36,224,232,2,1,104,
+97,97,70,130,62,128,126,195,133,1,80,32,165,149,96,21,201,177,254,31,
+12,82,244,217,160,64,171,133,15,160,10,107,247,224,21,8,64,198,228,186,
+1,64,58,233,237,1,232,159,0,224,55,4,196,240,96,61,131,88,163,171,
+224,29,11,128,99,64,2,168,56,244,201,1,132,208,85,41,1,51,57,67,
+189,65,178,1,51,52,174,179,5,95,49,56,56,32,95,92,63,0,95,95,
+178,165,124,99,227,106,117,109,226,64,94,101,248,105,195,123,61,0,80,75,
+229,133,79,1,56,50,193,13,227,10,13,7,78,101,115,116,101,100,32,102,
+67,14,10,115,32,110,111,116,32,97,108,108,111,119,235,145,2,225,12,3,
+236,2,4,134,84,245,149,3,96,21,110,123,224,48,4,245,115,1,98,65,
+207,19,224,151,10,226,169,21,4,101,120,116,114,97,128,170,2,40,115,41,
+162,179,3,66,32,95,53,104,109,100,139,131,161,192,163,66,13,0,56,204,
+138,192,32,207,168,129,205,235,220,11,224,26,6,106,146,96,21,99,196,100,
+26,145,45,128,35,0,48,227,223,1,101,137,181,222,237,15,18,129,83,130,
+104,133,66,6,48,52,49,32,95,50,55,160,105,229,87,0,249,146,1,66,
+246,254,162,1,166,20,0,85,104,251,229,108,15,166,115,2,53,51,55,164,
+132,0,58,128,183,230,214,0,127,43,0,50,134,213,0,50,213,113,96,47,
+99,170,0,55,67,214,0,53,69,179,96,32,217,237,107,245,88,108,144,91,
+225,58,2,0,67,67,228,238,92,1,224,25,3,99,255,193,29,68,61,0,
+57,229,173,1,198,83,160,57,252,182,7,227,207,1,226,226,1,201,145,163,
+101,227,187,5,133,254,226,97,8,137,160,229,188,4,11,111,114,100,32,119,
+105,108,100,99,97,114,100,226,251,9,170,202,192,138,81,70,200,184,200,215,
+72,174,134,43,64,208,224,255,0,248,126,2,193,231,225,198,1,65,1,1,
+10,65,96,72,4,65,32,64,64,65,129,126,166,55,97,151,100,117,108,42,
+64,25,232,161,1,238,160,11,233,59,0,225,54,4,164,87,96,125,98,67,
+228,145,3,248,245,5,65,255,197,211,224,23,0,141,126,64,125,133,128,0,
+75,224,123,6,148,122,135,238,136,169,145,60,155,174,224,75,4,64,169,98,
+214,227,99,4,64,90,133,197,216,101,239,210,8,64,34,216,252,0,90,66,
+235,96,17,130,212,64,175,69,202,192,7,64,175,0,58,129,132,130,196,230,
+102,0,134,100,64,27,232,123,46,0,103,232,43,14,0,49,211,106,203,184,
+241,206,0,64,148,84,44,131,189,96,11,231,241,0,135,37,228,166,0,231,
+17,7,128,136,238,218,3,2,111,120,121,165,137,224,158,3,64,127,130,70,
+64,108,1,80,32,173,124,138,186,64,11,106,71,68,132,64,253,165,81,144,
+143,6,49,51,32,64,79,32,35,78,205,231,102,0,64,116,241,29,4,2,
+66,64,34,128,74,199,127,229,38,0,0,49,96,212,64,8,161,86,187,39,
+98,131,0,79,100,133,1,55,51,208,207,64,35,199,190,65,247,129,195,64,
+66,226,209,0,75,117,130,18,129,54,225,203,0,65,39,239,110,22,1,50,
+54,64,209,1,48,57,137,63,239,110,0,227,42,9,98,174,0,48,214,225,
+131,49,231,180,3,90,92,229,222,1,101,198,110,84,64,122,1,95,52,111,
+206,230,21,2,140,179,246,130,6,237,111,1,128,42,247,55,4,235,197,0,
+66,1,66,22,240,43,15,64,205,198,38,243,127,1,249,220,1,224,5,0,
+103,76,227,238,2,64,18,0,83,128,153,239,62,13,229,49,0,128,24,128,
+126,167,24,0,56,135,19,252,188,1,225,68,1,97,244,177,11,178,222,100,
+152,98,202,66,138,64,76,4,80,32,95,55,50,97,104,113,43,64,205,114,
+51,64,20,224,0,0,193,92,161,95,231,41,0,66,75,175,160,133,85,157,
+201,225,158,0,174,19,64,37,206,12,224,74,2,213,170,225,10,1,224,182,
+8,224,16,8,64,253,177,136,64,194,192,174,224,167,0,130,20,211,10,65,
+112,161,13,192,179,100,223,79,249,230,240,4,64,50,249,202,7,224,181,3,
+183,165,130,220,199,109,226,167,11,166,59,226,141,0,233,97,2,128,121,71,
+66,72,33,135,254,192,43,225,3,1,166,157,224,54,1,64,84,234,213,5,
+192,135,132,196,1,95,50,64,121,128,133,1,53,50,65,18,1,49,48,168,
+69,64,108,224,169,23,162,43,160,100,172,140,64,67,73,111,167,185,79,43,
+72,111,199,25,64,90,132,167,1,80,32,64,11,230,229,3,224,106,12,193,
+162,225,159,18,234,138,3,96,127,98,127,225,27,26,128,7,225,27,7,132,
+251,131,185,236,253,0,96,87,69,83,96,200,64,38,246,62,1,224,185,22,
+192,34,129,42,160,104,231,152,2,135,175,138,77,193,47,160,138,133,71,71,
+133,243,44,1,73,170,76,26,162,225,255,203,1,128,50,133,100,0,90,64,
+46,0,58,131,170,112,128,222,7,167,150,168,71,64,33,181,96,224,191,0,
+0,56,87,120,68,83,228,187,0,110,205,235,237,5,99,88,0,56,154,252,
+227,32,1,1,95,50,130,110,0,52,73,187,1,49,48,66,2,2,95,49,
+54,164,13,225,104,3,71,38,0,53,140,225,236,236,14,96,161,64,94,64,
+162,130,173,88,24,248,8,7,248,14,9,97,6,96,58,64,213,6,52,50,
+53,32,75,32,85,106,177,224,1,13,188,112,160,0,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,192,8,96,5,66,153,243,87,5,64,0,65,44,131,144,135,148,64,33,
+162,59,176,3,75,243,235,115,10,138,95,70,83,0,56,117,115,141,27,243,
+149,0,152,28,166,215,230,223,2,88,149,230,133,4,247,212,5,2,75,105,
+110,238,130,0,64,131,131,140,2,95,52,56,66,80,71,52,135,109,170,251,
+230,45,0,96,9,68,126,166,151,0,51,72,42,1,95,51,119,221,224,6,
+5,109,50,64,3,103,56,192,76,0,83,74,104,2,95,51,56,64,253,192,
+32,224,106,19,112,56,224,108,1,66,232,96,114,224,108,31,0,82,224,108,
+26,161,188,77,117,128,34,224,110,6,160,103,224,117,2,224,106,9,224,63,
+3,224,113,2,176,126,131,221,192,147,224,40,0,224,108,18,224,115,2,128,
+67,224,61,13,160,106,3,95,49,55,50,225,219,2,25,92,51,52,38,115,
+114,99,47,77,105,99,114,111,72,115,47,84,67,77,111,110,97,100,46,104,
+115,64,25,5,44,49,56,56,58,53,240,126,2,98,54,68,27,233,234,1,
+0,56,103,182,192,13,1,57,48,224,13,4,101,117,128,13,0,53,224,39,
+2,0,54,224,37,1,66,80,197,182,67,16,1,53,56,130,232,175,96,134,
+97,234,32,1,96,73,0,56,98,197,158,116,66,225,64,47,133,99,224,47,
+11,224,57,2,82,62,224,57,0,224,64,5,0,56,245,241,1,224,54,7,
+224,152,1,224,53,9,165,169,1,52,57,226,74,4,111,151,104,127,97,176,
+136,38,131,140,224,6,5,224,33,0,64,13,224,92,4,224,33,14,160,26,
+224,40,3,224,33,13,224,40,3,1,64,95,93,185,202,225,64,182,133,189,
+134,196,235,157,16,96,247,0,83,64,207,132,61,118,100,253,138,0,242,27,
+17,5,97,115,115,101,114,116,66,73,12,100,101,58,32,101,120,112,101,99,
+116,101,100,61,162,70,164,139,253,154,0,125,141,128,119,98,160,70,136,83,
+128,1,64,79,96,18,0,53,160,8,75,148,128,8,237,45,0,96,136,245,
+76,19,2,103,111,116,160,117,160,102,160,97,128,0,65,7,0,54,167,153,
+134,175,64,17,133,119,88,71,1,32,75,101,88,97,89,0,56,227,50,2,
+4,84,67,69,120,112,149,29,224,25,8,252,244,0,224,26,9,229,69,1,
+224,26,8,2,83,111,114,215,222,0,95,78,204,192,168,2,95,49,50,99,
+40,96,12,64,156,246,1,0,202,251,0,50,71,213,0,56,88,249,99,138,
+0,49,242,219,0,235,33,5,243,226,15,225,62,19,17,77,117,108,116,105,
+112,108,121,32,100,101,102,105,110,101,100,58,32,160,189,0,52,144,107,179,
+34,64,150,198,16,2,57,51,32,64,14,195,206,64,119,104,66,146,215,64,
+158,128,24,0,89,130,81,194,179,98,105,172,134,119,34,64,203,82,241,128,
+93,206,162,1,95,50,163,116,64,26,128,17,226,185,14,226,213,13,169,252,
+135,138,235,64,16,199,170,233,95,4,234,36,1,128,167,160,173,236,12,5,
+107,114,237,131,5,228,51,0,109,54,237,131,0,224,98,14,182,220,172,108,
+237,71,6,234,206,19,239,46,2,224,180,12,224,208,13,102,157,235,131,11,
+96,135,245,134,6,128,24,106,66,0,55,175,131,97,138,164,255,2,54,57,
+55,227,44,0,99,170,163,168,96,7,111,86,68,57,226,92,1,4,115,117,
+99,99,32,226,248,3,64,87,96,211,96,93,129,63,161,68,0,55,111,156,
+128,23,2,49,48,55,99,199,224,13,0,224,145,1,64,7,142,89,164,228,
+64,7,240,181,4,144,184,75,141,64,149,143,71,129,204,140,194,239,229,2,
+96,71,107,13,177,99,0,48,171,23,224,7,5,64,101,0,54,96,101,3,
+85,32,75,50,83,58,84,70,96,22,250,124,4,224,121,10,224,108,4,0,
+56,88,112,224,107,14,64,76,227,247,0,224,76,27,0,54,79,72,224,76,
+18,131,173,250,166,1,224,73,3,160,64,83,7,224,64,5,64,56,131,215,
+66,248,102,206,96,49,147,223,2,49,48,54,96,115,64,22,236,57,15,224,
+70,0,132,5,3,85,32,75,51,236,42,5,64,27,195,235,107,26,92,2,
+0,58,96,90,225,97,0,236,93,7,64,30,130,130,1,75,50,65,123,64,
+15,166,219,0,50,64,36,64,15,129,160,76,167,165,227,66,159,96,80,236,
+175,12,64,32,207,1,176,171,115,21,91,36,141,67,77,61,205,67,64,45,
+196,254,172,215,131,173,224,1,1,122,231,96,0,224,25,7,192,1,236,170,
+3,224,37,15,224,35,4,224,32,23,224,29,20,236,115,5,64,192,225,216,
+1,1,49,48,95,30,249,8,3,0,54,132,100,0,73,71,125,0,80,96,
+20,99,128,0,53,69,104,0,79,131,40,79,28,248,64,0,96,32,96,100,
+64,34,65,45,64,63,97,93,193,126,130,0,96,47,236,105,6,10,80,114,
+105,109,105,116,105,118,101,115,46,228,26,0,64,49,130,22,224,39,12,167,
+86,0,58,128,111,97,181,224,200,23,67,46,125,2,224,207,2,146,15,149,
+55,128,22,143,145,115,69,96,189,224,52,11,139,115,224,52,2,131,24,224,
+52,21,101,62,224,52,3,141,148,224,52,21,147,45,224,52,2,139,3,224,
+52,1,221,214,96,29,0,53,64,234,224,45,3,129,138,112,27,225,138,0,
+130,40,225,191,14,97,80,131,89,82,20,96,35,105,23,0,48,138,73,64,
+120,224,12,7,96,140,64,43,0,54,224,43,0,0,52,96,59,206,203,64,
+17,128,99,0,53,101,235,0,53,128,219,0,50,247,102,5,225,218,0,1,
+45,62,134,27,64,66,227,145,0,99,144,136,240,184,78,64,70,226,80,0,
+64,14,130,206,119,244,64,14,162,110,225,74,0,136,68,65,34,226,83,15,
+96,120,0,58,128,42,224,35,15,1,78,97,66,158,64,36,129,37,226,196,
+13,4,121,109,98,111,108,160,39,129,65,224,39,12,8,67,111,110,115,116,
+114,97,105,110,192,83,161,65,227,34,21,234,81,0,64,49,129,99,224,39,
+12,170,148,64,37,129,70,97,57,161,121,64,21,196,192,0,54,238,25,3,
+6,98,117,105,108,116,105,110,64,96,80,87,64,3,64,43,201,220,123,254,
+152,31,67,94,64,20,168,75,83,9,181,96,72,102,97,176,92,247,1,49,
+48,75,213,132,128,224,21,9,64,70,189,37,77,76,134,156,127,65,224,9,
+0,204,56,240,167,1,1,49,48,125,18,192,7,128,92,130,147,96,85,0,
+58,128,7,101,236,109,145,141,148,2,60,32,64,102,152,218,48,160,18,124,
+28,3,85,32,95,56,78,158,139,45,208,86,177,95,105,198,232,201,5,5,
+103,101,116,73,100,101,97,184,113,73,0,90,96,124,192,141,0,85,81,168,
+128,135,253,212,1,177,154,129,124,93,225,142,119,1,95,50,171,174,85,246,
+2,64,95,52,129,65,0,51,68,252,64,39,130,18,230,147,15,0,51,100,
+174,230,147,0,73,220,230,147,7,219,164,224,1,11,230,129,101,224,26,17,
+224,23,14,224,20,11,224,17,8,224,14,5,224,11,2,243,100,11,65,35,
+231,229,21,0,51,231,229,5,75,74,231,229,13,167,223,224,16,1,224,1,
+5,225,90,170,225,48,8,64,255,254,34,0,201,182,233,61,12,192,45,233,
+228,0,107,21,224,42,14,64,40,131,243,86,71,254,123,3,233,141,3,67,
+13,131,193,227,138,3,131,247,204,163,99,101,129,148,238,20,10,141,119,141,
+3,249,94,1,209,226,64,33,108,64,0,56,68,149,195,247,160,123,250,28,
+2,226,37,2,97,53,0,83,226,42,0,68,56,247,84,0,204,78,1,95,
+53,64,219,64,29,104,37,64,76,247,51,0,234,200,1,225,68,16,96,48,
+0,54,226,115,7,0,90,139,227,224,1,11,226,103,170,224,17,8,224,14,
+5,224,11,2,192,8,227,202,11,97,41,200,98,224,1,15,225,29,5,225,
+68,245,220,169,128,0,65,61,229,9,4,0,56,106,61,71,220,198,187,66,
+243,237,48,8,226,185,17,96,50,242,4,0,224,82,1,103,129,64,124,64,
+87,64,35,169,153,2,56,52,56,73,168,0,50,205,252,0,83,80,143,67,
+133,64,176,180,118,67,212,241,192,2,128,85,69,193,209,146,1,95,55,77,
+181,156,97,2,49,48,49,75,30,0,52,107,159,1,95,55,190,82,3,58,
+49,48,49,204,34,155,186,128,57,87,217,64,17,232,30,4,209,56,149,207,
+224,28,6,203,193,224,25,9,242,205,0,65,105,164,169,149,136,140,96,169,
+55,231,140,1,104,222,193,165,102,73,239,203,3,65,173,242,113,1,160,117,
+224,2,1,96,163,207,200,128,7,224,201,2,254,250,0,196,145,114,34,96,
+32,65,132,169,78,124,35,228,249,3,1,95,56,72,146,224,88,2,160,34,
+0,49,129,145,252,87,0,1,56,49,64,209,133,84,0,56,101,1,0,55,
+154,87,97,172,128,11,128,0,224,179,3,64,202,128,24,128,242,96,63,64,
+66,0,54,190,156,129,60,98,162,192,211,224,130,1,161,67,210,180,121,7,
+160,105,224,206,4,96,171,224,131,4,160,110,150,118,192,45,1,67,39,84,
+138,160,26,0,80,162,197,192,130,224,50,1,129,70,96,50,145,123,225,50,
+7,64,13,0,56,230,58,4,241,211,4,241,19,13,0,95,82,57,64,0,
+99,101,235,229,6,1,36,102,138,79,64,128,0,89,224,156,0,203,1,64,
+144,0,66,140,24,245,194,20,1,36,120,246,253,4,74,119,192,0,96,72,
+224,162,23,244,29,0,254,23,0,96,179,224,185,0,0,64,245,202,2,206,
+132,226,171,14,96,16,225,91,0,98,217,217,36,164,62,228,69,1,129,119,
+99,12,128,10,65,164,130,105,162,199,162,30,227,39,0,161,163,231,193,8,
+192,84,97,98,192,0,227,156,4,148,57,99,156,71,95,251,241,3,143,63,
+225,248,0,99,51,162,194,0,64,65,147,91,93,157,103,232,154,6,96,138,
+150,217,69,50,224,29,6,147,142,160,29,253,119,20,237,194,2,1,73,79,
+251,132,4,64,252,0,85,217,6,99,7,101,16,0,55,125,97,1,55,56,
+236,159,3,9,73,79,46,112,101,114,102,111,114,109,224,67,1,97,14,96,
+60,162,226,224,60,0,228,45,5,64,222,72,212,67,159,0,52,78,37,66,
+116,0,49,76,189,177,76,2,64,95,56,144,45,192,148,224,233,4,141,162,
+228,248,2,225,87,5,195,222,132,140,228,191,3,99,97,99,67,112,89,0,
+56,145,103,129,230,0,50,69,216,248,194,2,240,203,1,132,90,229,144,6,
+98,200,224,151,6,129,159,224,151,2,0,90,201,89,96,11,160,13,224,169,
+1,128,9,64,166,226,96,3,97,48,97,108,2,79,32,35,85,84,160,135,
+231,11,4,224,94,3,131,5,228,238,8,134,138,96,10,66,242,196,102,65,
+13,225,135,0,224,123,7,64,0,225,167,2,190,51,65,30,227,159,2,196,
+45,68,241,64,251,1,95,52,93,84,91,67,66,124,96,166,225,5,1,133,
+181,0,52,128,63,1,49,48,122,132,66,76,128,22,146,179,128,0,246,30,
+2,98,203,227,92,1,71,96,242,50,2,0,49,238,217,0,193,150,1,67,
+39,92,79,1,95,51,90,167,113,194,96,58,131,115,225,183,2,93,106,0,
+95,153,50,1,57,57,96,159,64,145,176,79,101,218,152,27,64,99,0,54,
+224,99,0,132,99,228,115,1,193,84,230,69,9,161,65,64,26,226,119,11,
+99,219,0,39,72,134,128,155,230,180,1,128,78,132,181,130,86,192,61,225,
+190,2,230,223,1,224,29,5,230,182,1,1,57,55,131,109,227,169,6,2,
+115,101,113,220,4,230,185,0,224,78,1,224,14,0,194,19,199,136,192,93,
+192,216,128,101,108,234,119,194,133,107,96,71,196,109,97,123,65,9,131,241,
+230,9,4,97,211,64,40,66,109,101,244,198,12,231,235,26,230,197,16,230,
+195,1,200,242,193,48,128,84,230,210,59,4,64,95,57,52,52,248,189,3,
+130,158,98,38,140,30,0,90,161,239,232,195,2,97,50,194,7,225,255,150,
+96,61,2,49,48,49,112,167,96,75,117,241,165,246,0,57,97,172,64,49,
+128,21,128,40,225,161,4,164,154,225,142,117,97,143,140,112,225,117,2,169,
+220,226,96,8,226,80,6,248,18,0,64,219,172,44,83,177,64,154,197,26,
+224,202,1,133,90,225,154,2,231,219,3,128,24,228,51,4,158,129,76,89,
+138,105,227,76,2,107,137,192,57,99,124,100,140,85,158,171,54,138,89,227,
+17,5,96,13,135,255,101,196,128,29,0,57,224,54,2,2,64,95,57,188,
+137,133,12,162,35,212,9,64,27,165,206,3,95,56,55,54,225,10,3,194,
+44,167,190,0,57,157,181,1,55,52,69,175,1,54,52,237,146,2,65,45,
+141,141,228,62,3,128,202,1,95,56,65,207,161,52,172,109,128,2,105,115,
+192,13,235,13,1,173,193,224,40,2,128,179,3,95,49,48,48,152,146,0,
+49,104,224,1,52,56,102,50,226,246,2,160,210,0,56,88,85,254,92,6,
+64,33,64,73,134,194,128,20,198,154,224,247,8,130,113,64,212,142,62,109,
+251,76,9,99,90,0,51,96,69,120,25,224,51,1,29,67,111,110,116,114,
+111,108,46,69,120,99,101,112,116,105,111,110,46,73,110,116,101,114,110,97,
+108,46,112,97,116,64,9,7,77,97,116,99,104,70,97,105,87,171,129,83,
+99,84,161,91,2,49,48,48,141,196,66,228,0,57,94,243,160,129,206,177,
+2,80,32,35,65,205,0,85,102,147,64,43,230,147,0,129,59,64,65,227,
+140,0,2,49,48,48,190,161,65,49,111,87,196,128,0,80,106,75,67,144,
+239,85,3,230,193,6,0,66,65,236,131,151,97,101,138,99,0,75,239,132,
+3,161,80,130,204,2,49,48,48,199,228,224,47,4,126,170,128,0,64,35,
+0,53,100,21,139,108,224,113,1,225,232,2,231,81,5,131,7,224,5,3,
+128,74,229,49,0,223,89,160,218,140,0,64,0,128,66,224,1,1,233,175,
+4,80,4,224,0,0,226,175,9,224,140,5,224,77,9,224,75,5,236,239,
+4,224,76,2,143,5,224,5,3,240,4,0,171,223,248,16,2,228,72,1,
+106,181,224,116,4,192,83,234,90,0,224,114,1,192,34,105,220,100,123,230,
+74,4,224,66,1,96,111,128,17,225,59,1,225,106,2,134,65,224,47,0,
+208,30,236,79,4,224,113,4,192,115,224,165,3,132,248,1,95,50,101,90,
+0,54,88,29,224,33,2,170,220,225,111,4,161,22,242,46,0,230,21,0,
+239,85,5,99,219,233,64,1,224,46,0,176,198,225,169,0,225,186,3,228,
+66,0,193,112,225,206,0,192,77,64,80,0,80,99,200,238,121,0,238,145,
+1,64,46,164,38,196,120,108,245,86,114,64,0,160,9,230,189,17,3,79,
+32,35,49,67,71,173,61,230,185,10,204,173,161,111,99,149,96,45,96,112,
+2,57,48,53,64,16,227,62,1,128,40,226,169,4,64,27,129,92,226,145,
+4,160,100,227,94,1,106,248,226,115,4,82,162,224,128,24,0,54,224,128,
+5,225,72,1,226,24,3,224,108,0,167,6,140,81,160,144,224,82,5,125,
+253,0,48,224,84,0,224,91,0,102,241,192,40,224,108,3,227,14,2,231,
+124,5,64,51,1,80,32,240,78,12,165,209,229,216,0,69,0,140,34,246,
+215,0,199,182,64,7,98,35,64,35,0,54,160,35,176,106,128,188,64,101,
+224,74,1,226,134,0,224,223,17,98,49,224,223,24,64,111,254,173,0,178,
+95,79,93,233,174,20,64,52,213,65,224,164,1,225,223,1,0,85,230,240,
+8,130,26,176,227,224,13,10,132,2,228,28,0,96,192,101,202,224,69,2,
+101,220,226,5,2,192,69,160,122,0,39,73,23,1,49,55,253,209,3,25,
+92,51,52,38,115,114,99,47,77,105,99,114,111,72,115,47,68,101,115,117,
+103,97,114,46,104,115,64,25,6,44,51,56,55,58,49,48,240,103,2,227,
+180,3,129,88,227,172,3,64,0,229,227,3,224,2,7,224,71,1,230,18,
+3,229,5,1,192,83,230,24,1,224,195,1,224,201,6,192,10,71,96,224,
+85,12,229,34,8,224,96,4,224,102,8,224,103,6,224,55,5,230,136,11,
+224,50,14,96,98,229,254,4,224,52,26,224,195,3,224,31,11,188,78,96,
+0,225,95,11,199,104,224,53,5,224,23,1,239,106,0,128,18,96,30,194,
+68,224,8,10,96,242,224,11,2,174,83,224,94,0,137,176,195,43,128,83,
+228,123,4,194,176,161,170,131,133,230,68,4,209,206,224,76,0,192,20,226,
+207,4,69,214,131,113,1,57,56,229,140,6,229,96,5,231,183,4,138,179,
+198,70,142,185,202,66,194,194,229,151,0,234,198,1,175,27,228,56,1,0,
+95,105,88,65,200,1,66,32,247,130,0,183,171,183,163,228,100,2,225,243,
+11,64,41,140,110,242,60,0,148,50,224,144,4,165,47,64,8,200,25,228,
+156,1,229,102,1,192,208,1,95,53,107,78,173,150,193,70,204,213,96,248,
+224,135,4,180,88,224,38,5,66,81,2,95,53,53,245,21,1,160,98,224,
+1,7,226,206,8,226,205,5,224,48,9,226,202,2,224,26,7,226,197,1,
+192,17,193,62,97,65,136,142,96,220,0,95,68,197,224,201,4,224,200,2,
+65,19,1,95,49,70,2,224,0,4,226,226,38,104,250,226,214,3,226,212,
+0,160,77,226,96,11,173,242,160,33,96,53,226,52,0,196,115,96,21,129,
+149,64,141,130,66,128,24,226,67,2,192,133,228,166,0,226,73,14,193,110,
+128,46,244,21,0,64,36,246,240,0,128,110,4,67,32,95,57,56,113,196,
+160,0,194,84,228,92,3,229,191,3,96,121,225,53,1,131,43,225,29,1,
+224,11,12,228,24,55,128,102,228,194,6,64,72,223,160,192,0,193,42,192,
+236,224,140,1,160,182,224,155,0,3,95,55,53,55,224,60,3,226,5,8,
+160,98,224,101,4,73,49,87,94,1,95,57,142,147,224,155,1,225,29,4,
+224,103,0,128,237,224,164,5,163,28,160,43,98,173,161,68,106,141,79,250,
+243,11,6,194,46,169,201,192,225,72,11,129,171,128,64,65,216,213,164,2,
+95,57,56,226,149,1,161,100,229,33,3,64,16,118,9,1,57,56,182,250,
+226,72,0,145,67,1,57,57,228,212,0,128,16,1,50,55,176,199,224,42,
+1,224,45,0,115,245,0,50,96,7,2,57,57,49,180,25,1,57,57,98,
+85,96,167,99,196,137,74,128,178,96,16,192,100,224,86,0,225,187,1,163,
+31,66,131,228,203,0,160,198,229,236,7,99,40,110,118,162,197,228,14,5,
+0,83,161,196,231,139,3,97,116,228,236,6,100,24,3,85,32,75,50,182,
+212,192,232,228,74,6,192,38,224,37,2,160,132,192,230,129,137,128,230,0,
+90,111,8,0,83,126,253,161,231,235,86,4,197,96,0,85,247,242,0,160,
+76,169,251,192,59,192,252,228,9,3,226,101,3,196,15,192,19,225,204,0,
+224,111,12,224,59,5,163,231,225,125,2,238,211,9,106,217,224,55,0,96,
+93,194,113,230,148,3,228,85,18,160,0,74,223,0,51,209,107,169,74,97,
+99,227,119,0,160,202,224,215,5,233,192,4,226,254,1,240,217,3,224,209,
+0,235,8,13,224,63,0,206,130,228,76,3,174,67,160,215,101,122,131,146,
+99,150,134,99,84,76,160,230,252,101,8,64,0,66,128,0,49,145,180,147,
+33,128,221,234,10,1,66,149,248,140,2,100,69,184,146,0,57,122,127,64,
+65,0,48,128,65,146,142,192,181,1,85,32,120,163,192,212,96,210,225,187,
+2,224,21,24,224,231,5,224,46,8,160,35,195,211,149,52,128,28,247,247,
+0,128,84,228,231,2,131,135,228,20,0,224,22,0,179,235,64,49,227,204,
+0,98,38,96,29,187,2,143,144,2,53,55,57,117,172,102,11,129,74,96,
+54,226,0,11,229,139,0,64,71,224,42,0,128,33,134,104,224,17,1,226,
+0,5,232,63,0,224,66,0,224,94,1,231,214,2,96,19,168,79,253,71,
+3,128,74,160,242,176,42,194,47,96,26,0,90,66,134,160,13,250,16,1,
+1,64,64,68,72,129,181,96,0,65,213,147,226,161,42,96,72,162,102,96,
+96,192,5,202,187,224,195,0,246,215,6,128,22,243,198,4,224,25,2,160,
+90,225,41,1,192,18,128,5,131,161,0,57,79,97,215,22,128,6,136,49,
+130,151,133,199,0,55,129,124,96,225,132,216,224,14,5,2,95,54,51,162,
+205,160,0,248,9,13,225,206,0,226,57,1,164,47,225,8,1,150,208,1,
+57,57,233,72,2,128,0,247,179,7,0,110,184,34,247,202,7,183,203,99,
+71,124,51,160,166,166,46,220,196,88,66,0,56,131,138,0,54,98,130,0,
+51,92,62,161,232,188,177,225,186,3,0,58,96,146,143,193,1,57,57,96,
+50,160,194,96,56,0,52,119,166,4,64,64,95,51,56,65,126,0,58,65,
+51,128,45,165,190,80,189,144,86,131,17,65,149,129,94,0,56,146,98,228,
+149,0,231,250,0,128,42,229,82,1,0,58,96,119,96,84,149,79,225,70,
+0,224,2,1,161,53,226,241,1,102,243,198,17,224,23,2,128,1,230,44,
+1,233,48,6,239,0,14,224,98,12,229,34,0,130,181,195,131,229,91,4,
+64,18,224,41,1,165,75,96,82,224,23,0,224,17,6,96,8,194,37,252,
+94,1,252,67,4,252,68,1,224,93,1,225,98,0,134,31,224,89,1,224,
+8,0,1,95,56,120,212,97,92,251,53,15,1,61,61,249,7,1,64,30,
+251,8,0,64,0,134,255,231,5,2,128,1,163,251,224,16,16,64,112,120,
+86,72,102,130,252,72,97,95,62,153,141,0,35,64,225,222,247,224,70,1,
+186,141,241,117,21,9,69,110,99,111,100,101,68,97,116,97,209,120,5,49,
+52,57,58,49,51,241,120,2,225,253,6,228,170,0,224,22,5,235,235,0,
+224,45,28,224,22,0,193,234,235,51,1,224,14,0,224,51,3,177,47,230,
+98,1,97,166,65,21,225,148,16,4,79,32,35,54,48,233,20,0,225,143,
+11,64,88,226,100,1,226,160,3,226,122,4,101,102,160,50,192,0,226,41,
+0,133,60,165,109,197,188,0,58,101,29,1,10,65,89,135,0,58,103,161,
+100,81,100,17,88,237,128,3,1,80,32,72,124,164,89,229,235,7,101,69,
+1,10,65,84,202,106,63,66,214,0,90,129,56,64,14,66,148,160,14,230,
+106,6,234,125,4,202,78,65,158,0,75,86,88,128,24,224,55,11,4,64,
+95,49,53,53,203,114,0,58,96,6,253,19,0,193,158,66,100,0,58,75,
+158,228,162,2,64,33,96,7,99,245,233,146,3,232,183,1,246,74,2,128,
+23,160,87,248,216,3,0,85,170,165,197,230,234,228,22,224,37,11,224,36,
+1,194,94,74,67,72,34,0,80,74,75,75,206,0,57,74,58,129,95,135,
+74,2,80,32,58,108,191,64,235,241,110,0,233,116,4,96,162,186,178,224,
+184,13,75,201,181,250,132,121,224,149,3,96,23,172,20,192,36,224,37,9,
+96,187,221,154,237,127,4,0,67,72,241,234,37,0,246,222,3,0,58,96,
+32,230,171,10,2,52,52,51,73,118,228,151,3,7,99,111,110,65,114,105,
+116,121,195,214,107,92,0,54,226,54,5,96,132,0,58,110,150,166,175,114,
+255,66,38,64,22,0,54,232,122,7,224,9,0,96,120,0,57,102,192,98,
+153,107,190,199,11,1,95,49,99,160,129,37,89,2,96,99,214,213,230,229,
+2,96,38,160,85,255,7,1,96,64,192,53,214,214,239,14,0,1,95,56,
+114,71,175,99,0,55,239,141,1,96,146,1,56,53,96,136,0,55,98,62,
+129,88,237,244,1,158,205,96,86,131,105,99,99,134,142,129,225,227,32,3,
+202,99,1,95,56,109,235,99,7,0,56,171,164,155,20,130,48,226,56,8,
+96,53,224,25,12,98,211,224,25,12,0,49,160,194,226,109,13,96,167,2,
+95,56,53,106,249,0,54,95,95,98,13,222,111,224,19,3,96,68,221,120,
+137,224,162,34,0,56,140,67,240,36,3,142,96,233,129,1,194,139,72,70,
+250,190,22,229,102,0,250,190,9,3,95,56,51,57,71,117,121,124,249,134,
+10,160,0,227,16,9,96,147,67,17,160,24,128,141,101,237,181,146,224,6,
+5,64,0,196,170,224,69,0,250,189,1,240,248,0,225,109,9,64,35,227,
+144,15,227,83,0,160,100,128,65,1,95,56,68,61,8,95,54,50,52,32,
+95,54,50,53,227,217,3,128,52,129,99,139,28,97,99,246,68,5,224,135,
+12,169,185,224,135,6,179,71,192,82,1,49,52,129,137,234,185,2,0,102,
+232,113,1,64,34,1,53,51,103,4,67,185,106,183,98,19,224,50,14,224,
+156,9,132,130,0,95,127,209,224,23,3,129,126,226,170,9,97,165,138,147,
+229,49,11,192,232,226,199,4,174,26,97,148,3,95,57,54,57,194,173,2,
+95,52,57,65,104,165,161,129,251,230,90,2,173,124,230,90,11,129,124,224,
+32,18,140,21,230,51,10,192,24,183,91,204,208,0,52,204,148,224,48,8,
+165,206,200,78,64,193,130,209,0,52,231,188,0,227,184,8,132,255,2,95,
+57,55,139,235,226,107,15,1,95,57,243,31,0,128,92,224,154,2,67,134,
+0,50,65,200,225,34,4,226,73,14,226,209,20,224,155,0,196,179,224,37,
+10,97,11,247,214,0,205,125,206,47,224,48,5,169,77,64,41,240,54,2,
+224,52,22,168,158,224,52,6,224,10,0,224,52,13,161,146,224,41,4,192,
+229,143,137,64,42,229,181,4,226,247,5,0,68,74,229,11,76,105,115,116,
+95,84,121,112,101,46,43,43,234,228,0,128,83,227,232,3,227,233,4,224,
+0,6,164,139,250,30,3,227,43,2,81,106,213,118,74,110,194,223,232,131,
+7,0,58,96,50,73,226,0,49,67,213,2,49,51,51,160,32,3,64,95,
+57,53,71,255,69,87,160,17,0,58,96,6,3,10,65,32,75,224,168,1,
+71,224,160,186,229,148,7,224,242,1,11,105,109,112,111,115,115,105,98,108,
+101,58,32,160,237,130,42,174,42,128,61,69,180,1,57,55,99,11,69,233,
+78,46,215,59,224,94,11,2,79,32,35,85,170,235,89,1,64,64,254,183,
+4,105,116,224,218,6,96,95,168,226,107,57,136,229,134,49,0,50,85,242,
+0,52,226,243,0,224,115,12,69,99,160,98,161,129,224,65,3,134,115,224,
+56,12,88,25,230,159,14,161,100,96,155,0,58,96,6,147,118,129,220,161,
+228,97,207,226,75,11,4,82,97,116,105,111,130,76,2,95,109,107,96,13,
+2,110,97,108,229,143,1,99,208,2,95,57,55,164,241,224,15,0,64,231,
+0,58,100,14,1,10,65,159,52,0,58,96,20,96,13,0,75,96,13,137,
+32,72,91,97,172,0,51,66,56,115,251,114,241,0,54,76,45,65,255,199,
+83,106,47,1,55,50,76,244,0,48,96,243,128,5,225,165,1,65,52,180,
+61,64,65,167,130,7,50,49,52,55,52,56,51,54,188,3,224,239,23,11,
+73,110,116,101,103,101,114,46,95,105,110,116,67,71,1,84,111,160,17,224,
+242,1,102,244,179,245,0,95,109,137,237,116,2,2,95,57,55,163,24,224,
+105,30,161,91,1,105,110,224,106,11,229,128,6,200,92,64,0,0,58,97,
+105,137,212,229,27,1,0,95,66,20,224,254,3,96,45,196,231,104,233,161,
+89,236,77,5,225,110,1,64,0,0,89,170,246,69,230,176,97,65,62,225,
+137,3,224,92,1,231,57,0,210,179,64,103,224,169,0,195,100,101,45,195,
+63,68,194,0,56,73,51,0,50,100,194,1,57,55,128,137,200,99,0,58,
+97,67,98,27,239,220,12,3,108,105,98,47,65,66,0,47,193,172,175,214,
+5,51,51,54,58,49,57,129,61,128,192,101,59,139,99,231,161,2,241,52,
+2,225,12,7,225,41,0,225,15,2,101,135,106,96,96,67,1,95,55,65,
+212,96,26,65,111,0,49,192,12,192,198,3,95,50,57,57,208,187,225,39,
+4,0,58,66,189,132,50,64,20,2,51,50,55,75,158,0,58,96,54,107,
+243,0,80,128,41,0,85,96,20,133,12,247,127,0,112,29,224,212,3,64,
+202,134,135,140,65,1,48,49,64,112,96,187,0,56,123,118,1,95,57,158,
+128,150,80,133,189,97,126,214,176,234,47,0,166,93,246,129,6,1,95,57,
+64,81,96,49,1,95,57,140,72,1,64,58,72,203,131,195,129,11,98,249,
+108,188,2,95,57,54,64,117,0,58,96,42,162,150,244,226,2,130,161,204,
+244,134,249,96,186,96,199,231,201,1,0,66,230,111,0,216,56,192,7,160,
+235,225,0,1,224,255,1,0,83,97,213,216,121,64,20,230,233,6,112,226,
+117,211,0,54,117,211,148,87,97,10,1,57,54,150,26,218,204,64,17,163,
+6,0,58,96,9,65,176,215,196,3,95,56,55,54,234,101,3,0,118,181,
+81,64,67,237,236,3,96,252,233,174,0,225,192,1,212,202,96,19,232,124,
+0,97,2,160,182,64,15,193,185,162,180,225,146,1,160,47,217,156,64,208,
+0,56,113,81,224,34,1,128,29,65,49,235,177,0,128,25,110,129,64,248,
+237,231,0,0,57,110,59,197,60,225,162,0,160,170,192,140,242,166,3,233,
+74,8,200,56,192,187,147,33,160,58,129,171,4,32,95,56,52,48,228,251,
+7,13,66,111,111,108,46,111,116,104,101,114,119,105,115,101,232,163,0,210,
+131,224,244,0,242,161,0,97,22,0,56,189,133,160,38,224,23,1,165,19,
+128,23,0,58,97,227,250,90,0,245,229,0,227,54,0,192,87,224,17,2,
+192,102,227,110,0,64,14,113,100,232,1,0,225,15,5,192,45,150,151,233,
+198,7,219,2,224,55,1,193,26,194,177,224,131,0,224,88,1,214,28,128,
+146,212,44,227,250,3,195,167,226,57,0,133,113,87,99,236,93,10,160,31,
+104,63,130,222,196,26,193,50,1,95,54,67,35,237,216,2,228,42,8,225,
+137,1,226,126,1,154,152,160,41,224,124,1,227,164,1,0,95,145,211,164,
+23,226,97,1,252,19,9,205,85,96,252,67,5,253,210,2,251,34,1,117,
+9,251,148,0,224,51,1,229,1,0,133,180,163,16,84,172,80,195,236,171,
+2,197,250,228,49,0,226,225,11,225,96,14,247,182,1,224,16,1,1,95,
+56,72,171,0,64,96,146,227,52,9,236,125,0,1,95,50,67,109,241,92,
+0,237,160,4,224,167,7,224,22,8,236,254,0,253,187,4,162,54,192,210,
+164,211,85,145,82,94,231,40,8,103,21,2,48,58,48,99,96,160,70,130,
+104,224,46,25,135,182,128,0,228,246,7,0,109,232,161,0,69,64,4,53,
+52,32,95,51,145,140,96,16,139,185,0,48,159,148,225,86,7,65,52,225,
+12,0,194,47,0,51,145,182,192,59,0,53,207,88,2,95,54,57,85,175,
+0,54,103,169,224,131,6,0,112,247,190,2,3,95,55,54,52,64,39,172,
+116,66,119,102,129,1,95,56,108,141,98,225,0,58,96,30,179,222,241,39,
+1,0,80,161,120,66,223,131,118,0,80,136,193,238,140,2,0,52,126,120,
+161,65,237,184,1,252,233,0,0,39,103,58,241,63,2,0,83,157,225,130,
+96,146,106,193,180,248,4,1,218,189,130,51,254,116,2,224,72,1,204,70,
+102,15,198,181,224,175,1,160,120,198,235,180,10,128,37,227,116,1,2,95,
+57,54,227,164,0,64,24,245,165,1,224,10,1,0,58,97,99,198,193,163,
+244,229,51,1,227,14,5,99,47,230,218,0,194,250,160,188,239,167,7,160,
+117,238,241,2,227,136,2,224,42,4,116,117,221,147,224,33,13,195,43,246,
+165,27,239,57,2,229,151,1,192,64,74,241,66,51,96,40,228,81,0,224,
+81,4,161,155,0,85,233,52,0,192,9,64,0,230,72,1,224,253,21,168,
+72,240,133,2,128,188,225,79,0,224,43,2,248,59,1,68,207,67,166,166,
+106,225,123,1,240,42,4,160,91,192,48,247,31,1,128,216,196,44,133,175,
+0,75,229,178,0,0,54,72,211,128,200,119,105,160,209,229,133,3,160,144,
+66,78,225,83,5,167,19,128,48,225,207,23,128,51,226,33,1,224,32,8,
+132,3,231,144,1,224,32,8,193,17,232,118,8,225,42,5,224,7,1,225,
+36,8,130,82,225,239,6,171,209,99,94,64,153,225,136,6,176,114,224,50,
+3,224,87,8,96,22,248,241,7,226,22,3,128,67,226,16,9,128,42,226,
+59,0,224,39,15,166,188,225,248,12,224,27,2,64,199,242,72,4,208,48,
+128,30,226,9,0,226,82,9,160,225,226,149,1,160,55,250,160,0,3,85,
+32,64,82,224,220,4,241,146,4,241,143,19,7,112,97,116,86,97,114,115,
+32,133,159,145,232,102,119,160,225,151,173,111,205,92,188,2,95,54,51,104,
+187,133,13,96,127,0,58,68,177,141,255,0,73,156,3,129,88,160,54,0,
+54,177,214,224,17,0,205,209,0,49,100,6,113,11,162,13,224,31,12,128,
+211,224,61,8,1,51,56,102,102,1,52,54,234,173,3,1,91,93,128,198,
+224,45,29,1,40,41,174,124,224,36,19,1,45,62,230,185,3,0,57,88,
+228,96,242,141,240,99,112,0,57,96,194,0,58,96,27,6,10,65,32,104,
+101,97,100,96,59,0,58,96,24,172,144,1,54,49,65,61,2,55,51,55,
+70,219,65,100,134,219,140,17,131,236,71,229,96,237,67,239,199,6,70,38,
+101,233,70,60,150,169,0,80,96,23,218,176,174,31,0,80,125,193,0,90,
+72,95,146,180,70,136,68,117,249,63,1,201,61,64,51,68,22,224,7,1,
+65,1,134,222,224,0,0,102,199,87,169,192,220,218,234,143,229,129,149,164,
+197,164,202,101,153,193,251,78,178,128,21,157,70,229,81,3,132,228,230,60,
+5,128,8,112,194,105,136,111,239,2,64,95,57,197,217,192,215,96,240,96,
+216,137,27,71,89,165,232,224,141,5,192,36,166,46,237,234,0,167,15,167,
+172,227,79,0,160,254,112,56,96,8,227,76,2,1,95,57,67,51,133,94,
+241,35,1,1,95,57,128,163,65,28,0,51,236,194,2,166,103,235,4,2,
+64,140,0,52,104,237,224,27,0,107,47,128,27,232,115,1,224,16,0,236,
+183,4,192,1,172,146,224,19,2,165,219,224,16,13,203,110,200,8,225,225,
+1,192,21,104,142,224,162,2,0,53,101,127,133,104,164,237,164,247,224,175,
+6,171,238,224,30,2,224,2,1,224,164,6,230,118,0,73,216,0,51,90,
+157,226,102,0,224,54,2,183,154,224,174,0,135,164,224,138,2,192,2,160,
+24,132,155,128,55,224,52,1,224,55,2,226,107,0,105,0,128,5,174,69,
+64,42,67,242,146,23,68,97,160,145,224,100,1,192,198,224,71,8,129,19,
+97,37,64,214,67,54,0,51,84,82,224,70,2,0,95,190,28,98,178,66,
+188,193,252,227,135,13,161,214,64,8,195,146,161,198,225,183,6,129,170,224,
+0,0,129,87,224,196,1,224,43,0,69,56,146,204,224,157,4,252,235,8,
+166,151,96,176,98,154,135,125,96,68,224,53,0,0,95,86,3,253,22,4,
+165,243,192,220,194,215,64,181,2,95,57,52,65,223,75,130,253,93,12,240,
+125,1,2,95,57,53,97,24,193,6,163,177,196,139,224,20,2,200,189,131,
+101,234,244,2,64,47,229,47,0,232,19,0,64,57,232,232,2,167,37,180,
+204,216,62,65,210,204,11,128,25,202,40,108,220,128,237,0,58,96,162,224,
+109,13,226,34,1,168,137,229,65,6,0,58,99,73,103,16,1,95,57,77,
+44,88,194,79,201,97,35,0,50,97,53,191,233,68,87,183,223,1,57,52,
+121,188,0,52,121,144,73,233,0,58,96,37,160,130,226,59,9,226,29,4,
+178,101,64,0,1,95,57,88,181,0,58,96,66,128,90,224,192,0,171,26,
+232,247,0,239,180,1,194,231,164,178,194,245,226,124,6,197,141,128,165,0,
+58,96,104,96,159,101,53,221,169,0,50,85,79,161,120,0,79,249,148,3,
+98,43,80,105,65,70,3,95,53,55,56,232,177,1,0,58,96,253,103,42,
+1,57,53,64,133,0,58,96,36,64,16,64,90,1,95,53,64,84,0,57,
+111,199,1,95,57,89,234,0,58,96,76,167,67,1,57,51,116,216,89,68,
+199,54,65,102,225,129,2,224,177,0,186,224,4,57,51,57,32,58,96,19,
+212,47,88,29,0,52,102,98,2,95,57,51,117,232,0,51,129,155,137,135,
+193,253,129,117,70,116,139,166,234,29,3,228,198,5,1,95,57,71,235,224,
+32,2,238,75,2,160,26,231,19,3,160,19,129,141,135,62,71,103,227,66,
+12,128,161,224,44,7,131,167,192,27,224,28,7,167,78,224,28,13,99,195,
+224,28,0,100,147,130,49,132,16,228,101,1,215,65,104,160,224,155,5,231,
+45,0,0,58,96,71,195,58,131,142,103,218,232,117,5,230,25,2,204,22,
+224,30,3,101,167,142,191,118,119,225,60,0,0,83,98,255,225,103,1,230,
+245,2,225,79,2,64,56,245,167,4,224,56,1,224,19,3,224,62,2,161,
+20,114,190,230,116,3,160,108,192,28,64,16,153,182,230,54,0,232,62,2,
+192,41,227,150,0,226,5,0,128,0,241,198,10,10,115,114,99,47,77,105,
+99,114,111,72,115,89,33,2,77,97,112,217,32,3,55,51,58,49,234,124,
+2,65,88,131,211,203,220,64,4,66,249,182,33,98,195,0,57,107,159,0,
+58,99,18,247,249,7,64,19,203,186,0,58,96,40,234,65,0,81,55,142,
+94,132,23,129,26,231,245,0,193,172,84,75,113,61,238,100,2,64,1,237,
+25,0,174,64,120,37,68,11,134,102,232,7,4,193,92,246,195,0,0,80,
+250,106,2,227,17,3,241,175,1,1,95,57,83,97,197,194,192,7,167,203,
+229,191,3,226,53,0,141,156,1,95,57,165,206,196,185,128,11,0,51,66,
+239,0,58,100,24,100,12,0,50,82,142,132,85,64,26,128,19,2,55,32,
+58,96,19,193,34,64,37,161,209,1,48,32,103,5,0,58,96,93,128,45,
+0,57,117,71,0,58,96,27,96,49,165,94,194,100,137,48,224,222,3,238,
+122,2,225,9,0,196,34,99,120,64,86,145,143,224,46,5,131,187,193,101,
+251,29,2,194,192,180,149,1,57,50,179,182,162,146,192,77,230,192,0,226,
+226,5,233,109,10,160,24,225,211,0,169,118,192,85,192,1,160,138,224,137,
+1,231,249,15,224,75,59,232,140,2,224,75,23,167,157,224,75,17,233,3,
+0,129,35,128,2,229,166,0,97,93,0,57,140,14,162,223,225,191,3,118,
+102,224,31,4,224,122,0,228,51,4,96,40,224,39,5,224,40,8,224,11,
+0,160,47,224,46,6,87,185,65,203,1,95,57,178,118,0,58,66,112,102,
+223,161,167,239,174,0,225,132,23,224,40,26,129,97,242,94,0,225,62,23,
+96,171,99,47,64,10,224,5,0,162,192,224,26,5,224,27,0,113,31,224,
+30,2,224,31,12,160,33,224,27,6,224,34,0,138,132,105,52,225,29,2,
+0,58,98,246,2,10,65,32,119,137,0,58,96,44,163,194,235,88,0,224,
+10,6,225,121,1,232,234,0,0,58,96,120,96,55,234,156,2,64,27,0,
+58,96,114,5,10,65,32,73,32,58,100,18,3,10,65,32,80,64,10,232,
+142,0,246,174,0,1,95,57,85,36,1,95,49,65,171,0,64,83,152,0,
+48,65,212,0,58,101,20,224,42,6,96,234,103,85,81,177,251,126,6,166,
+21,0,33,134,11,0,73,96,213,177,113,96,60,136,157,107,197,194,160,160,
+128,255,57,2,128,31,204,157,227,254,9,227,249,11,231,6,7,129,46,227,
+238,33,224,63,0,163,82,227,220,32,128,56,166,42,227,195,28,225,64,0,
+224,10,4,224,11,15,227,79,5,0,58,96,22,152,130,1,49,51,74,149,
+109,64,72,209,0,58,96,33,160,26,237,91,1,160,26,194,104,0,85,96,
+13,194,104,0,90,104,208,0,58,112,175,166,10,66,169,88,160,241,5,5,
+229,203,0,128,228,133,182,229,196,0,154,84,108,89,186,101,168,113,238,48,
+0,232,4,11,101,219,202,166,107,76,226,229,1,250,190,6,97,94,64,152,
+66,17,109,233,64,6,0,57,138,11,237,198,1,129,206,148,105,0,58,122,
+188,98,187,160,193,160,221,1,55,56,64,104,192,199,64,146,0,56,96,86,
+128,167,128,84,96,107,96,93,128,76,236,214,3,128,79,135,241,77,45,66,
+165,244,181,9,3,79,32,35,49,65,170,135,239,3,95,49,49,51,64,24,
+230,17,1,3,95,56,51,57,160,181,226,89,14,0,58,96,237,227,124,0,
+120,153,0,32,233,206,1,175,3,96,152,99,85,227,141,5,8,33,33,58,
+32,101,109,112,116,121,169,149,199,149,111,106,227,106,0,192,68,240,32,14,
+96,168,224,87,9,0,60,155,199,0,58,97,34,131,218,73,103,236,151,3,
+128,11,105,165,0,58,98,78,238,158,1,224,206,1,175,2,160,2,193,130,
+227,123,0,248,44,2,231,65,4,224,40,14,195,59,228,47,1,224,40,15,
+160,220,198,244,247,168,9,136,125,249,152,3,164,30,255,138,10,96,37,131,
+54,0,48,204,87,224,19,3,168,200,163,42,224,109,11,135,40,224,51,3,
+160,242,224,117,11,245,49,0,224,155,1,225,26,25,160,151,224,39,24,166,
+172,249,127,23,249,61,68,96,242,103,58,67,139,67,129,74,151,96,5,2,
+95,56,54,96,81,2,95,56,55,237,177,0,160,95,224,81,8,231,103,0,
+184,145,234,94,3,163,235,2,53,51,55,160,93,227,196,0,2,57,48,56,
+221,138,1,57,48,132,77,100,92,184,172,224,107,14,236,78,2,192,231,243,
+27,0,249,52,4,224,49,0,162,4,224,41,4,226,124,0,104,190,227,216,
+1,146,200,198,43,96,36,132,154,0,54,107,213,160,10,133,44,143,21,237,
+52,0,1,48,57,104,97,234,195,2,224,68,2,230,220,9,250,57,3,226,
+106,11,225,164,1,230,11,1,161,64,193,32,226,135,4,219,246,2,58,57,
+49,210,144,0,80,143,108,134,100,204,111,224,22,0,152,30,64,181,96,23,
+97,59,102,41,0,56,135,250,128,178,161,190,1,56,54,165,183,222,163,108,
+122,64,123,64,140,205,229,1,95,57,90,70,0,58,97,216,232,117,2,0,
+83,228,245,2,232,3,14,228,151,1,231,244,24,98,179,0,52,65,173,65,
+122,2,53,55,57,65,53,229,62,7,186,13,229,64,7,10,116,117,112,108,
+101,67,111,110,115,116,114,165,154,69,213,64,75,249,237,8,0,58,96,203,
+225,50,1,132,40,129,51,0,54,224,24,3,132,250,128,24,239,41,1,64,
+24,96,176,128,24,174,65,6,52,57,55,32,85,32,83,226,3,6,66,251,
+224,19,7,64,109,224,19,6,103,148,224,19,7,142,107,229,64,9,0,85,
+64,108,65,204,0,57,129,8,122,128,225,12,5,11,103,101,116,83,76,111,
+99,32,69,85,86,97,193,14,224,76,9,64,156,64,60,71,0,108,161,227,
+176,3,122,72,160,103,0,53,64,4,197,60,96,113,224,25,2,160,47,128,
+96,224,193,5,65,62,224,116,7,65,57,96,177,224,108,3,64,18,192,110,
+224,79,1,224,19,1,1,52,57,133,2,69,68,225,77,6,100,136,224,19,
+6,67,44,255,27,7,73,236,81,9,224,80,3,1,95,50,165,0,224,125,
+13,224,17,6,224,101,7,225,159,10,73,26,224,76,11,224,75,1,163,20,
+187,168,224,114,6,224,222,9,64,221,224,18,6,226,62,10,68,22,224,138,
+8,66,82,225,65,10,224,234,11,224,58,7,64,164,0,85,109,125,226,22,
+1,162,5,144,79,224,83,8,192,81,200,223,225,43,6,225,144,10,129,143,
+224,137,5,226,87,14,224,178,1,160,132,166,148,225,46,9,64,49,224,122,
+6,225,165,10,225,164,16,133,112,224,133,6,166,49,225,254,8,226,219,10,
+224,87,15,226,92,17,226,216,2,68,75,137,247,164,75,225,127,5,162,58,
+224,74,8,0,58,96,161,228,129,16,225,17,37,227,131,19,224,19,21,225,
+29,31,225,240,7,225,26,17,228,92,7,0,58,98,93,224,232,1,226,19,
+6,161,71,0,58,97,39,225,14,3,228,219,27,179,37,2,64,64,58,96,
+72,192,62,2,67,32,80,224,160,7,224,12,10,226,148,4,0,58,96,76,
+224,64,1,224,66,3,161,236,224,242,7,224,139,4,226,16,0,224,52,6,
+64,88,134,180,224,254,6,224,31,2,0,54,166,162,96,33,144,18,0,52,
+111,242,110,144,96,46,128,40,185,103,64,38,77,123,224,74,7,224,90,10,
+249,136,3,2,55,57,55,64,172,105,83,1,56,57,85,50,0,56,77,220,
+64,31,1,55,56,64,31,7,56,55,32,79,32,35,55,53,168,193,0,58,
+96,36,224,30,8,0,57,224,30,1,251,102,2,246,36,5,98,62,233,29,
+0,234,188,4,202,126,224,5,1,224,21,10,96,18,138,29,224,77,0,234,
+36,3,236,210,4,169,3,224,17,16,130,204,224,81,3,211,189,224,39,7,
+224,141,1,224,25,3,250,26,4,224,80,0,1,95,56,104,218,224,70,14,
+169,147,224,117,7,111,111,90,186,160,24,171,150,160,2,64,50,5,95,56,
+55,51,32,79,64,93,0,52,234,72,2,224,97,1,131,173,160,91,160,144,
+246,125,2,96,62,234,21,3,225,131,12,160,87,192,221,85,46,95,85,140,
+10,224,60,2,193,212,128,85,128,20,128,72,224,77,1,3,95,55,51,49,
+80,50,136,102,96,89,224,75,1,160,104,224,21,6,96,50,96,190,145,6,
+103,204,3,95,56,55,54,233,9,2,1,36,104,239,168,0,96,36,128,50,
+224,49,20,1,118,115,233,49,0,161,115,1,95,56,93,186,224,13,0,140,
+48,139,218,2,95,56,56,68,60,160,23,141,21,97,128,252,248,3,161,13,
+213,169,224,73,0,81,143,0,56,130,205,64,21,191,86,192,25,162,23,130,
+98,2,58,56,57,235,230,1,138,181,132,61,128,45,180,152,96,77,234,216,
+2,64,33,74,165,96,164,146,194,1,56,56,114,41,125,34,96,214,122,33,
+234,183,93,209,222,2,95,56,54,80,198,114,153,167,120,210,187,234,164,16,
+174,89,0,54,242,20,0,145,12,249,249,0,128,216,128,78,2,95,56,55,
+68,162,192,16,234,151,37,192,54,158,203,128,114,160,20,224,99,3,224,28,
+2,154,164,224,111,2,234,163,53,225,12,1,224,130,12,0,55,134,151,224,
+169,0,225,84,0,1,54,54,98,164,110,44,225,92,1,161,16,160,155,234,
+195,36,225,9,1,2,95,56,56,130,109,160,145,110,80,224,148,1,207,246,
+225,41,11,234,211,74,225,122,17,66,98,207,181,225,149,7,234,228,14,224,
+75,1,1,54,54,85,220,224,58,1,129,107,2,95,56,56,170,212,67,37,
+0,73,181,87,144,139,241,118,4,2,95,56,56,143,146,226,125,7,225,118,
+9,235,14,17,160,53,224,68,8,226,9,5,128,26,192,117,226,117,14,101,
+191,224,18,5,233,249,16,226,102,13,1,95,56,117,210,131,161,161,27,128,
+13,160,30,71,195,224,222,10,233,252,16,224,102,13,227,75,21,227,135,23,
+255,119,2,0,58,96,22,100,207,225,45,4,119,231,130,193,0,58,96,210,
+228,242,11,225,46,40,227,3,34,228,74,33,224,28,7,235,86,32,226,56,
+0,225,202,16,193,37,226,91,8,0,58,98,184,225,54,9,96,35,108,253,
+226,113,4,0,58,97,73,224,46,14,163,55,96,90,0,58,96,61,102,117,
+0,80,225,144,12,224,234,2,224,97,3,0,58,96,70,96,55,224,57,6,
+194,28,226,124,2,224,87,15,74,196,102,37,128,9,96,56,0,58,96,95,
+224,185,13,96,59,226,37,1,64,92,74,177,64,76,0,58,96,28,247,104,
+1,107,88,131,11,180,143,128,73,97,27,0,55,210,89,3,95,56,55,53,
+178,241,0,51,133,60,1,67,39,224,63,1,102,180,224,61,0,197,194,128,
+10,120,249,147,11,134,231,248,228,7,249,153,3,96,20,0,58,72,193,160,
+118,85,141,104,223,64,194,1,95,56,102,103,0,58,64,139,96,207,244,4,
+0,115,246,0,79,64,201,0,56,70,54,243,187,13,160,31,85,203,251,114,
+12,96,197,192,64,115,150,0,58,106,111,186,29,2,95,56,55,179,202,2,
+56,55,50,201,247,65,59,96,42,64,60,224,53,1,130,82,0,80,65,108,
+130,52,96,10,204,24,104,205,97,98,104,205,64,135,224,205,81,96,32,160,
+151,74,153,192,105,97,151,154,143,2,56,54,54,122,138,1,53,56,236,196,
+0,64,54,224,41,15,234,92,1,1,91,93,148,129,96,166,1,10,65,234,
+118,2,0,68,93,230,10,76,105,115,116,95,84,121,112,101,46,34,64,231,
+64,59,233,242,0,254,173,0,233,237,1,85,185,96,31,84,146,132,154,64,
+21,173,172,5,56,54,50,32,58,56,78,0,96,35,94,12,77,186,64,33,
+173,143,187,163,96,175,235,0,2,0,102,138,255,183,216,69,48,123,190,224,
+38,14,64,79,129,167,0,75,98,216,65,15,64,3,0,58,73,228,192,122,
+213,252,0,50,159,14,251,206,0,245,155,8,98,31,64,179,66,64,219,83,
+0,49,64,220,149,247,190,196,67,27,64,231,66,92,67,103,107,43,247,225,
+4,158,231,167,154,0,52,72,77,2,58,56,53,189,200,66,155,76,119,0,
+53,106,230,0,39,142,108,0,83,64,16,64,98,99,132,192,30,2,95,56,
+53,100,68,132,48,77,175,224,56,0,155,223,221,46,129,164,97,254,0,49,
+76,200,128,34,64,36,1,95,56,219,25,107,225,1,58,56,66,53,65,126,
+224,99,2,0,53,110,249,0,95,100,138,96,57,67,61,0,53,68,158,0,
+50,87,113,96,239,224,85,0,212,182,0,58,96,155,131,246,99,10,0,53,
+64,237,2,90,32,80,72,166,96,30,130,63,224,28,1,0,83,87,219,160,
+132,189,197,202,76,0,49,123,29,103,230,0,50,141,220,224,10,2,192,30,
+0,58,97,33,64,82,96,140,0,50,164,188,224,124,1,217,19,64,212,0,
+52,160,184,128,8,4,64,64,95,51,55,96,241,65,160,3,95,50,50,51,
+192,11,0,58,96,213,96,167,64,18,157,254,224,82,1,66,234,1,95,49,
+96,26,129,24,224,112,21,74,183,192,112,1,49,57,224,111,1,224,122,0,
+0,58,96,6,64,110,0,51,225,178,1,160,76,217,205,224,188,0,64,124,
+88,252,160,152,64,60,130,235,2,85,32,58,96,51,129,125,67,243,157,160,
+96,56,1,58,56,66,219,96,37,0,73,96,13,129,240,247,166,8,9,105,
+109,112,111,115,115,105,98,108,101,164,21,89,230,96,54,1,75,52,64,2,
+82,167,224,1,3,238,78,2,96,45,129,222,65,1,98,193,222,6,255,252,
+0,156,101,128,210,65,232,72,53,64,67,192,73,133,164,159,165,166,145,131,
+239,96,7,141,106,0,56,67,118,131,64,192,118,228,117,2,171,69,64,21,
+130,24,4,73,32,58,56,52,196,114,96,34,98,65,101,182,0,52,129,119,
+135,125,251,14,4,163,213,84,243,251,229,0,224,32,11,155,23,64,27,208,
+168,224,41,4,100,4,160,41,96,29,220,70,160,252,1,95,50,103,79,2,
+56,52,48,225,132,2,1,45,62,97,124,224,21,6,10,80,114,105,109,105,
+116,105,118,101,115,46,160,32,224,89,5,132,126,187,44,225,148,4,198,179,
+3,85,32,64,90,96,40,136,2,98,133,0,52,69,18,96,37,200,136,1,
+75,50,97,235,128,21,0,51,130,53,142,236,1,95,56,67,124,168,4,229,
+50,12,4,36,115,117,112,101,185,222,232,36,5,2,58,56,51,239,240,1,
+64,70,224,52,2,0,67,64,48,1,58,56,72,38,128,107,65,75,0,90,
+225,121,3,1,95,52,68,161,3,64,95,56,51,171,254,3,58,56,51,54,
+96,45,6,98,115,43,43,46,32,58,96,24,132,60,66,123,71,224,0,51,
+64,125,232,236,2,163,87,2,53,51,57,64,131,2,51,56,49,192,25,241,
+226,0,111,190,163,54,100,147,102,226,100,161,64,85,0,80,64,148,0,90,
+129,181,130,137,0,52,102,131,110,215,244,159,4,225,34,19,20,100,117,112,
+108,105,99,97,116,101,32,100,101,102,105,110,105,116,105,111,110,32,161,49,
+0,52,229,150,0,128,141,227,153,3,7,99,104,101,99,107,68,117,112,163,
+151,0,51,130,220,131,233,64,211,1,95,54,102,156,1,51,52,222,92,252,
+208,12,158,244,97,73,117,38,0,51,195,24,234,71,2,156,205,230,94,0,
+158,74,1,95,56,146,217,238,107,1,234,34,0,236,239,1,0,58,96,85,
+157,140,1,83,39,98,136,96,155,64,63,96,7,64,172,0,50,104,23,64,
+43,130,151,110,194,242,136,1,245,110,2,128,66,0,75,65,118,132,29,64,
+116,72,116,245,37,5,160,49,64,5,0,67,224,52,10,224,53,0,192,7,
+140,172,64,58,160,68,132,150,244,235,5,96,58,224,236,3,224,23,8,224,
+17,17,141,12,192,122,128,1,128,38,243,115,2,224,119,1,224,61,8,224,
+64,2,224,65,2,97,18,224,46,14,160,93,129,180,245,117,0,65,17,173,
+172,64,71,109,160,226,35,4,223,16,64,0,225,69,1,224,2,5,228,77,
+0,224,137,3,131,98,67,5,1,95,56,113,157,192,126,64,137,213,185,128,
+8,224,5,16,1,95,56,115,73,224,91,6,130,118,128,85,2,85,32,65,
+224,90,0,192,29,225,111,13,0,89,225,110,1,226,13,3,96,134,225,219,
+8,129,70,129,24,245,0,2,192,98,185,158,226,60,0,224,40,0,224,72,
+14,225,132,5,224,31,4,129,196,128,87,69,248,138,66,97,135,227,52,0,
+162,166,160,6,96,4,168,64,162,121,97,48,97,107,128,181,227,126,1,103,
+24,112,112,131,178,224,9,1,224,68,21,225,101,0,161,192,224,60,8,199,
+213,225,150,1,128,254,97,25,64,191,64,217,167,214,192,232,0,85,89,134,
+65,208,224,208,10,232,39,3,225,26,0,224,8,0,226,214,18,224,28,1,
+224,29,41,224,195,8,107,245,195,87,227,42,0,160,138,226,8,3,224,51,
+0,194,107,227,84,0,64,35,1,95,49,119,235,204,9,166,93,161,86,204,
+30,1,53,54,224,25,1,1,95,53,77,137,160,116,160,157,161,138,129,135,
+2,64,95,55,118,202,226,13,12,107,56,205,254,166,151,146,255,128,156,2,
+32,95,55,118,61,104,131,160,96,67,14,129,253,193,95,225,49,5,229,63,
+5,128,233,226,245,3,225,18,0,226,242,95,226,214,3,242,96,0,129,74,
+75,26,239,61,13,133,196,109,38,224,41,22,68,107,196,243,129,64,96,4,
+227,57,13,1,90,32,224,13,2,129,15,227,1,31,0,75,160,112,227,2,
+19,225,59,15,224,13,4,101,116,226,161,0,161,215,129,67,226,115,2,160,
+221,64,157,135,215,96,9,2,54,57,56,210,12,0,67,64,13,241,243,6,
+96,213,0,50,160,168,224,8,1,225,42,1,225,8,0,165,126,194,105,0,
+89,161,255,161,232,235,200,26,97,52,0,80,129,24,160,18,130,3,229,216,
+1,64,24,106,177,224,118,1,64,239,1,95,56,104,36,137,144,174,206,206,
+215,202,64,2,79,32,35,74,240,161,86,193,170,64,5,1,58,56,67,161,
+106,13,234,65,7,160,92,106,76,234,250,0,64,77,172,29,1,95,52,79,
+145,66,47,112,150,64,40,112,184,0,50,83,116,64,19,170,114,64,13,0,
+54,128,27,240,147,1,0,58,96,181,235,68,2,96,229,0,58,66,123,64,
+21,134,153,1,95,56,90,162,129,179,0,56,80,39,254,129,2,91,43,192,
+207,165,151,0,58,103,37,128,131,0,49,64,117,212,192,131,163,134,159,226,
+24,6,202,208,230,182,1,227,159,1,129,136,224,13,10,236,151,0,131,194,
+231,107,0,98,126,226,65,6,227,192,12,201,181,227,15,0,201,244,229,41,
+7,1,95,56,122,86,252,91,0,169,209,128,2,98,249,1,95,56,68,210,
+192,27,224,7,1,113,91,102,244,198,181,128,0,110,210,75,59,161,197,68,
+255,224,228,5,231,196,10,228,110,0,163,223,144,162,224,247,5,229,228,9,
+228,170,2,160,138,253,35,4,234,142,5,161,163,225,62,6,232,82,0,181,
+83,233,164,3,3,67,32,95,50,94,117,160,43,161,42,239,22,4,197,217,
+197,161,224,23,0,228,47,0,192,252,161,71,227,64,0,160,165,209,172,225,
+33,0,105,61,128,27,246,9,0,228,154,3,64,238,224,32,1,201,44,224,
+186,3,97,85,231,32,0,139,225,224,204,11,166,229,129,101,224,58,44,224,
+55,11,97,167,237,208,2,196,68,249,135,1,109,172,68,45,237,153,9,2,
+79,32,35,84,130,128,244,246,216,7,246,215,3,235,43,2,132,100,65,91,
+248,19,1,223,92,129,22,183,39,128,182,192,189,229,0,1,192,17,82,198,
+181,215,64,16,224,77,24,143,4,226,19,4,64,199,226,93,2,192,29,224,
+89,3,132,196,64,72,200,24,237,232,3,197,208,230,131,3,131,203,162,149,
+224,183,2,162,237,0,58,64,118,100,148,65,84,65,65,0,53,128,174,0,
+58,100,121,143,229,0,50,114,197,164,196,75,206,96,131,0,90,64,89,96,
+4,131,212,99,239,0,58,96,38,181,255,1,55,57,66,179,0,56,93,89,
+1,58,56,95,246,110,35,102,99,67,162,225,21,2,150,8,96,41,192,6,
+64,7,64,167,0,75,96,60,133,43,96,246,228,11,1,224,235,1,128,70,
+111,221,167,99,0,83,228,234,5,64,99,1,57,50,227,65,1,2,95,55,
+57,97,50,228,3,2,0,56,114,111,97,21,163,127,137,218,160,135,83,252,
+96,66,96,228,218,68,164,23,1,95,55,89,253,0,83,161,125,133,61,1,
+95,55,121,247,163,225,0,66,98,218,96,38,253,77,2,128,35,96,70,128,
+14,0,56,88,212,2,32,95,56,66,167,224,140,0,128,101,242,149,0,224,
+70,0,224,40,1,129,68,96,157,164,203,98,243,1,56,48,98,155,128,236,
+0,58,96,224,175,210,169,109,128,162,2,95,56,48,65,12,202,75,224,104,
+9,160,32,1,95,56,118,47,0,58,96,86,129,203,224,239,11,192,173,64,
+63,154,250,235,152,1,192,172,226,147,0,2,95,55,56,97,83,228,134,0,
+165,180,233,158,0,66,176,72,4,1,95,55,135,17,97,34,98,236,64,241,
+71,176,0,57,141,11,193,251,65,20,225,1,2,103,253,64,183,66,148,96,
+48,0,56,86,110,0,58,96,25,96,19,231,182,2,89,57,100,63,0,58,
+96,36,103,172,1,48,49,224,35,2,241,197,1,1,67,39,145,234,0,58,
+96,109,225,13,35,224,233,1,194,20,129,1,224,191,2,128,16,97,185,96,
+176,64,249,0,58,97,132,224,177,7,65,20,192,177,131,97,224,177,16,0,
+83,224,177,1,195,78,227,124,1,160,107,64,28,209,204,224,206,10,230,73,
+1,160,200,64,30,225,168,9,96,190,134,6,192,18,66,71,1,95,55,115,
+96,97,196,224,193,1,92,75,166,168,64,33,0,57,96,131,226,169,5,163,
+207,128,131,130,56,231,236,0,227,72,3,224,160,7,224,153,0,226,72,10,
+229,144,0,226,92,10,194,83,226,143,2,224,75,16,254,41,3,224,255,3,
+195,59,128,78,87,184,96,219,196,53,227,238,1,162,197,226,133,3,0,54,
+225,17,1,73,16,96,62,202,214,169,53,138,166,97,178,226,18,8,0,48,
+194,18,96,198,96,30,1,55,57,224,25,3,0,58,97,136,224,55,7,93,
+39,192,55,212,147,229,228,1,0,90,75,236,128,28,162,103,138,244,0,57,
+90,253,100,122,224,79,8,166,74,64,30,229,47,0,163,5,149,147,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,64,6,224,73,24,64,6,224,36,17,101,44,128,73,229,
+108,9,1,55,56,162,197,67,253,227,58,8,104,101,224,250,0,98,211,64,
+8,228,126,10,0,66,189,34,224,30,2,65,226,0,50,227,77,3,224,55,
+9,0,66,164,4,224,54,7,193,171,224,24,7,71,194,224,24,12,0,54,
+224,49,4,64,38,192,6,0,58,96,6,226,118,3,163,225,0,58,96,222,
+228,91,8,131,221,104,22,238,122,5,206,129,66,247,153,109,229,76,1,185,
+149,125,63,224,32,6,235,236,1,254,17,7,226,148,3,167,89,224,126,11,
+192,101,128,76,246,134,7,160,6,192,115,205,47,224,151,19,128,35,0,80,
+96,75,224,44,3,178,98,126,129,64,152,231,237,1,236,202,0,224,202,4,
+160,185,224,35,21,2,79,32,35,92,60,160,228,166,106,128,154,224,38,7,
+0,49,224,38,0,238,193,6,226,47,1,1,75,52,194,47,224,35,18,0,
+51,224,35,26,0,50,224,35,0,128,0,241,82,3,224,57,0,66,34,196,
+235,1,80,32,97,69,92,0,64,74,64,20,156,169,164,134,92,67,228,163,
+1,238,96,5,138,139,96,81,194,135,231,185,7,0,58,99,166,226,165,2,
+199,251,0,58,99,221,224,24,3,165,142,0,58,99,209,224,24,2,197,48,
+0,58,100,89,224,24,3,203,68,99,200,96,164,65,126,159,11,126,246,255,
+11,13,252,130,0,252,120,3,65,4,192,32,96,31,225,197,3,96,230,71,
+65,255,110,3,0,55,114,66,2,95,55,55,64,58,64,94,128,16,76,73,
+128,9,0,58,100,138,5,10,65,32,79,32,58,96,37,123,172,0,58,96,
+28,241,108,1,192,1,65,80,231,90,4,167,17,64,97,107,68,1,58,55,
+64,240,232,80,0,162,112,128,207,224,14,3,224,11,2,192,8,152,147,0,
+58,96,72,135,240,108,109,1,64,95,64,81,66,176,66,14,244,0,2,1,
+58,55,65,116,192,163,239,160,2,224,107,1,224,178,2,224,19,20,99,25,
+0,39,84,34,0,55,201,110,224,47,4,78,104,84,107,0,53,64,138,2,
+95,49,54,224,36,0,225,9,3,239,79,5,99,151,128,53,0,55,148,185,
+224,53,1,160,110,224,2,0,128,38,0,52,96,236,224,38,1,160,72,224,
+85,1,0,67,81,122,129,233,2,95,55,55,202,250,0,39,241,144,1,239,
+45,5,96,0,1,58,55,64,209,225,143,0,96,248,192,86,65,112,0,58,
+96,72,66,175,7,52,50,53,32,75,32,85,32,94,76,224,120,4,132,92,
+82,47,0,51,115,109,192,87,165,216,67,222,70,0,179,214,119,21,2,58,
+55,54,130,135,159,131,238,235,0,157,10,160,14,253,72,12,2,32,61,32,
+254,104,3,0,55,67,137,96,110,64,87,64,110,2,49,49,52,71,33,224,
+27,0,64,127,0,54,76,205,1,95,55,67,156,67,17,96,134,64,27,0,
+58,96,6,227,14,0,1,95,54,92,156,96,142,78,197,0,54,154,169,160,
+160,0,54,79,170,192,67,128,6,128,254,224,43,15,65,120,0,54,147,245,
+96,7,3,95,54,50,48,103,37,231,117,0,128,111,0,64,192,24,0,52,
+233,202,1,224,96,2,96,29,2,64,95,55,116,189,0,58,96,23,100,61,
+1,54,52,133,164,0,55,102,170,64,224,96,59,0,58,97,107,253,220,13,
+166,75,193,109,128,45,196,216,5,54,50,32,58,55,54,131,48,2,114,110,
+102,99,67,0,58,64,21,194,28,225,147,17,6,84,109,111,100,117,108,101,
+161,152,135,89,128,98,99,23,74,183,0,52,64,220,161,47,241,138,9,224,
+189,0,195,47,160,160,99,184,1,95,55,117,177,224,38,5,1,58,55,87,
+214,149,116,149,113,0,58,96,38,144,132,131,139,65,49,163,46,1,58,55,
+85,224,64,231,5,53,54,49,32,58,55,66,167,241,28,2,228,27,2,80,
+23,66,68,246,155,2,239,247,1,161,64,64,41,0,95,99,103,239,6,4,
+160,20,163,188,96,67,255,37,3,1,55,53,130,107,0,80,130,107,96,93,
+160,99,160,6,96,238,227,251,1,2,95,55,53,186,46,224,127,3,228,72,
+8,96,94,167,186,192,38,127,131,160,122,224,130,0,224,8,0,0,58,96,
+88,96,138,1,95,49,78,187,230,106,0,2,58,55,53,167,6,227,70,2,
+0,53,64,155,195,247,226,5,17,226,4,5,227,214,38,14,40,46,46,46,
+41,32,119,104,101,114,101,92,49,48,38,163,226,1,55,53,196,170,163,181,
+96,138,0,58,96,6,164,90,163,218,90,5,0,58,96,46,97,214,1,95,
+54,82,145,100,113,2,83,32,83,165,254,180,62,64,151,173,84,5,67,32,
+60,32,64,35,195,105,193,91,231,77,0,192,24,0,85,73,207,1,95,55,
+73,2,224,41,14,130,40,160,41,224,43,3,133,127,2,54,52,51,96,164,
+66,85,67,206,226,196,0,64,182,98,196,241,229,0,128,146,66,252,224,18,
+6,114,113,224,19,7,108,53,203,32,160,19,129,173,164,133,96,110,225,102,
+1,16,100,101,114,105,118,105,110,103,32,105,110,115,116,97,110,99,101,193,
+104,0,51,133,184,64,213,224,212,0,147,97,2,49,55,50,224,64,2,22,
+92,51,52,38,115,114,99,47,77,105,99,114,111,72,115,47,69,120,112,114,
+46,104,115,64,22,5,44,54,50,48,58,56,128,80,0,85,64,144,98,139,
+162,167,102,87,226,200,2,107,207,197,41,229,54,9,64,8,224,193,13,6,
+112,97,116,116,101,114,110,224,183,0,109,3,165,64,68,18,229,64,0,0,
+51,132,225,96,78,0,54,69,125,84,140,96,84,4,32,95,54,53,48,229,
+142,0,68,24,160,52,96,28,214,65,195,254,2,95,55,52,207,155,96,0,
+248,232,0,161,110,65,232,230,197,0,224,184,18,6,100,101,102,97,117,108,
+116,160,184,224,146,1,166,4,165,234,0,51,128,62,0,51,150,180,1,54,
+51,224,70,8,0,44,163,96,167,77,161,183,64,0,129,243,75,206,224,128,
+13,225,242,14,96,210,226,85,4,113,188,224,229,5,65,101,64,95,128,228,
+64,99,228,150,5,225,199,10,224,132,13,4,99,108,97,115,115,192,129,151,
+112,161,196,64,15,168,217,0,85,251,194,1,102,12,224,92,13,154,44,228,
+82,17,4,105,110,102,105,120,128,106,165,112,230,113,4,0,56,161,246,224,
+23,6,67,62,167,157,224,24,1,162,31,231,141,1,248,48,5,225,177,35,
+193,237,192,232,225,68,11,224,244,18,225,81,9,19,102,111,114,101,105,103,
+110,32,105,109,112,111,114,116,32,99,99,97,108,108,226,100,10,224,185,5,
+1,50,49,64,190,181,11,232,136,5,224,89,1,1,58,58,165,203,226,43,
+2,228,128,6,69,158,224,18,6,67,101,226,61,6,64,103,0,85,105,234,
+224,2,0,230,194,4,137,38,231,252,0,128,29,224,26,5,226,108,44,129,
+18,194,2,64,1,141,14,0,55,69,142,66,111,103,123,132,24,224,58,6,
+13,123,45,35,32,83,79,85,82,67,69,32,35,45,125,161,7,0,64,74,
+34,129,78,224,44,4,8,113,117,97,108,105,102,105,101,100,192,39,193,229,
+226,47,0,97,137,226,79,5,65,146,234,229,17,1,97,115,194,53,0,52,
+152,81,224,125,2,228,109,1,234,93,0,0,48,80,49,0,75,224,65,4,
+5,104,105,100,105,110,103,160,145,96,36,132,91,106,173,66,173,226,174,4,
+74,126,226,249,1,132,91,226,31,1,96,0,228,228,5,229,166,22,2,116,
+121,112,196,104,226,91,22,1,54,51,215,146,226,52,5,134,198,224,114,16,
+227,111,7,224,192,10,195,106,226,214,24,98,153,1,95,55,73,1,128,52,
+192,81,230,80,2,229,38,9,64,92,224,179,6,66,170,225,38,47,230,202,
+19,224,166,2,227,5,19,224,108,22,2,110,101,119,224,111,29,66,139,105,
+125,166,248,103,205,151,92,96,236,227,122,26,3,100,97,116,97,224,104,4,
+224,78,0,64,57,241,126,3,224,211,53,224,103,8,224,208,10,226,46,11,
+227,40,2,0,124,160,63,162,244,96,172,224,254,4,64,0,0,58,105,188,
+116,142,0,85,64,136,68,50,73,233,224,149,14,169,102,128,89,64,35,227,
+124,40,168,190,160,123,140,217,229,65,1,229,32,3,97,50,225,70,23,1,
+95,54,98,68,231,115,0,163,27,0,80,96,32,64,144,192,254,96,118,88,
+58,1,52,56,224,177,6,96,33,192,130,165,151,225,169,12,227,67,2,227,
+117,12,96,99,224,248,9,192,236,65,129,77,198,192,100,239,60,4,0,49,
+65,72,161,40,224,18,0,248,59,1,64,180,129,40,162,170,163,60,97,130,
+224,69,1,0,51,224,68,1,163,92,0,58,96,149,110,61,0,80,226,237,
+0,83,63,129,40,248,215,1,229,122,3,224,28,0,225,223,4,1,55,52,
+102,79,231,237,8,224,208,2,225,31,10,3,40,46,46,41,229,18,1,121,
+39,69,127,204,229,97,162,226,48,13,0,58,96,112,5,10,65,32,65,32,
+58,102,210,113,172,0,57,225,2,0,205,228,212,23,64,15,100,234,96,21,
+72,231,0,53,85,134,103,19,0,58,96,6,226,230,21,97,114,224,125,0,
+227,92,11,226,207,9,229,200,22,225,44,4,224,66,0,247,125,1,224,39,
+12,192,0,0,58,106,55,224,179,9,224,101,3,97,229,1,95,54,159,163,
+225,120,5,1,61,62,161,118,64,72,131,227,228,162,7,192,7,182,41,76,
+15,98,100,128,209,99,28,160,222,140,57,166,241,160,172,209,105,68,158,113,
+105,3,51,55,32,58,96,144,128,13,104,7,92,201,99,243,130,249,0,89,
+248,106,0,102,94,79,227,128,97,67,125,234,35,0,176,125,96,95,174,223,
+96,17,149,40,132,31,64,1,1,83,32,91,66,64,0,224,68,1,224,61,
+0,137,138,224,46,3,238,0,1,193,102,255,96,2,66,81,128,5,102,9,
+160,81,239,90,2,107,186,128,10,249,129,8,165,80,128,102,119,154,228,208,
+3,192,11,96,74,160,208,196,232,160,96,160,58,128,35,1,95,54,112,86,
+64,20,64,64,239,219,2,153,64,229,20,5,128,90,225,26,5,243,186,3,
+224,139,5,160,31,229,92,0,96,63,160,14,98,64,132,59,129,219,218,123,
+224,181,47,224,166,6,96,163,224,160,10,224,133,13,224,125,2,226,0,0,
+226,21,0,193,13,218,236,192,98,156,66,250,84,4,0,64,99,179,160,151,
+160,24,80,158,99,173,0,55,68,33,64,110,0,95,87,246,130,24,96,10,
+128,48,214,3,192,227,250,61,5,227,107,1,1,91,93,234,143,0,187,124,
+224,105,4,224,92,2,174,0,1,95,54,68,105,1,95,54,96,160,96,0,
+148,18,131,201,100,93,120,86,84,103,115,179,0,54,182,255,96,41,192,4,
+96,153,66,110,161,65,96,159,211,151,161,105,195,35,161,182,129,51,161,56,
+66,233,169,243,97,137,198,31,224,26,5,98,41,224,26,12,140,194,64,79,
+224,22,5,147,243,234,65,5,64,232,68,198,0,51,96,51,143,211,238,233,
+23,0,95,201,2,238,150,5,129,203,224,95,6,64,192,2,85,32,75,229,
+143,4,232,28,0,237,230,0,186,91,226,128,5,128,48,168,189,229,239,6,
+241,69,2,100,247,192,128,129,230,225,15,7,245,59,0,64,26,224,159,5,
+96,187,96,126,224,31,0,96,30,231,194,17,224,26,8,0,49,66,28,232,
+83,1,224,203,0,227,78,6,245,214,3,201,49,227,95,7,225,99,1,0,
+45,198,38,197,74,96,86,193,69,65,225,231,223,11,74,136,232,224,6,226,
+60,13,98,206,225,44,12,0,49,169,145,242,119,7,65,170,98,30,224,211,
+1,192,12,114,176,97,134,225,25,6,248,97,1,231,68,4,160,202,164,57,
+234,81,19,128,31,98,207,225,109,1,225,137,1,194,31,226,28,6,237,152,
+8,194,161,224,67,1,255,105,2,193,176,232,113,4,232,12,2,225,40,16,
+100,190,132,250,226,85,6,104,19,226,8,16,224,232,17,226,8,11,241,21,
+10,245,109,15,1,105,102,163,151,0,54,73,97,226,79,14,224,152,5,230,
+147,7,224,21,0,0,54,76,208,226,181,5,181,67,0,79,163,28,224,127,
+17,226,236,6,224,48,17,2,116,104,101,181,89,199,13,224,43,17,2,101,
+108,115,174,74,226,222,4,64,0,64,100,229,67,17,194,234,224,25,9,194,
+118,227,31,10,96,252,228,49,12,118,165,225,219,18,225,213,1,226,243,2,
+226,10,25,225,252,0,224,51,0,227,128,7,67,100,234,215,1,151,219,115,
+112,238,10,5,0,111,97,36,235,252,21,0,46,160,37,163,66,2,52,52,
+32,112,74,96,133,216,199,1,95,54,103,35,96,0,70,32,91,230,64,0,
+227,11,12,100,51,225,46,12,98,178,227,97,0,160,246,229,238,17,96,15,
+101,242,229,243,9,237,186,2,229,243,3,160,76,225,24,3,160,7,224,245,
+6,1,108,101,179,155,224,243,18,239,142,0,226,226,15,226,175,0,224,38,
+0,226,123,19,96,216,196,34,224,25,4,228,60,17,228,59,1,228,40,5,
+121,226,229,50,4,224,162,13,1,99,97,227,40,0,224,25,6,0,111,195,
+159,225,0,18,190,7,97,244,0,75,133,207,254,14,1,128,22,230,3,7,
+229,241,3,254,108,2,1,55,50,64,154,244,190,10,228,138,3,64,0,203,
+43,202,69,131,39,227,143,5,192,183,129,229,231,199,10,225,52,2,64,33,
+4,64,95,53,51,55,137,133,97,61,0,55,105,167,106,90,64,9,1,95,
+55,237,211,4,64,34,73,175,239,118,1,0,85,72,215,138,159,128,32,64,
+89,192,114,96,128,227,158,1,128,3,193,252,139,111,0,95,202,39,193,65,
+163,29,3,95,55,51,53,171,0,248,68,14,2,115,116,36,129,30,202,31,
+129,104,160,69,235,135,1,234,130,7,245,184,2,225,67,0,228,107,4,160,
+18,163,93,97,38,1,39,32,163,72,234,158,2,65,246,94,223,128,9,129,
+203,93,140,128,9,128,17,0,58,78,69,142,185,1,95,55,111,40,75,84,
+64,22,144,25,226,184,4,0,50,112,6,2,95,52,56,111,12,0,55,73,
+72,0,58,96,52,176,107,98,119,1,52,56,145,164,160,9,64,8,0,55,
+74,146,160,24,64,49,0,51,239,116,0,0,79,161,156,96,146,79,120,239,
+9,0,96,51,96,45,143,162,3,66,32,80,32,110,5,0,85,96,116,239,
+110,1,1,80,32,130,83,0,80,96,23,143,96,129,30,163,14,161,187,129,
+30,226,31,1,193,68,167,29,162,142,230,233,3,96,141,99,159,193,108,196,
+90,195,89,230,233,1,103,168,230,206,0,0,58,67,49,143,233,248,227,10,
+224,18,6,155,52,230,206,8,230,52,13,97,29,106,194,161,204,161,48,1,
+35,57,212,26,0,54,97,116,0,54,228,253,0,0,85,172,158,224,98,6,
+64,194,224,98,6,65,158,160,45,64,104,249,238,10,224,22,14,224,209,7,
+109,251,224,18,5,64,176,247,166,12,204,121,128,75,100,146,128,226,98,69,
+96,28,1,54,55,84,95,108,243,160,133,224,36,0,108,124,96,36,1,55,
+50,212,246,225,56,7,202,237,128,49,189,202,224,12,1,192,62,192,94,224,
+43,6,237,25,8,0,58,101,64,66,241,91,241,101,194,123,28,66,231,146,
+37,0,53,84,75,64,18,0,55,192,150,2,95,49,50,96,194,64,11,0,
+58,96,6,192,63,2,95,49,51,96,125,131,81,132,76,128,43,64,17,0,
+58,96,6,9,10,65,32,102,115,104,111,119,32,58,96,32,224,58,0,2,
+54,55,51,92,157,1,54,55,72,161,0,55,132,27,192,117,117,118,160,73,
+64,11,0,58,96,6,96,58,0,48,64,112,92,196,3,95,55,48,57,64,
+31,64,56,2,95,55,49,96,43,96,11,2,49,56,49,224,11,2,90,246,
+160,35,104,134,1,49,57,224,41,0,0,73,67,115,64,9,99,115,143,8,
+165,121,67,152,3,95,50,48,55,230,45,2,21,73,110,116,101,103,101,114,
+58,32,100,105,118,105,115,105,111,110,32,98,121,32,48,230,200,0,245,39,
+0,135,130,64,79,0,85,125,125,0,55,65,128,0,55,133,103,128,215,224,
+17,7,128,64,248,29,7,64,9,236,156,1,113,78,130,25,224,16,2,138,
+222,162,171,99,253,229,95,0,70,27,3,95,55,49,50,251,252,0,105,69,
+210,137,228,49,4,1,95,55,111,222,1,95,55,205,114,208,206,145,17,0,
+55,77,114,0,85,133,139,131,160,236,59,5,139,142,118,115,144,38,128,86,
+81,205,175,188,101,193,224,119,0,65,126,102,250,99,52,1,95,55,178,22,
+160,0,0,58,97,166,1,10,65,225,128,9,5,105,110,105,116,58,32,177,
+74,129,95,193,64,246,166,5,197,131,192,88,0,58,96,9,69,179,97,39,
+64,152,2,95,53,54,98,66,69,30,0,58,96,142,119,2,227,244,0,2,
+95,53,56,69,60,193,49,98,14,128,107,100,179,96,55,65,88,84,196,114,
+31,244,51,0,98,84,64,30,166,126,135,165,148,218,98,22,239,221,7,0,
+67,96,144,0,67,69,135,193,36,230,182,3,129,213,193,209,236,209,6,194,
+7,160,98,64,70,7,95,49,51,56,32,95,49,57,232,169,2,209,244,113,
+253,82,246,192,28,97,160,242,226,0,0,67,71,200,210,238,65,30,64,0,
+2,95,54,56,167,213,135,24,97,4,0,58,98,18,99,53,96,198,201,6,
+0,67,112,188,244,7,0,64,11,64,25,224,7,0,66,139,0,54,98,248,
+1,55,48,231,252,1,64,255,1,95,55,110,197,160,6,194,66,96,26,97,
+110,0,52,97,110,0,54,64,184,1,95,55,151,190,129,20,160,49,64,28,
+0,56,198,52,96,58,68,217,96,231,67,6,0,48,140,65,163,63,169,4,
+96,12,0,89,162,76,139,57,64,5,160,33,137,91,64,69,0,55,132,108,
+134,180,227,30,0,161,122,235,57,2,65,128,97,211,227,180,0,1,95,55,
+207,128,128,95,160,163,128,220,160,12,99,165,140,210,1,95,55,135,240,166,
+241,224,197,15,64,39,64,48,192,243,225,16,3,105,104,228,96,1,96,232,
+131,130,64,142,0,53,69,107,98,15,226,183,0,244,122,1,98,232,136,15,
+131,229,204,226,224,78,3,224,13,4,0,58,100,48,101,149,224,20,0,0,
+79,107,204,137,155,64,205,227,5,0,133,126,0,75,98,60,134,6,100,82,
+0,58,97,191,168,244,72,218,196,224,226,245,1,246,22,0,2,95,54,56,
+102,211,0,54,75,220,98,154,160,133,197,194,105,173,106,125,137,47,0,58,
+68,255,96,160,0,50,97,23,107,113,121,253,0,58,96,38,202,33,97,240,
+1,95,49,65,76,128,146,164,15,224,27,6,96,188,0,48,184,205,2,49,
+48,52,68,20,1,55,48,104,176,65,88,65,27,0,56,96,34,167,97,0,
+52,76,142,97,161,194,184,0,50,96,11,100,252,66,79,88,31,64,1,1,
+95,54,104,39,96,67,131,25,2,95,55,48,96,234,224,13,0,65,225,100,
+90,64,111,225,114,8,189,243,0,58,96,39,224,29,2,0,52,224,29,6,
+199,127,230,129,6,0,58,96,102,97,146,0,75,226,62,5,0,58,96,167,
+106,238,100,114,231,28,1,230,197,10,229,133,1,231,77,11,224,48,20,103,
+53,132,59,249,79,1,198,243,228,238,3,184,222,64,13,234,244,7,96,97,
+226,30,1,100,47,65,87,132,192,248,48,2,160,62,160,110,229,66,0,224,
+116,2,227,194,0,229,123,2,217,67,224,117,21,224,115,5,224,113,5,224,
+51,16,0,55,236,244,0,224,0,0,0,58,98,44,236,12,0,0,57,73,
+48,0,56,167,93,96,16,109,189,66,123,66,233,70,176,66,62,99,195,2,
+95,54,57,99,221,0,48,160,15,164,24,64,15,224,157,5,0,58,96,119,
+108,253,1,57,55,104,46,248,237,0,2,49,56,56,128,10,3,95,49,55,
+55,172,162,230,240,5,224,34,13,1,73,32,64,2,0,83,166,113,96,168,
+192,139,100,194,192,96,160,46,131,236,69,131,129,100,192,56,197,102,102,72,
+160,10,224,60,1,224,137,6,160,119,166,234,2,54,57,56,231,192,5,225,
+16,4,211,128,225,251,0,160,75,65,94,96,44,161,234,224,70,0,2,50,
+54,55,224,71,0,64,72,74,114,177,242,224,42,7,224,113,2,224,41,6,
+0,58,96,8,163,95,1,75,52,238,196,0,0,58,64,37,129,228,168,29,
+232,102,0,162,50,167,75,0,82,224,22,4,225,35,0,0,58,96,122,162,
+36,224,1,1,153,251,226,211,0,224,20,5,224,17,8,224,14,5,224,11,
+2,192,8,130,246,96,109,132,123,0,85,128,195,224,197,2,0,54,224,197,
+5,64,164,240,184,2,192,18,1,66,39,224,21,3,167,6,224,29,0,162,
+217,240,0,1,64,88,132,176,235,141,10,5,102,111,108,100,108,49,182,102,
+81,98,64,45,132,196,233,32,1,113,43,104,117,235,1,6,233,109,1,234,
+65,1,211,60,136,23,128,135,233,78,5,201,20,134,20,129,250,101,197,233,
+86,3,233,57,0,164,67,226,182,2,233,96,3,128,222,133,91,224,79,0,
+71,38,128,169,204,41,160,6,0,53,96,222,132,16,98,1,198,86,70,228,
+102,92,101,162,0,73,197,19,0,83,75,114,64,212,229,95,1,138,111,230,
+24,2,231,217,7,96,144,203,8,168,206,229,37,0,252,230,0,131,51,197,
+66,234,206,10,164,221,192,86,196,181,169,123,133,220,128,8,1,95,54,96,
+134,162,25,135,151,128,64,71,216,224,64,2,129,80,224,25,3,131,10,64,
+14,193,108,237,48,2,224,174,12,224,124,7,106,137,227,104,1,224,127,17,
+224,101,3,224,130,8,224,156,5,225,91,4,192,247,97,102,0,50,226,185,
+2,12,92,51,52,38,108,105,98,47,68,97,116,97,47,174,84,2,46,104,
+115,64,22,4,44,49,50,56,58,130,212,0,58,97,225,101,155,0,56,68,
+129,69,178,0,58,96,109,162,225,97,124,128,222,244,15,3,96,5,65,92,
+226,241,0,229,168,7,197,50,225,228,0,64,57,227,177,4,195,216,192,7,
+72,230,73,187,66,227,224,202,33,3,54,52,58,54,249,134,4,227,92,1,
+139,38,131,248,227,108,1,174,98,227,93,2,76,114,174,58,228,54,0,163,
+38,0,54,83,197,230,201,0,228,97,0,224,80,11,235,202,2,224,80,2,
+97,153,96,69,97,108,132,217,64,65,97,86,68,51,85,21,238,2,1,142,
+56,227,235,11,228,36,13,160,47,235,108,4,224,61,11,103,9,228,39,4,
+224,79,11,228,85,18,231,9,3,0,58,96,208,164,36,207,34,233,119,19,
+168,137,96,96,74,8,107,82,181,15,245,0,0,2,54,50,56,229,67,10,
+0,64,174,18,0,58,96,57,130,169,106,240,130,169,170,54,228,30,5,193,
+68,229,147,6,161,199,229,149,8,226,33,15,135,118,1,56,50,193,204,230,
+83,1,99,173,118,140,201,245,226,121,46,224,91,0,226,121,10,224,95,3,
+226,121,32,224,80,1,161,110,102,230,0,58,96,24,226,121,1,226,100,38,
+132,119,226,11,2,224,10,1,0,58,96,97,1,10,65,67,240,0,58,96,
+173,108,146,0,56,70,92,65,215,0,51,100,86,140,115,143,147,0,54,78,
+10,2,95,54,55,140,208,78,244,0,53,89,56,160,34,86,57,96,10,0,
+58,96,6,202,153,0,50,83,211,160,65,0,58,96,53,102,63,224,16,0,
+227,87,1,160,42,192,27,64,28,0,54,160,45,134,102,226,40,3,96,19,
+129,112,64,19,112,219,165,176,1,95,49,119,199,160,35,232,108,1,143,4,
+229,215,1,96,97,248,6,0,137,243,173,206,161,106,65,174,0,50,116,213,
+227,237,3,225,212,0,98,101,110,51,97,125,226,173,0,230,108,0,0,89,
+160,36,208,46,226,98,2,192,148,96,170,197,71,208,38,144,105,64,14,251,
+176,0,209,50,97,38,113,104,224,143,3,194,96,236,62,0,96,148,224,146,
+5,65,253,233,34,5,6,108,116,87,46,99,109,112,219,130,177,192,184,199,
+179,126,96,5,0,58,97,49,104,65,2,95,54,55,98,221,69,239,0,58,
+85,161,129,160,3,83,32,95,51,105,15,65,17,70,132,64,221,64,212,64,
+140,68,50,96,7,0,54,226,248,1,204,20,131,36,1,95,51,78,69,0,
+58,96,85,243,134,0,192,240,231,149,1,164,33,97,243,64,255,195,48,224,
+117,39,198,225,232,186,6,199,35,97,159,235,244,3,159,153,128,37,129,95,
+87,63,0,52,169,22,65,217,128,171,2,95,54,50,224,131,26,224,73,10,
+160,144,224,95,13,162,67,171,1,224,107,39,160,75,203,51,0,58,97,191,
+97,202,100,140,81,92,64,114,138,13,168,234,146,38,110,20,93,101,225,11,
+5,216,135,235,69,1,113,87,131,3,81,209,223,73,145,110,2,49,50,56,
+226,114,2,2,32,37,32,162,110,224,45,5,96,48,119,220,66,91,97,14,
+64,15,118,6,128,15,0,58,96,6,183,136,232,137,2,85,110,229,86,2,
+161,13,122,32,193,5,1,95,53,87,252,91,192,120,128,0,54,231,42,0,
+92,162,77,147,96,16,0,58,96,51,130,125,131,99,195,212,125,4,1,64,
+35,123,177,224,28,15,179,169,224,18,3,130,219,0,58,96,93,246,174,11,
+2,108,97,115,246,174,1,132,129,1,85,32,96,209,0,95,215,68,0,58,
+96,8,109,81,131,226,126,194,0,64,187,162,123,148,254,178,15,1,58,54,
+65,186,251,163,11,71,207,250,190,6,107,102,195,0,251,201,1,90,43,96,
+117,125,157,0,54,235,167,0,225,247,2,64,142,200,114,192,12,224,25,1,
+224,21,0,1,95,55,77,129,223,123,65,186,164,241,128,24,255,120,7,1,
+46,46,196,148,128,30,186,183,224,137,5,224,117,81,224,110,14,224,97,21,
+224,189,20,225,112,7,105,211,225,112,5,64,197,123,156,224,115,1,224,102,
+30,224,173,19,120,135,64,70,64,8,225,15,5,0,49,91,50,230,120,0,
+158,1,96,7,71,212,225,50,7,190,26,230,76,2,92,220,2,54,54,52,
+94,254,160,228,2,58,54,54,207,142,224,140,5,224,15,1,159,210,128,154,
+224,103,12,181,152,96,76,134,115,225,4,1,64,5,192,49,72,229,160,153,
+192,17,0,51,160,17,0,58,96,117,99,113,1,58,54,69,37,106,122,72,
+159,149,217,127,18,208,52,0,54,183,41,130,76,67,82,111,55,119,204,102,
+39,0,58,64,57,128,46,0,89,136,113,231,210,0,165,175,136,54,67,253,
+0,50,93,82,232,126,0,166,84,64,5,96,12,242,82,0,244,78,2,227,
+133,8,224,25,1,224,27,5,133,96,226,48,4,65,117,3,85,32,75,51,
+228,87,7,9,115,101,112,49,32,65,98,111,118,101,194,31,224,37,16,4,
+66,101,115,105,100,224,38,0,224,124,1,228,11,12,1,95,53,138,146,224,
+37,0,70,51,100,184,135,70,102,160,230,195,1,0,53,127,178,161,5,96,
+189,232,168,1,64,88,83,16,82,47,225,47,0,66,19,65,119,1,95,54,
+152,229,128,0,129,93,225,56,2,224,97,0,225,31,4,194,151,199,198,167,
+215,192,207,224,42,3,175,118,224,195,2,224,79,0,89,130,0,53,141,242,
+161,189,128,69,167,23,64,11,244,87,6,224,71,19,239,249,1,224,71,6,
+97,1,2,95,54,53,96,32,64,19,249,111,7,224,90,0,232,161,12,228,
+66,1,128,22,135,187,64,1,1,95,53,81,160,225,102,41,224,195,4,96,
+144,0,53,83,89,71,43,224,232,1,111,227,2,64,58,54,67,33,195,15,
+161,157,233,65,11,222,107,225,189,1,225,192,20,209,12,128,26,198,100,64,
+191,1,61,61,224,30,8,225,109,0,223,17,226,96,0,224,66,18,192,201,
+224,66,2,129,39,71,211,1,54,53,241,220,1,0,53,67,89,219,144,150,
+166,193,52,96,77,64,180,1,95,54,105,180,196,209,193,199,0,53,86,72,
+129,105,226,206,12,132,95,65,68,136,20,231,156,8,64,77,227,250,49,7,
+111,110,101,76,105,110,101,114,227,254,25,224,41,0,228,2,6,227,249,20,
+0,85,104,155,97,30,64,0,224,167,6,103,134,227,106,9,136,186,131,86,
+224,60,0,224,20,0,78,69,224,81,0,224,61,6,64,115,122,112,196,120,
+64,137,222,154,0,58,96,53,218,120,235,35,5,100,192,225,244,3,164,140,
+224,63,1,0,58,97,239,98,197,0,85,193,223,0,53,129,208,0,53,64,
+41,2,58,54,53,134,202,130,180,110,118,224,90,0,98,217,128,169,230,9,
+5,174,135,227,127,2,224,19,0,128,17,167,134,64,5,102,182,166,193,199,
+65,243,87,7,160,152,98,63,249,161,1,0,53,99,11,0,58,96,168,192,
+193,233,148,5,64,100,231,245,1,160,17,232,61,6,1,32,124,129,243,231,
+249,41,160,174,0,58,96,136,109,253,0,80,166,230,232,110,7,106,166,224,
+119,6,1,60,45,233,28,5,160,6,97,128,0,49,224,164,7,2,108,101,
+116,224,165,1,1,52,52,126,58,128,207,64,88,128,152,0,52,167,109,0,
+58,96,162,176,92,0,52,72,47,99,135,0,58,64,86,225,201,1,97,237,
+246,244,0,160,181,0,52,151,164,160,180,224,129,4,3,119,104,101,114,195,
+29,224,132,26,96,134,247,35,0,1,32,80,133,149,0,55,64,130,65,14,
+104,107,225,42,22,2,79,32,35,72,160,234,169,5,129,216,224,71,0,224,
+18,1,225,217,10,5,100,101,102,97,117,108,161,56,160,37,96,159,96,8,
+122,138,211,70,64,174,64,26,98,70,253,155,1,133,87,121,214,0,58,96,
+49,169,211,1,80,32,136,163,0,80,65,86,64,132,73,89,64,160,0,58,
+96,190,224,37,1,98,161,128,37,209,96,198,83,133,20,0,58,65,72,225,
+172,5,137,155,65,138,160,71,158,33,209,149,232,96,6,229,213,7,209,40,
+164,9,232,143,7,224,46,7,2,95,54,49,132,155,64,12,64,5,0,58,
+96,133,226,205,19,97,61,0,48,227,40,9,0,54,227,40,6,0,51,132,
+160,225,203,17,224,72,38,235,246,14,1,58,54,79,211,213,137,115,177,107,
+96,70,113,2,50,50,54,97,88,111,78,134,141,170,232,64,54,202,206,252,
+74,0,251,150,0,212,93,226,30,0,242,83,1,103,208,176,153,110,233,141,
+118,96,0,0,58,64,198,129,229,228,114,20,5,102,111,114,97,108,108,228,
+118,5,192,235,133,0,225,11,8,2,58,54,51,231,40,0,229,137,0,133,
+228,193,226,225,218,6,64,165,208,204,137,1,1,95,54,75,150,103,171,161,
+81,96,201,108,143,0,50,237,218,18,96,46,224,194,6,1,58,58,196,189,
+1,54,51,135,213,0,58,96,187,131,8,2,56,32,58,96,22,189,200,208,
+15,1,51,56,65,42,2,95,52,54,140,167,0,53,227,124,2,64,153,225,
+195,27,116,187,225,195,1,65,57,251,208,1,193,164,225,9,0,96,153,108,
+220,167,182,224,35,1,2,95,54,49,77,68,64,85,64,13,160,116,64,113,
+96,211,137,102,0,58,96,8,109,65,0,75,103,242,129,56,224,9,0,1,
+58,54,81,11,160,229,225,74,0,103,62,0,52,208,245,64,40,240,184,0,
+1,95,52,72,239,160,41,65,7,96,124,128,54,3,57,32,95,52,106,108,
+224,60,0,64,61,130,164,2,75,32,89,177,239,97,49,196,153,129,252,129,
+219,117,12,103,141,129,2,122,221,129,119,0,50,114,62,0,49,85,40,0,
+49,68,229,194,211,186,174,97,246,241,179,4,98,119,170,231,162,142,120,216,
+2,51,56,49,241,213,0,96,34,128,0,0,58,64,188,131,75,255,157,8,
+171,125,169,32,147,133,160,51,130,208,114,179,64,230,5,95,49,51,49,32,
+35,79,57,147,104,3,49,32,64,35,107,197,0,58,96,219,163,170,169,242,
+64,20,0,54,224,20,1,64,38,128,20,255,7,1,114,138,128,20,239,64,
+19,68,6,164,110,192,17,196,169,0,58,99,22,165,156,0,49,73,161,167,
+73,64,68,213,238,225,53,2,79,168,121,179,224,20,3,94,140,224,20,8,
+116,65,224,20,7,69,242,224,20,9,129,15,224,20,5,109,48,224,83,8,
+65,4,224,20,8,224,125,11,97,186,224,20,7,98,242,224,20,8,224,125,
+11,99,240,224,20,8,65,151,224,251,8,225,16,11,68,200,224,146,9,224,
+167,12,224,83,11,113,173,224,21,10,224,148,11,146,60,224,20,6,1,56,
+55,108,122,224,22,8,142,134,224,22,8,139,49,224,22,10,128,177,227,55,
+5,2,56,55,48,64,45,198,107,185,106,224,7,181,2,58,54,50,132,194,
+79,65,124,233,108,59,0,58,100,232,227,28,4,128,45,70,247,232,185,93,
+164,10,232,185,0,64,133,160,121,100,0,96,196,96,62,76,155,73,198,0,
+58,96,52,230,104,8,87,252,230,104,1,70,117,232,44,7,74,226,64,54,
+64,250,0,58,96,21,230,118,18,101,137,230,118,21,66,152,230,118,1,64,
+127,96,109,143,67,0,58,96,8,224,201,3,136,21,224,201,6,202,33,225,
+56,0,243,149,1,225,60,1,161,61,225,63,9,224,24,0,224,168,1,192,
+19,97,83,192,85,96,71,129,101,225,103,0,132,254,0,65,65,9,201,123,
+0,48,91,133,0,48,101,29,70,188,128,19,0,56,90,216,1,48,32,65,
+11,90,150,113,216,154,121,135,103,224,20,6,134,110,0,58,96,70,180,182,
+0,48,129,210,102,64,1,95,54,67,92,2,95,54,48,139,61,65,221,0,
+75,64,111,0,48,216,26,0,65,96,13,129,169,103,41,0,58,96,43,97,
+36,136,218,226,139,1,207,32,124,95,249,194,3,142,222,82,151,0,53,158,
+185,128,57,96,16,99,243,177,0,96,37,121,111,67,253,143,77,2,95,52,
+49,243,18,0,0,58,96,173,194,37,64,87,240,185,10,192,138,2,95,53,
+57,112,0,160,89,226,84,0,232,201,5,224,47,2,2,54,48,50,224,47,
+3,0,58,96,9,135,77,227,68,0,242,106,2,129,215,241,96,8,239,190,
+0,224,39,18,131,68,188,34,244,77,18,130,162,226,65,3,64,8,210,151,
+224,7,5,224,190,7,224,54,4,224,145,0,227,252,2,192,13,254,9,2,
+136,246,101,123,1,53,57,246,104,0,224,89,6,160,165,225,220,0,1,95,
+54,119,84,128,37,129,194,137,61,160,15,224,51,0,224,219,5,245,247,7,
+192,171,161,17,226,76,1,245,237,0,224,88,7,224,104,11,225,119,1,160,
+226,242,66,5,224,94,0,160,32,224,145,4,224,222,1,212,244,130,166,128,
+224,245,187,2,224,118,7,224,50,7,133,210,160,130,229,174,0,227,37,3,
+160,217,228,63,7,224,225,9,128,88,148,41,160,0,164,138,224,193,11,128,
+36,224,142,3,160,189,213,187,224,188,10,132,134,0,58,96,16,234,110,1,
+234,243,1,165,3,225,85,15,227,182,2,227,93,5,192,24,0,85,202,10,
+224,33,8,96,145,243,118,3,104,17,150,220,1,79,32,125,18,236,203,0,
+64,255,99,247,2,95,55,52,100,131,165,15,1,52,57,97,68,64,143,157,
+129,0,64,65,110,1,95,49,92,188,130,194,0,58,96,6,227,198,3,192,
+193,246,89,6,227,114,3,225,209,5,228,79,3,225,66,1,160,14,64,0,
+227,200,1,225,221,12,163,238,225,0,0,97,189,151,57,97,4,195,90,128,
+54,227,231,20,224,67,5,99,27,102,237,250,83,1,228,1,3,64,252,165,
+236,130,124,225,193,1,250,85,12,98,239,132,22,224,210,0,250,80,86,0,
+97,86,76,3,78,101,115,116,246,86,25,224,42,1,250,90,58,225,178,13,
+250,90,10,225,238,1,229,141,2,224,24,12,64,0,225,54,24,163,118,224,
+126,1,224,39,1,228,140,10,226,18,7,197,170,250,72,19,224,151,7,250,
+84,7,224,82,2,132,223,131,235,224,74,0,81,141,0,39,228,195,0,130,
+47,134,41,193,48,225,54,2,225,55,0,233,10,10,160,151,224,138,2,224,
+205,4,131,3,163,27,128,139,250,170,12,230,187,0,225,42,15,233,103,9,
+192,148,228,246,2,225,179,16,192,52,0,95,154,149,96,0,111,165,0,58,
+96,36,197,18,227,64,29,192,153,247,207,9,224,23,1,225,200,1,225,237,
+12,229,72,14,224,167,0,129,179,3,64,95,55,53,225,212,2,229,91,27,
+96,125,225,76,0,192,72,176,39,133,59,112,35,0,52,74,187,196,77,96,
+118,161,70,193,33,217,91,65,71,1,55,57,64,161,198,75,187,197,97,213,
+248,223,4,230,68,30,192,48,224,28,4,96,115,224,224,8,96,21,232,63,
+5,225,57,14,97,54,160,198,64,53,225,57,5,225,58,26,241,105,0,169,
+25,0,50,64,9,235,101,5,128,77,163,149,70,129,0,58,96,107,140,221,
+2,51,32,58,100,84,246,232,10,64,28,101,158,64,188,66,101,194,217,98,
+168,228,36,0,119,45,130,54,162,225,161,77,201,36,226,90,25,227,69,11,
+224,39,4,229,207,4,224,242,0,225,130,1,65,36,225,125,4,229,157,6,
+0,98,69,152,0,103,217,83,229,118,4,160,84,164,114,192,135,197,119,160,
+198,111,9,96,132,105,48,226,240,1,160,169,228,245,2,195,2,255,45,7,
+163,163,224,227,17,226,42,3,233,67,15,233,121,5,224,124,4,159,82,168,
+13,228,159,0,224,42,3,228,112,0,226,65,5,128,138,225,3,0,192,193,
+225,223,0,254,186,26,225,55,0,193,194,224,46,13,161,197,224,28,0,225,
+200,50,0,49,225,201,11,224,88,0,226,133,3,225,208,4,227,190,0,132,
+249,64,61,96,195,225,213,2,229,165,0,72,209,160,70,225,187,5,224,220,
+13,231,198,1,230,19,24,164,145,224,109,4,160,79,225,203,2,227,252,0,
+78,177,102,128,228,27,0,225,223,1,224,68,9,225,231,2,226,138,14,229,
+121,4,0,64,111,69,104,211,64,6,64,4,0,58,110,246,111,143,68,59,
+0,73,100,10,175,246,2,53,56,57,68,48,249,73,1,190,171,1,64,58,
+64,25,160,34,2,55,32,58,96,195,228,83,1,96,241,100,83,71,184,128,
+37,0,53,64,37,0,54,224,37,3,97,138,128,37,219,60,135,136,65,164,
+64,138,0,58,99,132,234,49,1,226,112,8,2,95,53,56,96,106,96,11,
+224,246,2,128,38,134,101,0,95,87,22,102,68,65,245,129,249,96,227,64,
+101,208,122,167,64,224,42,0,101,68,128,142,230,50,2,128,80,96,109,226,
+11,4,195,166,131,61,230,50,36,199,172,230,50,11,192,86,230,50,0,96,
+236,98,26,232,155,11,234,229,7,129,169,0,75,80,193,128,34,64,110,160,
+10,227,103,7,3,102,105,116,115,217,240,151,3,96,108,130,20,0,53,162,
+20,67,121,88,171,0,50,230,34,1,96,240,225,151,1,233,145,0,225,167,
+0,193,185,239,65,1,230,63,10,227,67,2,234,170,22,229,45,7,224,35,
+4,240,18,3,228,86,2,64,22,224,238,6,10,100,105,115,112,108,97,121,
+32,108,97,121,203,184,192,141,195,68,231,152,5,192,29,65,79,174,7,225,
+178,0,229,186,13,131,112,192,55,97,191,1,49,50,121,160,217,165,0,79,
+83,60,238,86,0,64,0,165,144,196,25,0,66,64,5,96,53,232,222,9,
+160,252,99,238,218,25,96,184,228,57,15,225,113,7,234,29,7,225,109,10,
+225,199,1,225,106,61,0,50,225,107,7,133,114,225,35,3,224,210,36,225,
+130,82,65,231,101,39,3,64,85,32,90,161,241,160,7,100,26,0,58,116,
+59,255,239,0,0,54,83,220,2,53,55,56,67,37,65,166,203,168,155,13,
+0,58,96,25,186,160,0,48,75,166,136,98,0,50,69,66,1,95,50,101,
+189,85,65,0,49,128,26,1,95,49,120,214,85,16,192,44,1,95,52,86,
+145,129,14,2,95,55,55,192,21,0,51,90,201,75,2,192,58,64,59,167,
+117,2,58,53,55,133,122,131,163,163,153,128,87,144,119,64,123,1,51,49,
+91,244,97,205,129,202,3,95,52,50,52,66,107,108,72,122,92,160,196,161,
+64,92,202,65,224,192,15,225,80,6,225,247,1,17,114,101,99,117,114,115,
+105,118,101,32,109,111,100,117,108,101,58,32,161,253,160,197,97,226,1,95,
+52,88,122,96,193,224,71,15,13,44,32,105,109,112,111,114,116,32,99,104,
+97,105,110,192,69,65,116,65,18,159,85,128,69,128,0,1,95,52,68,166,
+1,58,53,66,37,113,148,3,50,53,32,75,189,191,98,33,192,186,237,130,
+3,0,51,122,26,128,0,0,58,96,252,166,165,65,129,1,51,55,65,148,
+2,51,57,57,75,110,129,93,232,201,0,98,113,131,176,224,42,0,225,41,
+2,64,52,128,173,0,52,118,218,0,53,108,217,227,90,0,165,20,96,65,
+133,24,128,73,90,235,64,51,1,57,51,222,50,2,95,52,57,88,208,181,
+7,225,121,21,0,77,97,111,9,32,110,111,116,32,102,111,117,110,100,225,
+121,0,96,172,161,120,1,49,49,64,91,92,231,225,126,21,15,92,49,48,
+38,115,101,97,114,99,104,32,112,97,116,104,61,128,74,125,211,64,71,98,
+123,0,51,64,12,126,56,64,4,190,55,1,95,52,87,154,224,91,24,6,
+112,97,99,107,97,103,101,224,92,3,224,83,18,225,63,0,160,207,128,1,
+228,210,1,161,226,225,140,3,225,137,4,1,95,53,123,190,96,0,98,135,
+112,161,198,123,99,89,161,194,224,31,1,80,126,0,54,164,142,169,160,226,
+191,0,166,250,132,0,193,95,231,154,6,128,5,104,119,3,95,52,48,51,
+64,44,167,242,224,178,0,226,101,2,84,81,224,157,7,167,89,215,21,1,
+95,52,91,152,227,142,38,193,103,3,100,111,101,115,98,26,6,99,111,110,
+116,97,105,110,163,157,226,34,2,192,218,229,45,12,245,7,1,227,116,4,
+224,198,8,227,44,3,224,230,1,68,166,225,95,0,132,111,0,66,238,80,
+0,132,23,99,143,0,80,101,77,134,132,112,6,237,90,5,128,0,65,107,
+0,52,90,73,1,95,52,90,175,1,95,53,128,88,1,58,53,65,66,1,
+10,65,230,130,2,2,46,116,120,78,9,0,58,96,33,104,210,3,95,53,
+55,49,96,50,132,42,136,233,3,95,53,55,48,64,233,67,168,0,51,95,
+108,128,5,0,58,96,37,164,15,65,138,106,177,64,142,224,100,4,161,96,
+73,69,0,58,97,225,234,90,6,1,53,56,234,90,3,67,237,128,106,197,
+119,133,100,198,76,224,245,4,236,107,0,128,49,0,58,96,33,165,217,226,
+181,5,165,91,164,63,0,50,69,202,0,51,98,109,100,85,99,248,0,51,
+70,32,70,124,64,7,247,235,1,227,36,2,194,86,0,53,134,80,226,81,
+15,7,76,111,97,100,105,110,103,32,194,89,245,1,0,229,11,4,227,126,
+5,1,51,53,67,191,227,109,9,228,246,4,224,182,2,65,227,1,51,56,
+70,220,98,242,1,95,53,64,34,1,95,50,97,71,162,241,227,1,32,0,
+80,160,167,29,99,111,109,112,105,108,101,32,118,101,114,115,105,111,110,32,
+109,105,115,109,97,116,99,104,58,32,102,105,108,101,164,131,171,101,196,226,
+230,156,17,160,253,160,54,229,95,1,128,169,224,56,18,160,134,0,114,128,
+57,224,211,0,224,215,4,0,52,103,211,3,64,95,53,54,132,255,0,58,
+100,136,222,19,65,50,135,173,133,209,135,173,224,24,3,0,52,128,132,128,
+24,71,241,192,47,127,205,128,22,162,50,1,53,53,67,73,0,53,66,240,
+64,6,167,240,64,207,95,54,100,227,115,155,0,52,69,138,1,95,53,168,
+25,0,51,116,186,230,13,0,1,95,53,72,185,1,95,53,200,131,229,48,
+5,98,224,67,236,2,95,53,54,66,6,0,58,96,214,157,202,0,51,105,
+91,0,58,96,24,128,17,0,52,201,119,0,58,96,78,192,38,0,90,233,
+142,0,0,58,96,108,3,10,65,32,90,70,0,0,58,96,146,192,37,73,
+186,0,58,96,197,190,41,1,75,52,224,76,0,131,184,138,249,224,5,1,
+66,104,96,245,193,15,0,51,100,32,107,110,160,6,224,25,6,99,29,128,
+6,224,26,7,64,254,160,6,224,26,1,90,4,0,53,65,46,1,95,53,
+104,109,160,6,0,58,97,121,128,166,0,50,160,184,64,24,100,62,170,252,
+0,66,243,92,1,64,1,235,54,1,68,142,165,55,132,104,129,106,1,53,
+51,66,47,101,203,65,189,98,75,0,53,77,213,3,95,52,52,52,151,64,
+230,79,0,244,110,9,96,67,139,49,142,249,224,43,27,134,166,129,79,148,
+154,138,86,228,145,5,0,52,232,209,17,227,43,17,17,77,117,108,116,105,
+112,108,101,32,105,110,115,116,97,110,99,101,115,234,5,2,0,52,80,187,
+224,75,5,224,0,4,2,95,52,52,137,218,1,95,53,95,187,1,53,53,
+204,60,0,58,97,140,193,101,97,84,96,4,224,14,6,1,95,53,91,189,
+128,178,192,55,130,181,2,75,32,89,97,129,129,153,128,249,237,37,6,98,
+0,224,25,12,135,26,129,82,239,239,1,98,55,176,17,97,86,160,140,224,
+37,22,246,10,1,160,0,224,49,6,224,48,8,0,90,192,244,224,38,23,
+160,89,0,53,233,52,0,96,0,239,130,18,229,152,1,224,90,4,64,22,
+248,151,2,226,94,0,98,28,128,17,224,49,19,160,32,105,231,211,220,192,
+49,128,28,152,57,243,217,1,225,64,19,100,226,225,63,9,173,6,160,0,
+0,58,65,247,65,230,157,213,131,49,241,220,14,224,25,12,98,117,129,38,
+224,25,6,96,120,192,25,238,176,5,96,195,224,184,16,96,30,224,185,10,
+135,28,224,244,2,129,86,225,83,8,103,130,225,133,7,128,44,225,82,0,
+161,72,224,88,5,162,6,0,52,226,97,1,224,164,17,100,218,224,163,20,
+225,21,13,99,151,225,21,12,167,219,224,111,14,101,81,225,19,26,224,58,
+10,107,157,224,170,21,224,59,16,100,194,224,59,21,227,249,14,224,231,3,
+224,25,4,98,126,225,1,12,164,44,224,138,14,228,15,14,0,49,237,43,
+1,224,58,16,169,225,228,74,8,0,52,76,166,0,52,252,150,0,224,65,
+18,103,31,224,65,10,106,60,225,6,0,226,234,10,224,210,20,227,253,3,
+224,151,4,253,41,2,227,221,37,229,29,2,64,31,69,212,132,214,0,58,
+96,6,163,232,1,95,53,64,4,160,193,136,226,96,17,106,131,160,17,0,
+58,96,219,224,48,0,0,53,73,21,1,53,53,108,72,64,32,76,20,3,
+47,61,32,58,96,18,64,12,0,61,96,12,210,45,131,105,96,184,1,95,
+53,102,154,128,6,0,58,64,103,64,34,2,73,32,58,96,16,224,145,1,
+80,230,0,53,73,118,0,58,96,255,208,153,157,37,128,31,0,58,96,31,
+232,50,4,192,6,227,217,13,0,53,108,122,192,13,1,49,53,104,32,129,
+33,0,58,96,81,228,249,0,108,195,114,158,86,58,193,89,64,15,64,9,
+214,80,161,81,96,85,0,58,96,6,137,99,64,67,65,161,64,143,161,169,
+168,81,224,151,0,96,8,165,225,197,198,96,150,224,7,2,104,31,69,144,
+98,154,96,98,225,131,1,0,75,64,193,96,134,192,133,64,51,0,58,96,
+6,203,43,244,84,1,173,145,105,37,139,221,0,50,83,177,2,95,53,51,
+101,177,2,95,53,52,64,129,0,58,72,45,128,61,0,89,128,166,237,175,
+0,198,244,96,82,211,25,192,216,96,196,1,53,51,65,35,225,164,2,193,
+87,217,70,224,82,8,176,130,240,80,0,204,127,128,94,1,64,58,96,81,
+161,248,0,89,225,45,0,224,63,1,247,102,0,103,149,235,119,2,164,96,
+224,79,5,103,35,0,58,96,240,224,142,3,0,83,143,137,192,202,64,33,
+226,110,1,238,248,0,74,90,224,53,1,224,184,1,64,63,160,188,65,2,
+206,237,1,95,52,76,108,192,6,0,64,160,158,160,81,97,32,173,244,202,
+162,138,163,98,155,169,186,0,58,75,59,64,115,107,33,140,39,75,91,171,
+218,236,38,0,75,138,96,19,236,35,0,1,58,53,75,184,235,237,1,224,
+160,25,79,168,75,196,97,211,171,61,64,150,140,253,224,148,1,0,58,96,
+37,98,128,3,52,52,32,95,99,192,64,33,96,127,0,58,96,200,244,124,
+3,129,175,107,183,244,107,0,0,58,109,134,224,37,7,64,35,128,45,97,
+42,244,153,1,0,58,109,229,193,5,64,226,205,8,64,26,129,148,141,72,
+0,52,160,2,224,31,0,64,32,163,210,2,53,50,51,64,158,129,61,11,
+94,71,69,84,84,73,77,69,77,73,76,76,68,118,78,109,129,44,162,72,
+130,82,248,33,6,1,95,52,156,110,128,14,221,91,128,179,246,176,0,65,
+40,0,49,139,255,228,244,0,226,181,0,226,175,3,224,49,2,98,162,96,
+53,210,131,2,79,32,35,75,211,128,198,247,33,9,97,9,0,95,178,39,
+215,186,160,169,247,103,15,98,168,146,115,130,134,236,154,52,0,70,80,72,
+245,104,8,244,190,3,180,185,224,120,0,99,149,247,215,1,0,53,133,62,
+171,81,225,17,7,65,99,195,198,129,143,227,56,0,98,156,142,77,144,252,
+212,218,96,33,177,93,248,37,3,80,146,162,216,179,137,128,100,128,14,111,
+177,97,153,98,45,197,57,224,170,1,3,95,53,49,50,242,237,2,7,109,
+104,115,99,112,112,46,104,220,52,64,42,206,6,226,20,8,224,138,0,64,
+132,0,49,66,207,128,162,225,5,2,64,126,161,143,224,184,1,0,53,145,
+244,224,171,1,128,156,131,120,249,75,6,0,49,75,28,2,95,53,49,65,
+179,112,181,242,75,2,96,247,87,229,103,197,66,46,142,188,250,169,6,5,
+114,101,109,111,118,101,97,210,5,102,97,105,108,101,100,128,219,0,58,96,
+134,67,46,7,117,110,108,105,110,107,32,58,96,101,161,31,225,33,2,2,
+50,49,54,224,77,2,7,77,72,83,67,80,80,72,83,250,243,3,224,46,
+6,163,217,251,236,1,96,2,129,63,225,52,2,226,167,5,224,209,4,147,
+196,205,116,243,182,2,226,180,19,7,82,117,110,32,99,112,112,104,239,70,
+0,226,175,12,2,95,53,49,173,245,128,183,160,133,145,231,0,52,74,32,
+224,91,11,96,87,244,9,0,224,244,1,224,140,16,7,32,45,45,115,116,
+114,105,112,160,138,192,238,182,249,167,179,96,66,121,239,162,174,64,77,1,
+53,49,96,170,224,39,2,3,67,39,32,79,97,35,224,109,16,1,45,73,
+179,167,86,58,0,51,224,25,3,10,115,114,99,47,114,117,110,116,105,109,
+101,128,34,100,116,65,83,1,48,48,224,192,10,87,10,228,153,0,228,174,
+2,224,20,1,65,64,234,173,2,224,66,13,247,77,0,167,159,147,200,225,
+43,17,0,79,225,90,1,98,153,66,66,231,24,0,165,244,224,1,1,197,
+254,160,43,134,62,0,79,226,163,2,8,45,68,95,95,77,72,83,95,95,
+64,86,0,75,70,195,65,83,70,39,3,50,53,54,32,224,160,2,0,58,
+97,124,169,210,227,117,10,130,114,245,195,7,227,119,15,129,14,245,184,32,
+8,99,97,108,108,67,111,109,109,97,69,97,131,153,194,45,225,252,2,162,
+196,132,235,224,78,19,0,44,226,245,19,96,234,167,29,5,115,121,115,116,
+101,109,67,238,135,23,228,180,5,224,236,2,97,5,72,138,133,201,0,95,
+224,21,4,126,69,2,95,53,48,208,15,228,245,1,0,50,253,211,12,0,
+56,65,39,225,102,6,0,52,158,95,88,236,229,190,7,165,179,65,132,108,
+130,89,10,161,167,2,53,49,48,70,38,97,125,142,12,0,35,128,231,2,
+95,52,56,106,249,135,229,118,23,238,188,1,225,51,2,130,63,138,103,0,
+55,229,253,3,8,92,51,52,38,108,105,98,47,83,97,33,5,47,73,79,
+46,104,115,64,19,5,44,50,57,52,58,56,129,94,0,90,129,47,89,202,
+96,110,97,18,2,48,49,32,128,131,160,19,96,0,0,67,96,36,224,118,
+7,0,58,96,208,133,232,202,160,96,78,224,84,3,234,255,2,160,32,139,
+67,234,248,1,228,77,0,224,136,1,235,182,0,202,234,66,200,160,17,249,
+98,0,65,188,83,228,117,146,0,58,97,122,66,19,8,116,109,112,110,97,
+109,101,32,58,97,208,246,92,2,227,121,5,227,123,5,64,63,203,73,2,
+95,49,56,64,109,5,32,64,95,54,32,89,135,215,128,170,157,253,64,1,
+205,91,194,223,235,96,0,192,13,97,178,239,229,3,1,35,49,199,31,96,
+36,96,46,193,49,105,122,100,161,224,45,0,77,223,192,44,171,244,130,12,
+224,42,9,75,121,224,0,0,111,101,224,129,15,98,156,95,24,115,41,224,
+74,10,0,49,65,207,1,64,64,96,112,224,33,14,0,48,138,88,224,33,
+18,133,82,224,67,20,131,104,64,33,149,207,98,228,224,36,7,137,17,244,
+95,0,224,0,3,225,132,8,226,91,4,225,133,19,193,44,225,132,71,241,
+201,2,241,78,9,224,133,9,139,15,238,14,1,2,95,53,48,92,215,96,
+68,207,175,96,0,132,156,164,184,0,75,231,198,6,186,150,64,58,0,53,
+163,28,1,95,53,95,210,0,58,106,179,233,129,9,132,164,139,101,233,221,
+9,228,178,2,0,58,96,70,164,164,122,161,0,51,65,12,234,19,6,0,
+51,100,39,243,40,0,158,151,209,200,1,95,54,75,248,0,48,232,251,0,
+165,69,192,60,72,45,1,48,50,101,50,235,19,0,234,242,4,131,239,1,
+95,51,64,36,161,83,235,48,7,235,67,4,69,70,78,248,1,95,53,72,
+53,224,204,1,237,96,1,64,104,68,47,122,200,0,58,96,38,131,239,80,
+180,78,153,0,58,96,145,64,245,64,1,70,181,123,79,4,49,51,49,32,
+35,123,14,125,242,0,49,85,166,177,2,1,48,54,229,119,15,8,68,97,
+116,97,47,67,104,97,114,197,119,4,49,48,49,58,49,231,19,0,128,215,
+96,192,0,53,190,66,103,38,254,80,0,1,95,49,81,27,96,5,128,123,
+160,11,123,205,96,205,208,252,2,95,52,56,145,245,0,50,96,193,133,20,
+3,95,52,57,55,64,4,78,245,109,37,165,7,64,13,197,21,0,58,64,
+35,128,10,0,73,96,24,130,51,3,95,52,57,52,64,27,130,0,0,73,
+64,10,161,56,138,39,232,20,2,161,211,170,112,89,230,233,26,18,202,202,
+0,64,64,106,129,123,0,85,133,90,145,236,64,5,2,95,52,57,104,144,
+198,17,232,55,4,232,6,4,224,120,0,224,107,21,255,222,3,226,155,1,
+104,227,224,26,13,226,182,6,224,102,21,3,108,105,110,101,224,105,0,225,
+11,3,232,232,33,2,99,111,108,160,65,224,52,4,1,64,64,224,37,2,
+9,101,110,100,45,111,102,45,102,105,108,170,248,224,26,1,10,110,111,32,
+108,111,99,97,116,105,111,110,193,93,224,28,17,0,58,97,162,1,10,65,
+101,57,68,33,115,150,101,66,0,58,97,120,147,138,67,199,1,52,56,117,
+100,67,25,224,183,11,238,85,0,175,230,174,157,1,95,52,104,225,112,125,
+194,155,126,199,98,155,64,83,64,22,229,65,0,112,76,98,188,135,245,128,
+6,0,58,96,51,1,10,65,123,187,133,118,232,4,9,168,3,96,48,243,
+32,3,64,41,0,85,212,107,198,10,98,76,64,21,198,75,128,20,224,29,
+0,193,230,178,63,97,41,64,150,128,194,4,48,32,95,51,55,78,13,1,
+52,49,67,82,0,56,100,143,227,9,0,0,51,144,130,224,15,0,1,52,
+56,212,45,162,10,101,158,0,56,139,167,192,91,177,233,0,50,77,162,0,
+50,66,118,0,58,96,54,224,111,43,142,75,224,111,22,131,109,5,95,52,
+56,49,32,58,96,80,243,131,0,255,169,0,64,27,96,36,1,51,48,66,
+30,1,52,55,99,210,0,55,71,169,0,73,65,193,65,223,0,85,64,23,
+130,45,0,56,211,72,223,16,96,24,64,63,2,49,49,52,144,104,96,146,
+76,172,64,13,64,35,2,95,49,54,132,188,0,95,72,35,160,92,3,95,
+49,50,48,192,11,0,58,96,6,96,132,2,49,32,75,68,101,118,248,0,
+48,229,94,2,12,67,111,110,116,114,111,108,46,69,120,99,101,112,66,216,
+8,46,73,110,116,101,114,110,97,108,66,143,224,39,1,3,83,111,109,101,
+224,35,0,98,170,96,231,0,58,96,215,119,132,135,124,64,227,65,107,66,
+226,69,235,1,52,55,97,190,0,95,69,215,198,140,2,95,52,55,69,128,
+2,58,52,55,194,19,0,90,65,11,64,16,129,200,0,90,64,238,0,58,
+96,58,172,131,66,216,0,55,66,169,114,10,72,6,96,91,69,209,111,45,
+64,45,197,2,213,48,96,30,9,10,65,32,99,97,116,99,104,32,58,96,
+63,99,45,231,55,4,231,197,0,1,52,54,137,205,240,138,8,130,87,242,
+84,0,1,58,52,68,205,101,190,129,236,0,58,96,57,244,68,0,224,89,
+0,0,64,147,132,171,187,1,51,52,93,111,64,72,225,84,1,3,111,112,
+101,110,81,123,136,119,232,45,2,96,145,245,235,6,0,52,65,236,98,117,
+1,54,52,64,4,72,150,1,52,54,129,65,224,82,1,97,189,4,97,99,
+116,105,118,64,85,0,58,96,38,128,52,0,49,64,4,71,148,64,63,160,
+19,97,41,69,188,64,3,0,58,96,30,246,251,6,64,35,129,53,109,227,
+1,95,52,85,155,2,95,52,54,128,47,231,50,1,5,53,57,32,64,116,
+111,96,131,64,24,129,33,70,235,64,24,101,33,0,58,96,58,128,46,99,
+216,168,182,0,83,64,10,64,209,120,235,0,49,64,111,65,116,88,106,1,
+52,53,100,117,2,58,52,53,246,6,2,129,114,64,25,246,71,5,0,90,
+164,127,98,96,223,189,0,58,96,85,242,183,0,118,95,224,222,2,64,31,
+215,85,227,187,0,1,58,52,186,236,102,208,152,206,1,95,50,66,171,242,
+201,2,0,51,90,62,0,51,64,151,64,80,245,167,3,0,51,101,192,244,
+198,0,233,80,2,240,42,11,128,97,68,27,0,51,65,150,242,223,0,183,
+121,228,145,0,230,242,17,17,76,111,97,100,105,110,103,32,115,97,118,101,
+100,32,99,97,99,104,167,66,231,229,8,192,175,64,27,0,52,91,170,164,
+59,224,184,4,1,58,52,187,209,131,100,130,211,140,5,181,171,0,51,66,
+116,160,15,1,95,50,64,94,101,94,203,126,66,38,97,99,229,122,3,0,
+51,132,6,96,23,138,223,139,168,1,95,51,73,61,96,131,96,40,121,166,
+236,126,2,230,75,0,192,73,229,185,9,67,192,80,173,231,76,10,215,176,
+128,69,238,109,1,119,53,64,8,248,121,1,176,125,128,99,224,96,4,1,
+95,52,115,132,160,49,166,254,129,214,224,45,11,182,121,193,32,193,244,160,
+182,65,247,0,51,164,104,208,166,67,33,224,0,4,1,95,52,147,230,96,
+51,250,250,1,224,162,11,70,210,96,12,96,11,185,212,199,117,128,54,161,
+167,67,188,224,126,3,193,101,65,29,196,240,225,199,0,193,99,226,171,0,
+128,52,245,125,13,128,248,231,62,4,233,162,19,9,105,110,118,97,108,105,
+100,97,116,101,130,172,210,216,130,174,0,52,188,252,192,191,224,154,5,68,
+105,98,171,0,52,124,239,129,99,224,172,0,226,140,4,226,39,1,181,184,
+194,128,65,119,75,153,64,68,238,99,3,1,95,52,94,176,0,58,99,24,
+169,1,66,51,68,18,238,126,0,64,142,193,87,122,217,225,227,0,137,71,
+98,100,1,95,52,243,90,0,96,35,96,181,65,3,1,95,51,108,108,0,
+58,96,104,68,188,107,248,71,173,127,227,155,102,0,58,96,42,100,125,64,
+128,131,124,111,89,224,105,4,147,3,192,135,196,108,201,133,75,255,125,2,
+161,254,233,157,0,224,61,4,101,13,233,251,2,191,130,104,92,0,58,96,
+147,232,214,2,251,121,1,96,222,105,110,1,50,54,223,124,252,212,0,67,
+141,1,52,52,169,59,64,98,0,79,246,28,1,0,51,134,53,191,106,129,
+69,66,222,253,179,0,129,103,164,72,160,177,64,170,1,95,52,124,159,202,
+181,132,57,0,52,92,162,0,51,67,60,98,142,128,10,193,20,225,160,0,
+161,53,135,213,224,2,1,193,247,196,100,129,104,224,126,0,227,23,1,225,
+240,0,96,8,2,95,54,51,66,61,228,15,0,1,95,52,159,65,192,155,
+96,181,65,2,202,44,192,125,68,129,224,44,1,0,58,125,238,97,227,0,
+80,100,243,0,58,66,163,129,20,231,14,0,98,209,199,14,105,0,68,89,
+226,67,0,255,233,0,0,89,101,164,128,195,64,4,0,83,75,153,161,12,
+193,6,160,134,96,202,165,123,106,223,0,50,64,103,148,31,224,217,1,1,
+95,51,75,171,225,81,7,160,70,225,69,10,225,94,0,225,60,8,74,15,
+225,60,25,128,73,128,159,243,108,0,0,64,162,111,244,91,7,224,44,4,
+192,120,125,7,224,48,20,255,6,3,2,49,51,52,255,7,13,0,39,227,
+110,1,160,45,129,200,67,2,128,78,116,249,224,9,0,118,230,64,35,161,
+107,0,67,115,1,68,177,160,54,160,34,224,63,11,99,238,197,168,226,37,
+16,170,177,72,95,74,204,225,198,1,106,81,129,158,0,90,225,144,6,226,
+240,0,227,74,1,160,2,97,41,195,31,103,3,224,80,4,225,115,16,128,
+48,99,217,248,203,1,228,87,5,224,66,0,224,192,6,132,232,224,192,70,
+226,98,0,164,223,224,190,22,192,46,97,151,227,22,0,224,191,16,192,14,
+131,41,227,226,2,96,209,64,64,228,188,5,224,188,0,169,39,229,141,0,
+156,220,229,185,2,1,53,56,162,119,199,97,242,170,0,226,136,5,167,94,
+224,89,1,254,88,2,225,33,6,192,114,224,227,1,234,226,1,224,11,0,
+160,9,160,133,128,207,128,19,229,68,17,225,69,8,225,52,1,224,208,0,
+138,21,0,82,144,120,229,152,25,224,81,8,224,225,2,96,197,225,55,1,
+64,15,136,183,227,172,8,68,55,0,49,129,54,1,95,52,112,96,160,24,
+224,78,17,227,250,18,224,77,18,165,196,225,204,3,162,197,81,229,64,7,
+225,21,1,198,108,224,13,19,224,156,1,226,220,1,224,35,1,128,17,128,
+243,73,52,224,164,17,72,221,224,242,1,96,167,146,42,248,183,2,128,83,
+0,83,224,176,11,224,177,65,162,128,96,158,224,177,39,137,127,0,51,251,
+15,0,225,111,1,0,58,98,159,237,177,2,224,195,17,169,129,128,1,231,
+115,0,192,8,0,58,96,94,224,72,33,224,234,1,224,86,1,226,57,0,
+224,5,1,0,85,224,61,2,229,184,4,96,49,234,30,0,234,39,1,225,
+57,0,224,167,5,160,58,129,7,0,50,229,13,1,192,193,224,15,0,192,
+224,224,168,0,224,119,34,192,35,225,39,19,128,26,228,241,5,224,224,0,
+65,69,0,54,174,14,196,97,227,5,16,225,143,2,224,124,3,224,79,0,
+224,103,17,0,58,98,188,224,101,34,226,154,3,225,181,2,225,46,6,160,
+67,224,24,3,192,152,225,150,76,224,98,10,225,129,60,138,44,3,35,50,
+32,58,99,76,146,106,228,233,2,224,110,3,166,15,160,13,132,81,160,5,
+135,62,224,225,1,224,51,1,236,43,0,72,21,171,109,231,77,14,231,101,
+17,224,128,3,192,208,170,4,102,19,230,245,8,68,235,231,2,6,134,250,
+228,44,0,80,14,0,58,97,12,212,38,193,110,145,188,64,168,225,25,0,
+215,35,225,147,3,224,13,13,225,248,3,227,237,0,64,8,168,2,0,58,
+96,174,168,184,81,138,2,75,50,32,128,153,83,142,192,243,0,58,96,165,
+153,224,160,248,106,1,121,1,216,17,183,35,215,42,128,24,64,11,183,82,
+224,24,11,160,49,151,114,3,95,49,53,53,203,165,0,58,96,6,242,246,
+12,224,200,6,1,95,51,83,108,192,204,0,54,96,52,90,160,82,203,250,
+160,1,0,50,247,35,0,111,199,118,77,64,65,252,55,4,0,80,64,43,
+128,71,130,123,118,145,2,95,49,51,239,173,0,1,95,52,82,202,182,120,
+96,17,0,58,96,6,180,192,1,95,52,86,9,64,19,207,89,64,97,0,
+56,79,169,83,89,1,52,49,129,0,76,226,111,152,236,226,0,80,200,116,
+58,129,113,96,178,64,44,185,112,65,38,0,75,216,154,0,58,112,253,224,
+204,22,97,156,65,227,96,209,0,58,113,60,160,164,64,13,129,38,241,45,
+0,125,161,118,184,64,143,2,95,52,49,71,102,0,58,114,13,13,10,65,
+32,94,109,100,53,66,70,73,76,69,32,58,96,25,228,188,2,2,32,95,
+52,125,254,0,52,93,243,130,230,1,52,48,65,217,1,52,49,129,28,82,
+174,160,170,1,48,48,108,52,254,252,4,1,64,35,112,64,64,164,1,95,
+52,92,127,64,7,154,8,64,64,225,86,7,64,25,246,3,3,0,58,96,
+24,98,37,0,48,64,13,64,122,182,157,142,31,128,106,0,50,65,94,241,
+161,2,130,212,174,63,253,131,9,10,109,104,115,47,83,121,115,116,101,109,
+47,86,178,3,80,97,116,104,253,137,0,4,49,56,58,49,52,253,138,0,
+131,109,229,149,1,130,147,1,95,52,252,226,1,219,212,0,48,86,147,186,
+89,208,49,161,231,0,48,163,90,225,21,1,128,41,0,58,96,70,67,243,
+1,52,54,64,219,194,218,1,75,51,164,143,224,1,11,234,113,2,128,0,
+0,58,97,154,161,178,64,238,213,3,155,125,201,244,165,27,248,43,3,119,
+210,0,95,159,241,164,244,240,168,2,96,230,255,126,13,64,14,123,211,164,
+99,96,42,96,27,0,58,96,50,129,175,68,200,191,71,2,95,52,48,90,
+93,191,65,225,54,9,129,252,190,181,2,35,52,55,64,43,252,38,0,227,
+2,1,96,56,192,192,227,15,8,128,140,1,58,51,190,209,227,154,6,0,
+51,86,244,227,154,11,117,181,215,144,161,95,0,58,96,27,240,146,12,67,
+173,97,88,193,47,134,128,129,220,0,51,91,77,252,247,6,226,70,1,129,
+129,231,73,5,230,238,2,141,25,64,107,64,79,240,96,3,160,73,164,187,
+96,189,97,84,64,220,64,113,114,184,0,90,146,191,1,90,32,160,58,184,
+53,224,28,7,67,35,224,28,16,77,213,224,28,16,108,112,224,29,16,1,
+50,54,224,88,4,1,95,53,77,56,145,131,0,54,85,233,96,10,0,58,
+96,6,224,187,1,0,50,65,134,0,56,224,56,0,1,95,51,85,30,128,
+161,97,212,128,16,128,149,224,16,2,160,137,224,17,2,160,125,128,17,128,
+122,96,80,128,122,100,236,96,6,224,122,1,68,48,0,51,126,128,0,51,
+99,6,0,51,67,6,1,95,51,94,233,1,95,51,95,10,160,70,97,201,
+128,70,64,10,0,58,96,6,8,10,65,32,98,115,62,61,32,58,96,41,
+128,13,64,12,130,192,2,98,115,60,96,26,130,193,4,98,115,60,32,58,
+96,99,96,12,2,99,109,112,64,14,130,115,232,191,1,233,1,1,99,27,
+64,127,0,49,126,45,232,226,8,64,143,122,184,0,51,96,31,1,95,51,
+94,49,210,233,0,58,65,77,64,89,113,155,0,58,96,19,124,132,128,13,
+129,124,113,202,0,58,96,62,199,241,225,233,6,130,203,201,183,135,182,130,
+219,0,58,96,6,160,54,161,141,128,45,133,219,96,17,120,11,160,17,0,
+58,96,71,245,138,0,64,26,224,62,2,96,199,94,29,0,58,96,46,97,
+33,0,47,65,60,190,49,2,98,115,61,96,13,129,46,0,73,64,10,128,
+223,86,204,82,144,0,75,171,22,0,58,99,223,64,88,0,51,139,44,131,
+131,228,169,0,1,64,95,96,111,130,132,189,154,228,89,1,228,73,3,0,
+83,180,199,96,40,161,34,64,206,88,53,100,83,228,143,1,245,41,0,253,
+40,3,0,51,92,166,126,215,64,86,128,13,129,25,66,68,120,123,2,95,
+51,55,65,50,119,220,0,58,96,6,164,233,154,187,93,220,0,58,64,34,
+129,54,229,245,0,0,58,96,25,230,34,1,192,20,167,33,64,82,93,107,
+232,53,19,101,35,1,95,49,224,125,0,224,208,38,0,90,224,208,3,0,
+49,65,81,128,207,73,45,128,10,0,58,96,6,193,135,224,92,5,204,78,
+225,44,15,224,171,6,186,230,96,107,96,106,74,5,0,58,96,6,138,1,
+96,86,227,69,0,224,85,7,104,87,224,77,2,0,58,123,235,234,48,0,
+96,35,168,126,1,75,52,231,108,30,0,58,124,216,96,221,68,148,120,107,
+160,5,120,16,224,11,0,0,50,96,97,163,41,0,51,94,175,128,31,224,
+5,8,0,58,96,43,239,217,2,235,193,6,0,58,64,60,160,113,0,57,
+64,242,129,236,163,208,77,191,236,39,2,236,11,21,0,58,107,71,255,97,
+4,3,46,109,104,115,122,184,95,95,125,81,137,92,232,37,15,131,89,232,
+96,6,130,47,254,26,0,188,53,167,124,73,190,163,130,1,95,51,94,191,
+128,136,129,137,225,181,3,90,202,97,60,128,105,224,132,3,1,95,51,90,
+100,225,229,7,250,200,1,234,112,6,101,61,66,159,225,251,0,219,120,192,
+159,100,117,0,53,65,148,94,31,160,32,224,109,2,94,188,173,223,224,213,
+6,226,80,3,96,200,130,68,96,188,104,101,92,50,0,58,96,65,68,175,
+14,79,46,100,101,115,101,114,105,97,108,105,122,101,32,58,96,29,75,111,
+20,97,100,100,95,108,122,55,55,95,100,101,99,111,109,112,114,101,115,115,
+111,114,64,31,194,11,0,83,108,168,173,17,244,75,2,188,27,114,115,163,
+173,149,41,225,25,3,129,146,203,191,224,215,0,0,50,188,142,224,53,1,
+224,224,5,114,219,64,39,153,50,128,223,130,124,127,217,236,71,0,161,27,
+225,48,1,65,80,168,221,224,80,1,108,43,0,51,124,43,0,49,124,225,
+227,140,5,188,55,8,94,117,110,103,101,116,98,32,58,96,41,224,106,8,
+228,139,5,1,95,51,108,76,65,243,236,102,1,97,194,1,95,54,81,91,
+0,48,207,116,228,71,3,1,95,51,74,118,104,176,65,166,79,90,1,95,
+51,124,164,227,7,1,7,104,71,101,116,67,104,97,114,171,247,0,58,96,
+209,102,101,1,35,52,154,212,96,49,64,175,192,173,130,193,5,95,50,51,
+55,32,79,67,36,2,55,32,64,64,7,87,83,165,151,188,27,135,217,228,
+157,2,0,50,70,205,202,83,120,59,0,52,69,143,91,53,224,145,1,9,
+111,112,101,110,66,105,110,97,114,121,76,161,128,151,229,154,7,1,95,50,
+135,162,165,180,66,24,97,186,1,95,50,72,94,128,131,130,136,1,80,32,
+65,23,128,199,198,109,97,195,101,157,176,160,162,23,65,38,65,40,86,249,
+131,225,64,207,64,3,227,240,1,160,57,167,90,109,18,140,242,255,42,17,
+1,58,32,161,92,96,150,172,8,225,198,2,0,50,73,73,67,253,64,82,
+0,83,186,123,0,50,64,84,224,33,7,97,240,224,54,8,187,230,120,16,
+1,95,51,153,220,226,4,0,113,123,99,193,131,172,0,50,64,31,1,95,
+51,65,172,0,58,96,43,65,217,4,102,108,117,115,104,65,219,185,23,228,
+20,4,0,50,76,16,139,189,226,226,2,228,131,0,96,7,224,5,0,222,
+229,64,118,110,249,224,135,3,226,136,5,114,158,226,136,2,22,67,108,111,
+115,101,58,32,72,97,110,100,108,101,32,97,108,114,101,97,100,121,32,99,
+64,21,0,100,129,64,228,204,6,67,181,64,209,138,184,119,62,133,76,68,
+35,1,95,51,150,150,0,58,97,23,73,250,0,51,137,133,182,78,169,240,
+100,103,96,51,197,160,213,40,2,32,95,50,72,39,82,55,0,58,96,29,
+65,40,96,141,97,40,130,93,136,162,2,95,50,56,75,149,1,51,50,114,
+101,160,70,130,108,6,116,111,70,117,110,80,116,68,225,178,255,66,144,194,
+145,178,248,226,145,12,161,89,224,9,6,137,89,146,96,98,130,226,157,2,
+160,6,0,58,97,95,231,27,2,199,29,167,30,231,44,23,1,64,58,96,
+95,103,120,3,50,55,32,58,96,146,99,240,72,138,68,160,0,58,64,23,
+128,32,0,48,71,22,0,50,78,71,1,95,51,102,131,2,95,49,53,65,
+11,64,38,64,144,76,112,192,11,192,62,64,63,129,100,114,131,233,2,2,
+248,178,2,207,144,116,246,160,5,98,130,174,203,64,11,64,174,170,241,225,
+40,0,96,31,2,95,49,49,97,75,129,21,1,50,56,231,247,2,227,140,
+0,160,43,96,30,224,36,16,228,122,0,97,160,0,54,130,220,241,120,18,
+224,84,28,128,174,192,197,176,119,224,183,4,98,202,224,106,22,96,50,224,
+98,6,1,32,40,128,98,224,134,9,2,79,32,35,68,3,201,213,224,130,
+0,96,115,76,183,161,188,106,206,96,11,0,58,96,6,193,164,0,75,228,
+248,0,98,160,0,85,132,165,149,36,3,60,32,64,35,75,0,224,18,6,
+115,104,224,19,7,97,168,224,19,6,112,223,65,187,224,19,2,128,100,224,
+217,1,8,105,110,116,101,114,114,117,112,116,196,11,224,28,3,14,114,101,
+115,111,117,114,99,101,32,118,97,110,105,115,104,192,34,224,35,4,6,116,
+105,109,101,111,117,116,193,252,224,110,6,64,240,224,45,3,20,117,110,115,
+117,112,112,111,114,116,101,100,32,111,112,101,114,97,116,105,111,110,224,120,
+9,12,104,97,114,100,119,97,114,101,32,102,97,117,108,192,91,224,243,8,
+68,231,224,243,7,133,200,224,132,5,66,173,224,243,5,14,97,112,112,114,
+111,112,114,105,97,116,101,32,116,121,112,167,12,224,35,5,12,118,97,108,
+105,100,32,97,114,103,117,109,101,110,192,131,224,34,3,3,102,97,105,108,
+225,18,0,224,115,7,68,175,224,44,3,12,112,114,111,116,111,99,111,108,
+32,101,114,114,111,168,20,224,31,3,0,115,116,59,224,29,3,224,240,9,
+225,247,10,225,246,10,225,245,10,225,244,7,22,117,110,115,97,116,105,115,
+102,105,101,100,32,99,111,110,115,116,114,97,105,110,116,115,224,149,9,3,
+117,115,101,114,224,147,4,224,210,4,13,101,114,109,105,115,115,105,111,110,
+32,100,101,110,105,225,10,15,226,2,7,6,105,108,108,101,103,97,108,225,
+254,19,7,101,110,100,32,111,102,32,102,232,166,0,224,247,8,225,230,10,
+225,229,7,226,188,0,5,101,120,104,97,117,115,226,224,21,3,98,117,115,
+121,225,201,14,224,86,6,12,100,111,101,115,32,110,111,116,32,101,120,105,
+115,162,22,224,31,3,199,95,96,30,161,82,128,0,196,16,108,184,164,16,
+146,70,184,104,248,57,2,133,98,164,26,0,50,73,246,100,123,139,170,71,
+151,196,53,245,66,2,233,40,17,135,250,0,45,128,140,2,95,49,49,96,
+96,138,193,224,138,1,134,226,64,6,228,155,4,229,11,8,1,48,120,128,
+71,71,47,1,48,52,70,37,0,51,109,145,0,51,88,191,72,214,99,151,
+224,238,1,139,167,128,99,64,11,0,58,96,6,96,99,0,48,96,136,96,
+60,68,152,1,95,51,68,178,1,95,49,113,234,96,77,2,95,49,56,74,
+199,192,11,96,46,128,11,0,57,96,79,96,11,0,51,88,244,0,58,96,
+12,128,85,160,148,109,60,99,136,65,27,146,23,121,76,0,58,96,115,145,
+31,2,49,55,51,64,4,65,96,0,89,168,15,77,42,2,67,32,95,72,
+5,136,118,109,46,118,87,96,244,69,107,72,217,96,172,3,51,54,32,95,
+112,69,98,57,85,187,64,25,96,107,224,25,2,175,197,64,122,185,161,6,
+117,113,117,111,116,32,58,96,42,64,14,2,114,101,109,64,13,135,254,82,
+148,185,110,0,95,107,200,65,82,1,95,51,68,220,1,95,51,68,206,1,
+95,51,66,41,96,226,72,240,171,95,142,177,122,217,96,184,98,187,96,9,
+114,53,86,1,128,254,185,163,71,6,64,22,64,58,116,182,2,49,55,55,
+169,105,0,58,64,96,64,35,0,42,64,138,130,19,0,45,64,10,129,186,
+0,43,64,10,211,117,79,146,148,61,88,53,1,95,51,123,215,0,51,88,
+135,1,95,51,88,167,1,95,51,121,221,116,251,97,142,148,251,153,158,96,
+6,65,0,116,250,185,139,0,117,84,249,184,226,0,117,116,248,184,213,0,
+117,84,247,184,212,0,117,148,246,216,169,64,205,0,51,65,162,67,39,96,
+206,72,255,71,151,112,54,109,248,1,95,49,76,204,116,53,129,148,64,239,
+167,177,1,95,51,88,88,0,58,66,210,129,27,98,4,67,76,81,45,165,
+209,98,243,65,133,221,151,97,64,160,9,3,52,50,32,35,114,123,128,43,
+195,34,224,46,5,64,36,110,219,64,251,216,202,2,49,51,53,64,201,129,
+91,132,231,87,185,202,61,130,150,186,49,94,139,169,178,236,44,1,117,189,
+128,237,224,255,41,128,12,206,61,76,104,96,105,69,2,224,96,1,78,171,
+224,96,46,129,12,95,58,224,100,1,128,224,160,216,192,215,224,102,5,68,
+123,0,50,224,100,26,224,144,47,3,95,50,48,55,228,214,2,18,78,117,
+109,101,114,105,99,46,115,104,111,119,73,110,116,65,116,66,97,77,53,7,
+110,101,103,97,116,105,118,101,232,8,7,183,92,96,2,139,58,171,106,224,
+231,3,113,14,224,196,30,186,11,1,95,49,66,6,224,23,1,224,84,62,
+77,171,224,23,2,224,254,32,233,175,3,2,98,97,115,199,142,128,149,0,
+89,160,149,226,174,3,194,164,0,83,70,151,181,214,205,106,141,109,224,49,
+6,194,105,160,83,192,11,226,117,8,224,70,4,186,216,140,219,224,61,0,
+101,127,225,73,16,68,229,68,31,224,10,5,224,55,2,225,95,3,0,51,
+92,43,141,9,128,65,99,190,225,81,19,0,58,100,124,131,191,98,227,130,
+146,160,34,71,174,92,68,160,204,0,58,96,95,220,33,1,75,52,128,36,
+0,58,96,34,109,254,0,49,86,105,1,50,48,101,207,0,48,225,166,2,
+158,98,4,46,73,79,46,69,201,149,224,28,1,6,73,79,69,120,99,101,
+112,233,83,0,128,106,110,68,182,149,79,82,135,248,0,58,112,125,110,125,
+0,53,80,145,91,68,1,95,50,64,212,224,79,1,4,115,116,100,101,114,
+96,99,0,58,113,12,148,126,128,21,1,32,58,96,50,224,64,2,70,150,
+114,179,224,64,4,0,105,96,138,0,58,113,131,224,63,0,1,105,110,64,
+62,164,252,1,52,57,97,198,232,233,2,212,13,232,237,1,224,17,10,128,
+15,3,50,51,32,95,168,119,141,209,108,0,64,0,154,97,145,203,0,58,
+96,6,96,171,1,51,54,64,122,129,169,215,142,0,58,118,31,243,87,16,
+64,105,246,163,10,239,56,0,192,46,64,143,0,56,160,12,1,95,50,90,
+148,243,78,0,162,170,246,190,7,192,215,243,103,10,1,64,58,119,36,102,
+217,0,67,112,11,65,90,129,161,224,6,2,72,249,96,50,160,206,217,193,
+96,45,104,225,245,89,7,0,50,123,115,195,122,241,246,2,113,107,0,50,
+155,249,213,237,224,55,3,134,181,192,200,245,119,1,131,214,1,95,50,74,
+114,160,184,226,43,0,12,112,101,114,102,111,114,109,73,79,32,94,38,99,
+145,226,64,31,130,56,2,102,112,102,98,8,188,52,4,102,112,110,101,119,
+64,14,130,23,118,208,3,70,73,76,69,64,18,129,189,96,18,3,117,116,
+102,56,64,18,209,225,1,95,50,91,215,0,95,82,77,65,125,129,49,0,
+58,96,20,249,199,10,226,71,3,0,49,103,166,224,17,2,96,215,67,247,
+129,113,235,73,1,0,79,82,90,0,52,175,229,224,23,7,208,55,224,24,
+6,67,94,224,23,8,227,26,1,1,119,43,204,26,1,95,50,92,127,144,
+150,244,130,0,98,198,1,95,50,110,186,225,110,3,252,122,0,226,141,7,
+0,58,98,170,116,115,85,231,65,1,130,1,196,97,250,137,9,250,139,8,
+1,58,50,188,240,225,249,3,0,95,145,52,194,47,193,73,83,198,0,53,
+203,32,161,68,163,62,244,203,1,226,70,1,65,94,243,249,3,199,181,69,
+51,1,95,50,93,19,192,69,225,173,5,241,199,2,248,5,2,224,72,4,
+249,63,6,0,50,189,137,67,50,230,225,4,2,104,101,97,142,1,0,75,
+66,42,189,134,6,65,46,119,114,105,116,101,65,46,130,118,0,85,65,43,
+224,2,1,128,85,1,58,50,253,57,0,0,75,224,28,1,225,67,7,1,
+58,50,253,75,1,97,114,224,38,1,224,36,0,1,58,50,221,90,141,96,
+0,85,230,209,0,224,2,37,168,114,224,0,5,131,155,224,1,21,237,207,
+9,5,70,108,97,103,115,123,238,168,3,224,0,2,161,146,224,2,37,96,
+157,224,106,11,7,118,101,114,98,111,115,101,61,238,136,0,64,33,83,62,
+213,222,224,0,6,224,206,33,83,134,195,160,224,0,8,224,196,41,224,193,
+16,4,114,117,110,73,116,224,191,4,0,50,75,242,224,191,13,224,188,59,
+224,187,38,224,184,16,5,109,104,115,100,105,114,225,121,5,1,50,49,65,
+126,66,73,224,191,12,224,188,56,224,187,35,224,184,16,4,112,97,116,104,
+115,224,183,10,224,188,1,224,189,12,224,186,53,224,185,32,224,182,16,4,
+111,117,116,112,117,226,41,5,225,111,21,224,174,50,224,173,29,224,170,16,
+6,108,111,97,100,105,110,103,226,213,27,224,162,47,224,161,26,227,114,17,
+6,101,97,100,67,97,99,104,228,54,5,224,160,13,224,157,44,224,156,23,
+224,153,16,102,58,224,154,30,224,151,41,224,150,20,224,147,16,6,117,115,
+101,84,105,99,107,227,49,5,224,145,11,224,142,38,224,141,17,224,138,16,
+4,100,111,67,80,80,224,135,23,224,132,35,224,131,14,224,128,16,5,99,
+112,112,65,114,103,228,60,35,224,139,32,224,138,11,224,135,17,224,133,37,
+224,130,29,224,129,8,224,126,17,5,111,109,112,114,101,115,226,18,21,224,
+114,26,224,113,5,224,110,16,6,98,117,105,108,100,80,107,228,79,7,76,
+249,224,240,12,224,119,23,224,118,2,224,115,16,3,108,105,115,116,224,114,
+33,224,111,20,192,110,224,107,16,6,112,107,103,80,97,116,104,225,207,29,
+224,104,17,96,103,224,100,16,6,105,110,115,116,97,108,108,224,211,9,225,
+181,1,224,88,14,224,77,11,4,116,97,114,103,101,230,140,35,224,0,13,
+192,108,0,49,75,249,193,47,151,230,0,50,118,89,151,230,128,11,0,58,
+96,6,149,73,75,233,77,63,64,241,77,88,224,156,4,6,78,111,116,104,
+105,110,103,128,156,236,49,3,172,50,0,54,245,130,1,241,178,1,224,227,
+9,4,74,117,115,116,32,160,68,77,70,85,214,192,49,65,20,64,166,0,
+64,98,20,160,15,120,119,128,15,0,58,96,6,235,223,1,203,176,0,58,
+64,124,64,23,77,155,128,119,76,177,1,35,52,97,49,114,54,160,16,128,
+103,0,58,96,180,235,221,1,224,235,8,2,70,97,108,179,67,224,24,6,
+2,84,114,117,211,91,193,80,254,55,1,128,11,0,58,96,6,184,181,1,
+51,52,161,20,1,95,50,77,255,1,58,50,78,22,96,192,237,231,11,224,
+1,3,232,237,10,0,58,96,67,79,130,224,143,0,8,118,55,46,48,92,
+49,48,38,34,96,91,209,60,0,53,96,152,111,106,64,124,128,19,0,57,
+66,18,0,48,143,12,128,6,0,55,96,5,0,48,226,35,0,0,58,96,
+51,128,45,79,187,0,53,130,24,0,85,64,10,193,119,65,241,0,53,65,
+212,239,67,3,66,158,128,67,3,95,50,48,48,65,85,89,172,225,108,0,
+0,53,208,227,96,60,123,86,2,50,53,53,64,157,0,53,129,134,130,109,
+67,27,162,87,179,246,116,186,194,140,96,30,228,101,2,212,26,224,47,2,
+160,110,210,239,0,50,98,124,122,170,64,60,0,58,96,123,96,25,0,52,
+81,66,1,53,50,96,19,178,222,147,29,0,53,110,231,243,94,8,191,56,
+0,58,96,51,243,30,0,2,111,117,116,65,26,208,225,163,14,243,29,0,
+241,156,35,178,91,177,155,0,58,64,140,192,84,85,139,0,80,64,169,64,
+28,145,42,1,95,52,96,44,1,54,32,120,20,88,86,96,15,80,158,0,
+58,96,98,154,155,96,17,111,60,4,97,108,108,111,99,64,16,162,246,1,
+51,51,64,12,186,93,142,168,239,182,1,3,95,50,52,51,131,210,1,52,
+50,223,34,0,58,65,50,128,145,1,95,50,68,146,192,207,97,67,64,47,
+96,153,193,2,64,25,64,54,64,13,66,6,121,79,96,69,178,33,3,112,
+117,116,98,64,130,194,157,3,51,55,32,79,64,6,0,56,66,79,147,47,
+98,80,0,58,96,71,1,10,65,79,169,212,4,64,28,64,17,227,38,1,
+0,58,96,56,96,157,0,83,246,176,0,0,90,160,7,128,9,160,10,242,
+100,3,213,98,230,74,1,225,7,5,175,193,1,50,50,66,44,130,106,64,
+26,81,246,0,51,161,40,240,184,4,3,66,97,100,32,157,193,3,32,109,
+111,100,255,17,0,116,203,162,154,0,51,196,166,113,44,0,90,160,4,151,
+140,241,78,2,100,176,1,50,51,66,240,98,221,119,161,241,63,7,64,85,
+65,59,3,55,52,32,58,96,32,115,155,1,50,112,64,13,162,231,1,52,
+57,64,193,186,41,224,5,0,69,37,127,54,211,63,124,8,1,49,50,166,
+25,224,6,9,224,42,2,64,15,128,48,224,42,30,160,28,224,49,10,224,
+42,15,224,49,10,224,42,22,224,49,3,214,79,97,161,0,58,96,6,227,
+156,2,71,16,97,145,0,49,66,182,0,51,130,140,97,96,117,236,66,15,
+0,58,96,28,194,233,117,183,64,28,128,16,67,220,0,50,149,210,88,24,
+0,58,96,32,228,107,0,0,50,132,107,128,52,64,38,3,10,65,32,82,
+161,95,0,58,96,28,160,138,89,144,132,28,0,80,161,226,64,171,67,55,
+147,16,225,145,2,0,58,96,179,96,55,0,85,131,148,66,2,0,73,128,
+48,198,75,131,10,230,51,0,0,58,96,35,98,103,243,252,0,0,58,98,
+236,224,127,2,249,69,2,0,80,158,90,0,49,128,87,162,248,179,206,128,
+156,147,237,2,64,64,64,99,74,0,58,68,1,194,96,1,95,50,85,89,
+161,117,71,171,64,30,129,48,7,115,101,113,117,97,108,32,58,96,33,64,
+46,162,225,3,95,50,49,54,227,55,2,5,77,72,83,68,73,82,99,46,
+0,80,64,78,97,68,226,235,0,1,58,50,191,122,224,19,0,230,112,2,
+0,58,96,45,165,20,195,63,96,203,104,52,150,56,245,175,19,247,231,5,
+1,95,50,127,169,224,126,1,245,181,1,223,230,1,50,49,67,110,191,152,
+11,112,101,101,107,67,65,83,116,114,105,110,103,64,21,163,118,1,57,50,
+103,85,0,58,96,102,227,135,0,133,242,255,250,1,1,95,50,104,245,192,
+6,129,64,96,159,0,58,96,6,6,10,65,32,116,111,73,110,70,98,191,
+194,6,94,103,101,116,101,110,118,64,16,167,167,225,80,0,0,52,159,79,
+225,2,2,245,245,0,166,148,225,81,1,1,95,50,95,178,64,102,191,198,
+65,117,228,201,4,3,116,97,105,108,97,143,0,65,64,197,191,224,64,71,
+65,238,95,200,64,67,98,212,191,239,70,108,191,238,2,95,51,48,128,80,
+96,151,95,165,64,219,69,66,128,56,0,49,75,238,224,11,0,224,80,0,
+0,58,96,6,129,230,0,52,73,56,90,48,160,61,0,50,224,155,3,0,
+101,91,79,0,58,138,65,169,118,96,38,0,58,96,6,96,128,251,148,15,
+6,67,111,110,116,114,111,108,251,146,11,96,18,2,67,97,108,128,246,166,
+84,191,246,102,82,230,81,3,64,7,189,64,191,28,2,39,32,95,68,76,
+138,122,97,109,0,57,100,183,71,189,168,155,137,25,0,50,200,167,131,105,
+0,58,64,165,64,99,74,15,130,208,188,157,232,250,10,163,140,232,237,2,
+0,58,100,133,96,162,0,85,225,195,7,16,109,100,53,67,111,109,98,105,
+110,101,58,32,101,109,112,116,121,134,143,64,145,68,116,68,46,160,171,101,
+42,70,128,185,91,0,56,73,188,64,88,1,64,89,96,127,64,151,103,27,
+68,54,228,27,1,196,186,233,123,2,224,255,3,121,43,96,54,72,217,0,
+49,92,220,98,162,2,52,49,32,157,163,0,95,88,196,1,95,49,123,248,
+160,0,0,58,97,54,66,233,9,109,100,53,65,114,114,97,121,32,58,96,
+57,130,126,194,237,0,55,192,160,1,95,49,92,156,99,226,231,185,4,231,
+77,3,3,95,49,57,53,224,46,5,163,138,251,81,1,0,56,129,186,227,
+34,1,1,95,49,93,70,160,145,226,225,0,96,20,186,171,65,0,137,56,
+67,107,1,53,56,204,250,140,112,151,253,224,106,0,225,58,3,192,25,168,
+143,191,85,0,67,127,66,172,41,94,143,97,34,3,95,49,55,55,100,73,
+128,0,229,150,3,191,152,202,73,232,58,0,64,186,171,39,224,44,0,96,
+95,0,66,133,227,1,51,54,161,125,106,57,255,97,4,232,96,4,224,43,
+10,194,134,229,28,2,96,16,0,58,65,96,130,195,105,164,236,190,5,0,
+58,96,143,99,215,99,144,93,210,226,3,0,129,253,0,35,101,13,77,193,
+0,58,97,160,5,10,65,32,35,49,54,65,111,172,207,1,49,48,65,240,
+124,62,92,146,1,95,49,130,57,0,56,79,25,126,99,2,95,49,56,192,
+91,64,11,64,45,160,11,1,57,48,224,11,1,91,104,0,58,96,12,255,
+253,2,137,22,137,25,66,55,160,2,225,66,6,97,178,128,50,161,245,165,
+203,134,68,111,50,2,85,32,65,198,84,96,164,126,39,174,195,93,229,64,
+33,131,74,224,33,7,192,139,0,95,77,192,224,38,16,224,71,25,6,64,
+64,83,32,73,32,64,193,124,192,86,224,196,0,67,177,0,83,162,131,96,
+62,74,66,224,78,16,128,22,99,179,66,145,224,40,16,130,165,196,2,97,
+42,67,93,0,53,224,169,21,129,45,97,174,72,229,65,168,162,67,239,216,
+4,96,29,224,23,1,96,51,0,58,96,142,251,229,2,160,20,221,71,239,
+69,12,0,58,96,123,160,52,64,13,194,179,224,45,15,130,181,226,17,0,
+65,59,74,99,0,50,64,198,76,109,0,58,66,103,196,14,131,211,1,95,
+49,94,216,71,51,66,143,224,27,11,128,122,252,125,6,160,190,220,111,1,
+48,52,69,243,99,30,100,15,65,61,94,51,130,192,1,64,58,99,8,137,
+220,0,49,71,51,225,127,1,0,58,96,39,102,14,128,117,113,210,129,236,
+164,101,79,138,228,164,1,204,122,64,34,1,64,95,78,115,136,164,0,48,
+69,193,1,55,50,230,77,2,27,92,51,52,38,108,105,98,47,68,97,116,
+97,47,73,110,116,101,103,101,114,95,84,121,112,101,46,104,115,64,27,4,
+44,50,56,58,49,242,26,0,96,178,99,179,100,49,0,85,161,233,224,18,
+0,240,136,0,128,5,0,50,244,69,2,224,60,3,105,139,96,60,0,89,
+160,208,67,175,64,197,0,48,192,197,158,236,100,194,65,15,100,24,146,58,
+196,242,98,120,128,18,228,195,1,3,64,95,52,52,133,89,0,58,97,85,
+7,10,65,32,114,101,109,32,58,96,64,110,91,0,58,96,126,79,60,64,
+10,130,12,0,80,64,10,204,80,105,12,0,49,134,201,0,49,94,80,0,
+58,65,49,64,27,70,42,190,97,169,12,0,49,112,86,0,49,80,60,169,
+12,192,56,116,251,192,11,224,80,0,0,58,96,6,128,102,81,75,228,93,
+0,1,95,49,69,38,1,64,58,64,43,128,31,0,85,193,179,82,209,135,
+111,0,80,227,121,1,160,47,224,15,8,64,65,195,67,226,248,0,0,58,
+96,28,175,199,135,82,138,174,82,21,132,7,66,144,224,73,0,64,205,224,
+21,2,160,159,103,206,171,55,200,12,139,92,0,49,147,30,96,169,97,27,
+2,56,32,58,96,19,3,10,65,32,90,64,200,0,58,96,40,161,126,178,
+234,65,76,178,215,0,85,68,220,0,58,96,109,203,84,239,71,6,224,14,
+5,203,108,105,137,161,254,75,100,128,207,0,58,96,6,160,72,192,42,64,
+172,107,156,192,42,96,60,0,58,96,6,192,42,64,163,1,95,49,67,72,
+0,58,96,43,6,10,65,32,47,61,32,58,96,17,132,49,64,38,101,8,
+143,104,205,208,0,75,64,98,142,207,129,169,103,155,0,85,224,20,1,99,
+137,237,119,5,178,40,78,129,64,147,144,176,64,17,64,9,96,176,160,77,
+96,175,192,17,0,58,96,6,228,127,4,228,137,3,128,59,239,96,2,0,
+58,96,60,100,125,1,53,51,64,202,226,239,1,211,30,149,40,128,141,245,
+17,4,9,110,111,32,109,97,116,99,104,32,97,213,214,96,32,136,40,84,
+35,162,245,75,169,128,11,0,58,96,6,235,169,29,8,120,99,101,112,116,
+105,111,110,46,68,115,2,114,110,97,107,159,224,39,1,2,80,97,116,64,
+22,0,77,64,128,0,70,204,180,162,204,179,151,135,218,178,228,0,49,76,
+175,234,165,2,109,110,224,15,3,68,119,248,30,2,202,225,175,216,116,242,
+244,247,12,171,209,98,160,179,187,3,95,49,52,56,130,177,179,184,2,85,
+32,58,64,18,226,202,2,179,159,161,92,78,168,162,136,109,188,82,231,65,
+217,116,197,1,54,32,128,15,99,113,139,167,97,102,68,245,83,200,96,134,
+224,39,3,161,135,225,43,1,6,39,92,57,50,38,39,39,165,164,161,156,
+96,230,224,99,3,101,30,139,247,224,17,3,140,235,234,175,3,224,168,1,
+0,64,160,35,134,75,64,156,164,146,145,41,96,158,130,163,248,12,8,64,
+146,70,62,160,148,64,0,0,58,96,147,226,187,0,176,170,232,195,6,166,
+179,1,95,49,77,117,160,108,84,65,0,35,74,50,129,145,239,112,0,105,
+50,246,146,3,180,140,114,84,210,82,0,90,64,28,143,29,134,34,224,163,
+5,224,160,0,2,67,32,79,249,192,1,67,226,139,133,116,60,225,22,7,
+96,0,2,79,32,80,119,104,224,79,5,0,97,96,79,96,27,246,106,4,
+64,27,0,98,224,27,1,66,158,224,28,5,0,102,224,28,2,0,48,224,
+28,7,0,110,224,28,2,0,51,224,28,7,110,240,128,28,0,57,224,27,
+7,118,220,160,56,0,49,224,28,7,0,118,224,56,2,224,143,8,64,3,
+227,116,1,225,193,0,132,77,69,198,182,54,102,76,147,100,0,51,89,135,
+110,13,64,18,3,49,32,64,35,69,57,64,53,196,106,1,51,55,64,56,
+203,252,240,14,0,225,189,0,147,171,68,79,96,17,0,58,96,6,154,193,
+72,29,237,73,0,208,254,0,49,67,17,75,92,140,206,128,19,0,48,64,
+134,144,133,99,48,0,58,96,87,137,60,226,230,3,249,193,1,192,64,151,
+17,226,96,8,64,69,105,147,236,138,0,160,40,226,52,3,224,10,1,96,
+50,107,36,237,105,1,96,250,129,28,128,123,72,29,224,74,4,0,58,96,
+102,237,108,17,183,7,4,111,114,100,32,58,64,76,160,42,224,41,11,0,
+54,96,28,2,99,104,114,64,41,237,193,0,75,123,235,125,1,182,72,80,
+42,192,234,68,57,67,40,0,58,65,147,225,218,10,113,7,225,218,0,68,
+66,96,43,129,205,0,60,71,40,181,95,198,248,0,58,96,60,162,46,213,
+79,64,106,0,58,100,64,132,9,0,89,74,170,99,253,240,114,3,0,58,
+96,145,139,53,0,49,64,47,128,211,167,209,110,162,83,25,0,58,99,143,
+199,167,181,53,0,61,96,11,128,194,172,19,181,33,253,8,2,68,22,116,
+18,100,65,134,4,96,121,97,13,130,135,130,130,181,17,96,39,107,172,84,
+243,0,58,96,35,171,171,124,232,84,22,96,26,96,43,200,33,194,143,174,
+168,96,10,143,135,168,1,224,32,4,237,218,0,229,20,0,246,79,1,97,
+34,224,65,4,224,64,5,170,254,182,115,129,228,181,95,172,16,224,169,2,
+140,174,181,97,242,161,0,96,30,161,52,73,243,0,58,97,33,182,89,218,
+172,97,61,160,36,160,53,235,56,1,210,115,121,93,111,202,117,131,210,54,
+1,95,49,158,14,0,58,103,158,178,13,213,100,96,27,250,107,1,105,139,
+84,198,178,3,64,222,160,26,104,229,0,56,104,124,101,141,0,58,96,101,
+182,43,128,55,0,56,74,183,0,90,123,62,64,31,181,14,2,110,101,119,
+213,212,4,76,101,110,32,58,96,39,224,223,7,180,248,76,29,180,248,129,
+147,2,115,101,113,103,39,86,252,128,43,64,44,129,32,73,79,180,164,193,
+149,128,1,114,16,225,172,3,224,20,3,224,17,8,224,14,5,224,11,2,
+192,8,110,171,128,209,226,223,1,238,229,12,180,125,0,79,64,152,171,86,
+0,56,72,138,0,95,111,168,192,7,0,95,82,144,148,17,0,95,113,80,
+160,10,211,87,2,64,95,57,72,75,160,10,66,253,83,198,0,58,96,16,
+123,236,3,111,107,101,87,100,146,211,222,87,56,160,17,194,124,107,12,0,
+95,115,119,0,95,82,50,0,58,179,120,207,38,143,250,243,130,0,160,46,
+99,48,128,46,226,132,1,87,128,99,162,70,81,0,95,99,7,0,58,178,
+133,183,81,178,102,6,116,111,80,116,114,32,58,178,103,239,144,5,178,39,
+175,72,139,61,79,38,64,96,67,179,1,64,95,80,154,222,175,134,73,77,
+245,138,4,240,206,14,176,205,200,208,0,95,145,207,70,179,64,63,1,67,
+32,96,65,0,95,78,71,64,44,240,229,0,229,148,4,176,231,78,216,115,
+52,72,65,0,58,176,220,5,113,117,111,116,32,58,176,219,226,56,1,226,
+60,2,226,99,72,177,40,97,30,164,142,244,142,1,0,95,80,213,163,154,
+224,20,0,163,159,245,127,6,244,125,3,0,58,177,90,86,140,65,16,70,
+243,0,58,64,37,66,59,5,102,114,101,101,32,58,177,68,135,168,224,91,
+5,86,31,150,93,211,218,246,28,4,191,107,81,69,250,103,4,177,128,237,
+40,1,64,165,133,89,96,244,0,39,79,68,224,48,0,151,191,160,97,245,
+148,1,165,87,193,62,224,118,3,1,64,95,81,157,128,162,133,104,1,55,
+53,245,140,5,136,177,0,58,177,223,3,85,32,75,51,227,177,5,0,58,
+177,222,130,168,66,213,176,187,75,175,0,83,107,26,190,79,128,176,76,79,
+145,129,64,206,224,112,11,128,111,0,54,160,85,228,34,9,0,58,177,4,
+68,204,0,58,177,5,96,215,191,221,66,185,215,207,226,190,7,177,41,248,
+150,6,8,117,110,100,101,102,105,110,101,100,74,53,0,58,177,49,243,133,
+15,209,69,1,52,50,163,203,70,190,99,43,0,95,76,36,233,239,12,65,
+152,233,235,2,158,57,4,67,32,95,54,51,224,37,3,233,204,2,64,37,
+96,19,96,10,0,95,81,89,0,58,177,126,0,85,230,102,0,0,53,79,
+198,64,32,210,56,161,65,0,80,96,12,97,123,244,39,1,132,17,96,175,
+67,163,97,245,64,70,154,55,132,185,108,108,192,91,210,178,224,55,10,193,
+10,177,240,82,250,131,245,112,134,224,13,0,73,95,225,105,6,179,165,14,
+58,32,117,110,115,117,112,112,111,114,116,101,100,32,119,69,116,3,115,105,
+122,101,107,180,3,35,51,50,55,96,102,8,35,50,49,52,55,52,56,51,
+54,74,123,0,58,178,26,243,116,2,235,14,0,64,117,244,63,1,66,236,
+211,103,81,200,129,20,65,146,0,51,225,33,0,129,143,0,54,147,109,98,
+111,178,101,0,105,92,201,178,11,0,115,74,133,178,10,73,152,178,7,230,
+183,15,178,27,227,33,0,165,25,178,39,4,95,52,56,32,95,80,98,0,
+95,80,188,0,95,80,204,0,95,113,28,81,20,117,1,1,95,53,81,199,
+129,238,65,65,64,9,0,58,64,5,176,47,241,50,3,88,10,89,224,239,
+223,0,178,54,224,29,1,224,49,1,224,39,4,178,51,227,198,10,178,53,
+3,62,61,32,58,64,141,64,10,1,32,58,177,177,75,33,177,140,2,60,
+32,58,177,136,5,105,99,109,112,32,58,209,138,74,221,80,99,0,95,80,
+225,0,58,177,75,74,218,176,241,65,64,176,131,2,80,32,58,176,124,196,
+145,164,204,193,74,224,20,11,224,17,8,224,14,5,224,11,2,192,8,230,
+12,0,240,222,0,236,156,11,176,237,4,110,101,103,32,58,175,227,2,42,
+32,58,174,43,2,45,32,58,174,42,2,43,32,58,174,9,224,156,68,0,
+58,174,80,224,155,2,193,143,174,62,170,23,2,66,32,95,76,246,0,95,
+77,61,64,12,66,57,142,33,174,32,116,184,173,134,2,73,32,58,173,114,
+64,54,96,42,95,23,173,121,64,29,128,232,64,9,128,232,8,94,109,97,
+108,108,111,99,32,58,173,91,13,73,79,46,112,101,114,102,111,114,109,73,
+79,32,58,173,83,224,187,2,0,58,173,58,2,85,32,58,173,56,224,227,
+14,0,58,173,70,64,19,0,95,141,169,77,63,0,58,173,82,131,75,136,
+219,173,87,6,114,97,105,115,101,32,58,173,67,95,195,128,172,7,65,46,
+114,101,97,100,32,58,173,53,13,73,79,46,103,101,116,65,114,103,82,101,
+102,32,58,173,62,0,95,71,7,101,15,68,120,99,108,64,107,128,190,6,
+73,79,46,62,62,32,58,173,79,0,95,79,16,98,175,109,47,199,245,82,
+127,109,60,2,95,49,57,192,9,127,206,99,141,173,79,186,195,110,98,173,
+134,109,93,118,73,173,92,128,35,96,32,154,172,160,32,0,95,68,217,0,
+58,173,108,0,95,78,79,128,246,224,47,7,149,207,64,4,142,171,225,14,
+0,236,232,0,226,202,6,0,58,172,240,118,243,0,58,236,233,1,130,87,
+164,140,172,239,233,234,0,70,38,224,11,2,96,210,101,33,0,58,172,229,
+96,64,173,80,128,178,0,51,97,221,108,211,130,135,74,235,129,75,75,93,
+96,36,180,14,0,95,68,213,65,237,128,237,2,75,32,58,227,137,0,70,
+206,96,11,2,66,32,58,162,140,9,79,46,114,101,116,117,114,110,32,58,
+225,225,0,0,62,68,141,245,246,0,227,127,7,227,107,37,0,58,128,208,
+226,167,15,207,254,226,143,1,64,202,2,95,50,48,147,150,224,0,255,224,
+0,255,224,0,255,224,0,255,224,0,255,224,0,255,224,0,255,224,0,183,
+1,32,125,
+};
+unsigned char *combexpr = data;
+int combexprlen = 99863;
 #include "mhsffi.h"
 static struct ffi_entry table[] = {
 { 0,0 }
diff --git a/ghc/Compat.hs b/ghc/Compat.hs
--- a/ghc/Compat.hs
+++ b/ghc/Compat.hs
@@ -5,6 +5,7 @@
 -- Functions for GHC that are defined in the UHS libs.
 module Compat(module Compat, Type) where
 import Data.Maybe
+import Data.List
 import Data.Text(Text, append, pack)
 import Control.Exception
 import GHC.Types
@@ -15,6 +16,12 @@
 
 takeWhileEnd :: forall a . (a -> Bool) -> [a] -> [a]
 takeWhileEnd p = reverse . takeWhile p . reverse
+
+stripSuffix :: forall a . Eq a => [a] -> [a] -> Maybe [a]
+stripSuffix s t =
+  case stripPrefix (reverse s) (reverse t) of
+    Nothing -> Nothing
+    Just x -> Just (reverse x)
 
 ------- IO --------
 
diff --git a/ghc/Data/Integer.hs b/ghc/Data/Integer.hs
--- a/ghc/Data/Integer.hs
+++ b/ghc/Data/Integer.hs
@@ -5,4 +5,4 @@
 _integerToIntList i | i < 0 = -1 : to (-i)
                     | otherwise =  to i
   where to 0 = []
-        to n = fromInteger r : to q  where (q, r) = quotRem n 2147483648
+        to n = fromInteger r : to q  where (q, r) = quotRem n 32768
diff --git a/lib/Control/Exception/Base.hs b/lib/Control/Exception/Base.hs
new file mode 100644
--- /dev/null
+++ b/lib/Control/Exception/Base.hs
@@ -0,0 +1,4 @@
+-- I don't understand the purpose of this module,
+-- but GHC's base has it.
+module Control.Exception.Base(module Control.Exception) where
+import Control.Exception
diff --git a/lib/Data/ByteString.hs b/lib/Data/ByteString.hs
--- a/lib/Data/ByteString.hs
+++ b/lib/Data/ByteString.hs
@@ -152,7 +152,7 @@
   hPutNonBlocking,
   hPutStr,
   ) where
-import Prelude(Bool(..), Int, Char, Ordering, FilePath, IO, Maybe(..), (), [](..), String,
+import Prelude(Bool(..), Int, Char, Ordering, FilePath, IO, Maybe(..), [](..), String,
                Eq(..), Ord(..), Show(..), Num(..), Monad(..), Functor(..),
                (.), ($), Enum(..), (||), (&&), not, otherwise, (!!), fst, snd)
 import qualified Prelude as P
diff --git a/lib/Data/FloatW.hs b/lib/Data/FloatW.hs
--- a/lib/Data/FloatW.hs
+++ b/lib/Data/FloatW.hs
@@ -63,7 +63,7 @@
   
 -- For now, cheat and call C
 instance Show FloatW where
-  show = primFloatWShow
+  show = primFloatWShow -- should be Numeric.FormatFloat.showFloat, but that drags in a lot of stuff
 
 {- in Text.Read.Internal
 instance Read FloatW where
@@ -108,7 +108,7 @@
 foreign import ccall "atan" catan :: FloatW -> IO FloatW
 foreign import ccall "atan2" catan2 :: FloatW -> FloatW -> IO FloatW
 
--- Assumes 64 bit floats
+-- Assumes 32/64 bit floats
 instance RealFloat FloatW where
   floatRadix     _ = 2
   floatDigits    _ = flt 24 53
diff --git a/lib/Data/Fractional.hs b/lib/Data/Fractional.hs
--- a/lib/Data/Fractional.hs
+++ b/lib/Data/Fractional.hs
@@ -7,6 +7,7 @@
 import Data.Num
 import Data.Ord
 import Data.Ratio_Type
+import Data.Real
 
 class Num a => Fractional a where
   (/) :: a -> a -> a
@@ -18,3 +19,6 @@
 infixr 8 ^^
 (^^) :: forall a b . (Fractional a, Integral b, Ord b) => a -> b -> a
 x ^^ n = if n >= 0 then x^n else recip (x^(- n))
+
+realToFrac :: forall a b . (Real a, Fractional b) => a -> b
+realToFrac a = fromRational (toRational a)
diff --git a/lib/Data/Generics.hs b/lib/Data/Generics.hs
deleted file mode 100644
--- a/lib/Data/Generics.hs
+++ /dev/null
@@ -1,32 +0,0 @@
-module Data.Generics(
-  ) where
-
-type V1 :: forall (k::Kind) . k -> Type
-data V1 p
-
-type U1 :: forall (k::Kind) . k -> Type
-data U1 p = U1
-
-newtype Par1 p = Par1 p
-
-type Rec1 :: forall (k::Kind) . (k -> Type) -> k -> Type
-newtype Rec1 f p = Rec1 (f p)
-
-type K1 :: forall (k::Kind) . Type -> Type -> k -> Type
-newtype K1 i c p = K1 c
-
-newtype M1 :: forall k . Type -> Type{-Meta-} -> (k -> Type) -> k -> Type
-newtype M1 i c f p = M1 (f p)
-
-infixr 5 :+:
-type (:+:) :: forall k . (k -> Type) -> (k -> Type) -> k -> Type
-data (:+:) f g p = L1 (f p) | R1 (g p)
-
-infixr 6 :*:
-type (:*:) :: forall k . (k -> Type) -> (k -> Type) -> k -> Type
-data (:*:) f g p = f p :*: g p
-
-infixr 7 :.:
-type (:.:) :: forall k1 k2 . (k2 -> Type) -> (k1 -> k2) -> k1 -> Type
-newtype (:.:) f g p = Comp1 (f (g p))
-
diff --git a/lib/Data/Integer.hs b/lib/Data/Integer.hs
--- a/lib/Data/Integer.hs
+++ b/lib/Data/Integer.hs
@@ -317,17 +317,24 @@
 geI :: Integer -> Integer -> Bool
 geI x y = not (ltI x y)
 
+-- To make the [Int] representing an integer portable, we
+-- need to base that does not depend on the word size
+integerListBase :: Integer
+integerListBase = 32768
+
 -- These two functions return an (opaque) representation of an
 -- Integer as [Int].
 -- This is used by the compiler to generate Integer literals.
 -- First _integerToIntList is used in the compiler to get a list of
 -- Int, and the generated code will have a call to _intListToInteger.
 _integerToIntList :: Integer -> [Int]
-_integerToIntList (I Plus  ds) = ds
-_integerToIntList (I Minus ds) = (-1::Int) : ds
+_integerToIntList i = if i < 0 then (-1::Int) : f (-i) else f i
+  where f 0 = []
+        f i = fromInteger r : f q  where (q, r) = quotRem i integerListBase
 
 _intListToInteger :: [Int] -> Integer
-_intListToInteger ads@(x : ds) = if x == -1 then I Minus ds else I Plus ads
+_intListToInteger ads@(x : ds) = if x == -1 then - f ds else f ads
+  where f = foldr (\ d a -> a * integerListBase + toInteger d) 0
 
 ---------------------------------
 {-
diff --git a/lib/Data/Integral.hs b/lib/Data/Integral.hs
--- a/lib/Data/Integral.hs
+++ b/lib/Data/Integral.hs
@@ -9,10 +9,14 @@
 import Data.Integer_Type
 import Data.Num
 import Data.Ord
+import Data.Real
 
 infixl 7 `quot`,`rem`
+infixl 7 `div`,`mod`
 
-class {-(Real a, Enum a) => -} (Eq a, Num a) => Integral a where
+-- XXX Importing Data.Enum causes an import cycle.
+--     I don't really see the point of Enum as a superclass.
+class (Real a{-, Enum a-}) => Integral a where
   quot      :: a -> a -> a
   rem       :: a -> a -> a
   div       :: a -> a -> a
diff --git a/lib/Data/List.hs b/lib/Data/List.hs
--- a/lib/Data/List.hs
+++ b/lib/Data/List.hs
@@ -11,6 +11,7 @@
   iterate, iterate', repeat, replicate, cycle,
   unfoldr,
   take, drop, splitAt, takeWhile, takeWhileEnd, dropWhile, dropWhileEnd, span, spanUntil, break, splitWith,
+  spanEnd, breakEnd,
   stripPrefix, stripSuffix, group, inits, tails,
   isPrefixOf, isSuffixOf, isInfixOf, isSubsequenceOf,
   elem, notElem, lookup,
@@ -378,6 +379,12 @@
 
 break :: forall a . (a -> Bool) -> [a] -> ([a],[a])
 break p = span (not . p)
+
+spanEnd :: (a -> Bool) -> [a] -> ([a], [a])
+spanEnd p xs = (dropWhileEnd p xs, takeWhileEnd p xs)
+
+breakEnd :: (a -> Bool) -> [a] -> ([a], [a])
+breakEnd p = spanEnd (not . p)
 
 spanUntil :: forall a . (a -> Bool) -> [a] -> ([a], [a])
 spanUntil p =
diff --git a/lib/Data/MArray.hs b/lib/Data/MArray.hs
deleted file mode 100644
--- a/lib/Data/MArray.hs
+++ /dev/null
@@ -1,38 +0,0 @@
-module Data.Array (
-    module Data.Ix,
-    Array,
-    array,
-    listArray,
-    accumArray,
-    (!),
-    bounds,
-    indices,
-    elems,
-    assocs,
-    (//),
-    accum,
-    ixmap,
-  ) where
-
-import Data.Ix
-
-    -- Array instances:
-    --
-    --   Ix a => Functor (Array a)
-    --   (Ix a, Eq b)  => Eq   (Array a b)
-    --   (Ix a, Ord b) => Ord  (Array a b)
-    --   (Ix a, Show a, Show b) => Show (Array a b)
-    --   (Ix a, Read a, Read b) => Read (Array a b)
-    --
-
-    array,          -- :: (Ix a) => (a,a) -> [(a,b)] -> Array a b
-    listArray,      -- :: (Ix a) => (a,a) -> [b] -> Array a b
-    accumArray,     -- :: (Ix a) => (b -> c -> b) -> b -> (a,a) -> [(a,c)] -> Array a b
-    (!),            -- :: (Ix a) => Array a b -> a -> b
-    bounds,         -- :: (Ix a) => Array a b -> (a,a)
-    indices,        -- :: (Ix a) => Array a b -> [a]
-    elems,          -- :: (Ix a) => Array a b -> [b]
-    assocs,         -- :: (Ix a) => Array a b -> [(a,b)]
-    (//),           -- :: (Ix a) => Array a b -> [(a,b)] -> Array a b
-    accum,          -- :: (Ix a) => (b -> c -> b) -> Array a b -> [(a,c)] -> Array a b
-    ixmap,          -- :: (Ix a, Ix b) => (a,a) -> (a -> b) -> Array b c -> Array a b
diff --git a/lib/Data/Monoid.hs-boot b/lib/Data/Monoid.hs-boot
deleted file mode 100644
--- a/lib/Data/Monoid.hs-boot
+++ /dev/null
@@ -1,7 +0,0 @@
-module Data.Monoidnwhere
-import {-# SOURCE #-} Data.Semigroup
-
-class Semigroup a => Monoid a where
-  mempty :: a
-  mappend :: a -> a -> a
-  mconcat :: [a] -> a
diff --git a/lib/Data/Real.hs b/lib/Data/Real.hs
--- a/lib/Data/Real.hs
+++ b/lib/Data/Real.hs
@@ -1,12 +1,9 @@
 module Data.Real(module Data.Real) where
 import Prelude()              -- do not import Prelude
 import Primitives
-import Data.Fractional
 import Data.Num
+import Data.Ord
 import Data.Ratio_Type
 
-class Num a => Real a where
+class (Num a, Ord a) => Real a where
   toRational :: a -> Rational
-
-realToFrac :: forall a b . (Real a, Fractional b) => a -> b
-realToFrac a = fromRational (toRational a)
diff --git a/lib/Data/Tuple.hs b/lib/Data/Tuple.hs
--- a/lib/Data/Tuple.hs
+++ b/lib/Data/Tuple.hs
@@ -2,10 +2,8 @@
 -- See LICENSE file for full license.
 module Data.Tuple(
   module Data.Tuple,
-  ()(..)
   ) where
 import Prelude()              -- do not import Prelude
-import Primitives  -- for ()
 import Data.Bool
 import Data.Bounded
 import Data.Eq
@@ -42,6 +40,8 @@
 swap (a, b) = (b, a)
 
 -----------------------------------
+
+-- data () = () built in
 
 instance Eq () where
   () == ()  =  True
diff --git a/lib/Foreign/C/Types.hs b/lib/Foreign/C/Types.hs
--- a/lib/Foreign/C/Types.hs
+++ b/lib/Foreign/C/Types.hs
@@ -20,6 +20,7 @@
 import Data.Integral
 import Data.Num
 import Data.Ord
+import Data.Real
 import Data.Word
 import Data.FloatW
 
@@ -77,6 +78,8 @@
 instance Integral CLong where
   quotRem (CLong x) (CLong y) = (CLong q, CLong r) where (q, r) = quotRem q r
   toInteger (CLong x) = toInteger x
+instance Real CLong where
+  toRational (CLong x) = toRational x
 
 -- XXX only one of these is actually correct
 newtype CFloat   = CFloat   FloatW
diff --git a/lib/GHC/Generics.hs b/lib/GHC/Generics.hs
new file mode 100644
--- /dev/null
+++ b/lib/GHC/Generics.hs
@@ -0,0 +1,3 @@
+-- This is a dummy module so deriving Generic can be spoofed.
+module GHC.Generics(Generic) where
+class Generic a
diff --git a/lib/Language/Haskell/TH/Syntax.hs b/lib/Language/Haskell/TH/Syntax.hs
new file mode 100644
--- /dev/null
+++ b/lib/Language/Haskell/TH/Syntax.hs
@@ -0,0 +1,3 @@
+-- This is a dummy module so deriving Lift can be spoofed.
+module Language.Haskell.TH.Syntax(Lift(..)) where
+class Lift a
diff --git a/lib/Mhs/Builtin.hs b/lib/Mhs/Builtin.hs
--- a/lib/Mhs/Builtin.hs
+++ b/lib/Mhs/Builtin.hs
@@ -14,6 +14,7 @@
   module Text.Show,
   ) where
 import Prelude()
+import Control.Error(error)
 import Control.Monad(Monad(..))
 import Control.Monad.Fail(MonadFail(..))
 import Data.Bool((&&), Bool(..))
diff --git a/lib/Numeric/FormatFloat.hs b/lib/Numeric/FormatFloat.hs
--- a/lib/Numeric/FormatFloat.hs
+++ b/lib/Numeric/FormatFloat.hs
@@ -1,4 +1,6 @@
 module Numeric.FormatFloat(
+  showFloat,
+
   formatRealFloat, formatRealFloatAlt,
 
   showEFloat,
@@ -12,8 +14,8 @@
 import Data.Char
 import Numeric.Show
 
---showFloat :: (RealFloat a) => a -> ShowS
---showFloat x  =  showString (formatRealFloat FFGeneric Nothing x)
+showFloat :: (RealFloat a) => a -> ShowS
+showFloat x = showString (formatRealFloat FFGeneric Nothing x)
 
 -- These are the format types.  This type is not exported.
 data FFFormat = FFExponent | FFFixed | FFGeneric
diff --git a/lib/Prelude.hs b/lib/Prelude.hs
--- a/lib/Prelude.hs
+++ b/lib/Prelude.hs
@@ -33,6 +33,7 @@
   module Data.Tuple,
   module Data.Word,
   module System.IO,
+  module System.IO.Error,
   module Text.Read,
   module Text.Show,
   Float, Double,
@@ -55,7 +56,7 @@
 import Data.Eq(Eq(..))
 import Data.Float(Float)
 import Data.Floating(Floating(..))
-import Data.Fractional(Fractional(..), (^^))
+import Data.Fractional(Fractional(..), (^^), realToFrac)
 import Data.Function(id, const, (.), flip, ($), seq, ($!), until, asTypeOf)
 import Data.Functor(Functor(..), (<$>))
 import Data.Int(Int)
@@ -74,17 +75,18 @@
 import Data.Num(Num(..), subtract)
 import Data.Ord(Ord(..), Ordering(..))
 import Data.Ratio(Rational)
-import Data.Real(Real(..), realToFrac)
+import Data.Real(Real(..))
 import Data.RealFloat(RealFloat(..))
 import Data.RealFrac(RealFrac(..))
 import Data.Records  -- XXX redo this somehow
 import Data.Semigroup(Semigroup(..))
 import Data.String(IsString(..), lines, unlines, words, unwords)
-import Data.Tuple(()(..), fst, snd, curry, uncurry)
+import Data.Tuple(fst, snd, curry, uncurry)
 import Data.Word(Word)
 import System.IO(IO, putChar, putStr, putStrLn, print, getLine, getContents, interact,
                  FilePath, readFile, writeFile, appendFile,
                  cprint, cuprint)
+import System.IO.Error(IOError)
 import Text.Read(ReadS, Read(..), read, reads, readParen, lex)
 import Text.Show(Show(..), ShowS, shows, showChar, showString, showParen)
 import Primitives(_wordSize, _isWindows)
diff --git a/lib/Primitives.hs b/lib/Primitives.hs
--- a/lib/Primitives.hs
+++ b/lib/Primitives.hs
@@ -34,8 +34,7 @@
 data ForeignPtr a
 data FunPtr a
 data IOArray a
-
-data () = ()   -- Parser hacks allows () to be used
+-- (), (,), (,,), etc are built in to the compiler
 
 primIntAdd :: Int -> Int -> Int
 primIntAdd  = primitive "+"
diff --git a/lib/System/IO.hs b/lib/System/IO.hs
--- a/lib/System/IO.hs
+++ b/lib/System/IO.hs
@@ -24,6 +24,10 @@
   openTmpFile, openTempFile, openBinaryTempFile,
 
   withFile,
+
+  BufferMode(..),
+  hSetBuffering,
+
   ) where
 import Prelude()              -- do not import Prelude
 import Primitives
@@ -40,6 +44,7 @@
 import Data.List
 import Data.Maybe
 import Data.Num
+import Data.Ord
 import Data.String
 import Data.Tuple
 import Text.Show
@@ -48,6 +53,7 @@
 import Foreign.Ptr
 import System.IO.Unsafe
 import System.IO.Internal
+import System.IO.Error
 
 data FILE
 
@@ -71,20 +77,6 @@
 
 ----------------------------------------------------------
 
-instance Eq Handle where
-  h == h'  =
-    unsafePerformIO $
-    withHandleAny h $ \ p ->
-    withHandleAny h' $ \ p' ->
-    pure (p == p')
-
-instance Show Handle where
-  show h = unsafePerformIO $
-    withHandleAny h $ \ p ->
-      return $ "Handle-" ++ show p
-
-type FilePath = String
-
 stdin  :: Handle
 stdin  = unsafeHandle primStdin  HRead  "stdin"
 stdout :: Handle
@@ -96,10 +88,20 @@
 --bFILE = Handle . primPerformIO . (c_add_utf8 <=< c_add_FILE)
 
 hClose :: Handle -> IO ()
-hClose h = do
+hClose h =
+  -- Don't close the std handles, the runtime assume they remain open.
+  if h == stdin then
+    return ()
+  else if h == stdout || h == stderr then
+    hFlush h       -- closing would have flushed
+  else
+    hCloseReal h
+
+hCloseReal :: Handle -> IO ()
+hCloseReal h = do
   m <- getHandleState h
   case m of
-    HClosed -> error "Handle already closed"
+    HClosed -> ioErrH h OtherError "hClose: Handle already closed"
     HSemiClosed -> return ()
     _ -> do
       killHandle h
@@ -113,7 +115,7 @@
 hGetChar h = withHandleRd h $ \ p -> do
   c <- c_getb p
   if c == (-1::Int) then
-    error "hGetChar: EOF"
+    ioErrH h EOF "hGetChar"
    else
     return (chr c)
 
@@ -151,7 +153,7 @@
 openFile p m = do
   mh <- openFileM p m
   case mh of
-    Nothing -> error ("openFile: cannot open " ++ p)
+    Nothing -> ioErr NoSuchThing "openFile" p
     Just h -> return h
 
 putChar :: Char -> IO ()
@@ -248,10 +250,18 @@
 openBinaryFile fn m = do
   mf <- openFILEM fn m
   case mf of
-    Nothing -> error $ "openBinaryFile: cannot open " ++ show fn
+    Nothing -> ioErr NoSuchThing "openBinaryFile" fn
     Just p -> do { q <- c_add_FILE p; mkHandle fn q (ioModeToHMode m) }
 
 --------
+
+ioErrH :: Handle -> IOErrorType -> String -> IO a
+ioErrH h typ desc   = ioError $ IOError (Just h) typ "" desc Nothing Nothing
+
+ioErr :: IOErrorType -> String -> String -> IO a
+ioErr typ desc name = ioError $ IOError Nothing  typ "" "" Nothing (Just $ name ++ ": " ++ desc)
+
+--------
 -- For compatibility
 
 data TextEncoding = UTF8
@@ -320,3 +330,10 @@
 
 openBinaryTempFile :: FilePath -> String -> IO (String, Handle)
 openBinaryTempFile = openTempFile' openBinaryFile
+
+data BufferMode = NoBuffering | LineBuffering | BlockBuffering (Maybe Int)
+  deriving (Eq, Ord, Show)
+
+-- This currently does nothing.
+hSetBuffering :: Handle -> BufferMode -> IO ()
+hSetBuffering _ _ = return ()
diff --git a/lib/System/IO/Error.hs b/lib/System/IO/Error.hs
--- a/lib/System/IO/Error.hs
+++ b/lib/System/IO/Error.hs
@@ -69,6 +69,7 @@
     modifyIOError,
   ) where
 import Prelude()
+import Primitives(IO)
 import Control.Exception.Internal
 import Control.Monad
 import Data.Bool
@@ -81,8 +82,8 @@
 import Data.Maybe
 import Data.Records   -- needed since we don't import Mhs.Builtin
 import Data.String
-import Data.Typeable
-import System.IO
+import {-#SOURCE#-} Data.Typeable
+import System.IO.Internal
 import Text.Show
 
 
diff --git a/lib/System/IO/Extra.hs b/lib/System/IO/Extra.hs
deleted file mode 100644
--- a/lib/System/IO/Extra.hs
+++ /dev/null
@@ -1,23 +0,0 @@
-module System.IO.Extra(openFileM, openTmpFile, splitTmp) where
-import Foreign.C.String
-
-splitTmp :: String -> (String, String)
-splitTmp tmpl = 
-  case span (/= '.') (reverse tmpl) of
-    (rsuf, "") -> (tmpl, "")
-    (rsuf, _:rpre) -> (reverse rpre, '.':reverse rsuf)
-
--- Create a temporary file, take a prefix and a suffix
--- and returns a malloc()ed string.
-foreign import ccall "tmpname" c_tmpname :: CString -> CString -> IO CString
-
--- Create and open a temporary file.
-openTmpFile :: String -> IO (String, Handle)
-openTmpFile tmpl = do
-  let (pre, suf) = splitTmp tmpl
-  ctmp <- withCAString pre $ withCAString suf . c_tmpname
-  tmp <- peekCAString ctmp
-  free ctmp
-  h <- openFile tmp ReadWriteMode
-  return (tmp, h)
-
diff --git a/lib/System/IO/Internal.hs b/lib/System/IO/Internal.hs
--- a/lib/System/IO/Internal.hs
+++ b/lib/System/IO/Internal.hs
@@ -1,4 +1,5 @@
 module System.IO.Internal(
+  FilePath,
   BFILE,
   Handle, HandleState(..),
   IOMode(..), ioModeToHMode,
@@ -20,8 +21,27 @@
 import Data.IORef
 import Data.List
 --import Foreign.ForeignPtr  causes import cycle
+import Foreign.Ptr
+import Mhs.Builtin
 import System.IO_Handle
 import System.IO.Unsafe
+import Text.Show
+
+instance Eq Handle where
+  h == h'  =
+    unsafePerformIO $
+    withHandleAny h $ \ p ->
+    withHandleAny h' $ \ p' ->
+    pure (p == p')
+
+instance Show Handle where
+  show h = unsafePerformIO $
+    withHandleAny h $ \ p ->
+      return $ "Handle-" ++ show p
+
+-----
+
+type FilePath = String
 
 data IOMode = ReadMode | WriteMode | AppendMode | ReadWriteMode
   deriving (Eq)
diff --git a/lib/dist-mcabal/autogen/Paths_libs.hs b/lib/dist-mcabal/autogen/Paths_libs.hs
new file mode 100644
--- /dev/null
+++ b/lib/dist-mcabal/autogen/Paths_libs.hs
@@ -0,0 +1,4 @@
+module Paths_libs where
+import Data.Version
+version :: Version; version = makeVersion [0,10,6,0]
+getDataDir :: IO FilePath; getDataDir = return "/Users/augustss/.mcabal/mhs-0.10.6.0/packages/base-0.10.6.0/data"
diff --git a/mhs/MHSPrelude.hs b/mhs/MHSPrelude.hs
--- a/mhs/MHSPrelude.hs
+++ b/mhs/MHSPrelude.hs
@@ -42,7 +42,7 @@
 import Data.Either(Either(..), either)
 import Data.Enum(Enum(..))
 import Data.Eq(Eq(..))
-import Data.Fractional(Fractional(..), (^^))
+import Data.Fractional(Fractional(..), (^^), realToFrac)
 import Data.Function(id, const, (.), flip, ($), seq, ($!), until, asTypeOf)
 import Data.Functor(Functor(..), (<$>))
 import Data.Int(Int)
@@ -61,10 +61,10 @@
 import Data.Num(Num(..), subtract)
 import Data.Ord(Ord(..), Ordering(..))
 import Data.Ratio(Rational)
-import Data.Real(Real(..), realToFrac)
+import Data.Real(Real(..))
 import Data.Records  -- needed for data types with fields
 import Data.String(IsString(..), lines, unlines, words, unwords)
-import Data.Tuple(()(..), fst, snd, curry, uncurry)
+import Data.Tuple(fst, snd, curry, uncurry)
 import Data.Word(Word)
 import System.IO(IO, putChar, putStr, putStrLn, print, getLine, getContents, interact,
                  FilePath, readFile, writeFile, appendFile,
diff --git a/mhs/System/FilePath.hs b/mhs/System/FilePath.hs
new file mode 100644
--- /dev/null
+++ b/mhs/System/FilePath.hs
@@ -0,0 +1,122 @@
+-- A few function copied from the filepath package
+module System.FilePath(
+    FilePath,
+--    splitSearchPath,
+    pathSeparator,
+--    takeExtension,
+    dropExtension,
+    (<.>),
+    splitFileName,
+    takeDirectory,
+    (</>),
+  ) where
+import Prelude(); import MHSPrelude
+import Data.List
+
+infixr 7 <.>, -<.>
+infixr 5 </>
+
+(</>) :: FilePath -> FilePath -> FilePath
+(</>) = combine
+
+{-
+hasLeadingPathSeparator :: FilePath -> Bool
+hasLeadingPathSeparator ('/':_) = True
+hasLeadingPathSeparator _ = False
+
+hasTrailingPathSeparator :: FilePath -> Bool
+hasTrailingPathSeparator = hasLeadingPathSeparator . reverse
+-}
+
+joinPath :: [FilePath] -> FilePath
+joinPath = foldr combine ""
+
+combine :: FilePath -> FilePath -> FilePath
+combine a b {-x | hasLeadingPathSeparator b = b
+            | otherwise -} = combineAlways a b
+
+combineAlways :: FilePath -> FilePath -> FilePath
+combineAlways a b {-x | null a = b
+                  | null b = a
+                  | hasTrailingPathSeparator a = a ++ b
+                  | otherwise -} = a ++ pathSeparator : b
+
+pathSeparator :: Char
+pathSeparator = '/'
+
+isPathSeparator :: Char -> Bool
+isPathSeparator = (pathSeparator ==)
+
+---------
+{-
+splitSearchPath :: String -> [FilePath]
+splitSearchPath = f
+  where
+    f xs = case break (':' ==) xs of
+             (pre, []    ) -> g pre
+             (pre, _:post) -> g pre ++ f post
+
+    g "" = ["."]
+    g x = [x]
+-}
+---------
+
+splitFileName :: FilePath -> (String, String)
+splitFileName x = (if null dir then "./" else dir, name)
+    where
+        (dir, name) = splitFileName_ x
+
+splitFileName_ :: FilePath -> (String, String)
+splitFileName_ = breakEnd isPathSeparator
+
+dropFileName :: FilePath -> FilePath
+dropFileName = fst . splitFileName
+
+{-
+replaceBaseName :: FilePath -> String -> FilePath
+replaceBaseName pth nam = combineAlways a (nam <.> ext)
+    where
+        (a,b) = splitFileName_ pth
+        ext = takeExtension b
+-}
+
+takeDirectory :: FilePath -> FilePath
+takeDirectory = dropTrailingPathSeparator . dropFileName
+
+dropTrailingPathSeparator :: FilePath -> FilePath
+dropTrailingPathSeparator = dropWhileEnd isPathSeparator
+
+---------
+
+extSeparator :: Char
+extSeparator = '.'
+
+isExtSeparator :: Char -> Bool
+isExtSeparator = (extSeparator ==)
+
+{-
+splitExtension :: FilePath -> (String, String)
+splitExtension x = case nameDot of
+                       "" -> (x,"")
+                       _  -> (dir ++ init nameDot, extSeparator : ext)
+    where
+        (dir, file) = splitFileName_ x
+        (nameDot, ext) = breakEnd isExtSeparator file
+
+takeExtension :: FilePath -> String
+takeExtension = snd . splitExtension
+-}
+
+dropExtension :: FilePath -> FilePath
+--dropExtension = fst . splitExtension
+dropExtension = reverse . drop 1 . dropWhile (not . isExtSeparator) . reverse
+
+(<.>) :: FilePath -> String -> FilePath
+(<.>) = addExtension
+
+addExtension :: FilePath -> String -> FilePath
+addExtension file "" = file
+addExtension file xs@(x:_) = res
+    where
+        res = if isExtSeparator x then file ++ xs
+              else file ++ extSeparator : xs
diff --git a/paths/Paths_MicroHs.hs b/paths/Paths_MicroHs.hs
--- a/paths/Paths_MicroHs.hs
+++ b/paths/Paths_MicroHs.hs
@@ -10,4 +10,4 @@
 getDataDir = return "."
 
 version :: Version
-version = makeVersion [0,10,5,0]
+version = makeVersion [0,10,7,0]
diff --git a/src/MicroHs/Compile.hs b/src/MicroHs/Compile.hs
--- a/src/MicroHs/Compile.hs
+++ b/src/MicroHs/Compile.hs
@@ -11,6 +11,7 @@
   packageDir, packageSuffix, packageTxtSuffix,
   mhsVersion,
   getMhsDir,
+  openFilePath,
   ) where
 import Prelude(); import MHSPrelude
 import Data.Char
@@ -19,6 +20,7 @@
 import Data.Version
 import System.Directory
 import System.Environment
+import System.FilePath
 import System.IO
 import System.IO.MD5
 import System.IO.Serialize
@@ -126,11 +128,21 @@
           when (verbosityGT flags 1) $ do
             ms <- gets getWorking
             putStrLnInd $ "[from " ++ head (map showIdent ms ++ ["-"]) ++ "]"
-            putStrLnInd $ "importing " ++ showIdent mn
+            putStrInd $ "importing " ++ showIdent mn
           mres <- liftIO (readModulePath flags ".hs" mn)
           case mres of
-            Nothing -> findPkgModule flags mn
+            Nothing -> do
+              (fn, res) <- findPkgModule flags mn
+              liftIO $ when (verbosityGT flags 1) $ do
+                when (verbosityGT flags 2) $
+                  putStrLn $ " (" ++ show fn ++ ")"
+                putStrLn ""
+              return res
             Just (pathfn, file) -> do
+              liftIO $ when (verbosityGT flags 1) $ do
+                when (verbosityGT flags 2) $
+                  putStrLn $ " (" ++ show pathfn ++ ")"
+                putStrLn ""
               modify $ addWorking mn
               compileModule flags ImpNormal mn pathfn file
     Just tm -> do
@@ -143,6 +155,11 @@
   ms <- gets getWorking
   liftIO $ putStrLn $ map (const ' ') ms ++ msg
 
+putStrInd :: String -> CM ()
+putStrInd msg = do
+  ms <- gets getWorking
+  liftIO $ putStr $ map (const ' ') ms ++ msg
+
 noSymbols :: Symbols
 noSymbols = (stEmpty, stEmpty)
 
@@ -301,7 +318,7 @@
       mhc <- findModulePath flags (suf ++ "c") mn  -- look for hsc file
       case mhc of
         Nothing -> return Nothing
-        Just (_fn, _h) -> undefined
+        Just (_fn, _h) -> undefined  -- hsc2hs no implemented yet
     Just (fn, h) -> readRest fn h
   where readRest fn h = do
           hasCPP <- hasLangCPP fn
@@ -328,12 +345,12 @@
   scanFor "cpp" . map toLower <$> readFile fn
 
 moduleToFile :: IdentModule -> FilePath
-moduleToFile mn = map (\ c -> if c == '.' then '/' else c) (unIdent mn)
+moduleToFile mn = map (\ c -> if c == '.' then pathSeparator else c) (unIdent mn)
 
 findModulePath :: Flags -> String -> IdentModule -> IO (Maybe (FilePath, Handle))
 findModulePath flags suf mn = do
   let
-    fn = moduleToFile mn ++ suf
+    fn = moduleToFile mn <.> suf
   openFilePath (paths flags) fn
 
 openFilePath :: [FilePath] -> FilePath -> IO (Maybe (FilePath, Handle))
@@ -342,7 +359,7 @@
     [] -> return Nothing
     dir:dirs -> do
       let
-        path = dir ++ "/" ++ fileName
+        path = dir </> fileName
       mh <- openFileM path ReadMode
       case mh of
         Nothing -> openFilePath dirs fileName -- If opening failed, try the next directory
@@ -366,7 +383,7 @@
   mcpphs <- lookupEnv "MHSCPPHS"
   datadir <- getMhsDir
   let cpphs = fromMaybe "cpphs" mcpphs
-      mhsIncludes = ["-I" ++ datadir ++ "/src/runtime"]
+      mhsIncludes = ["-I" ++ datadir </> "src/runtime"]
       args = mhsDefines ++ mhsIncludes ++ map quote (cppArgs flags)
       cmd = cpphs ++ " --strip " ++ unwords args ++ " " ++ infile ++ " -O" ++ outfile
       quote s = "'" ++ s ++ "'"
@@ -382,23 +399,23 @@
 packageTxtSuffix = ".txt"
 
 -- Find the module mn in the package path, and return it's contents.
-findPkgModule :: Flags -> IdentModule -> CM (TModule [LDef], Symbols, Time)
+findPkgModule :: Flags -> IdentModule -> CM (FilePath, (TModule [LDef], Symbols, Time))
 findPkgModule flags mn = do
   t0 <- liftIO getTimeMilli
-  let fn = moduleToFile mn ++ packageTxtSuffix
+  let fn = moduleToFile mn <.> packageTxtSuffix
   mres <- liftIO $ openFilePath (pkgPath flags) fn
   case mres of
     Just (pfn, hdl) -> do
       -- liftIO $ putStrLn $ "findPkgModule " ++ pfn
       pkg <- liftIO $ hGetContents hdl  -- this closes the handle
       let dir = take (length pfn - length fn) pfn  -- directory where the file was found
-      loadPkg flags (dir ++ packageDir ++ "/" ++ pkg)
+      loadPkg flags (dir ++ packageDir </> pkg)
       cash <- get
       case lookupCache mn cash of
         Nothing -> error $ "package does not contain module " ++ pkg ++ " " ++ showIdent mn
         Just t -> do
           t1 <- liftIO getTimeMilli
-          return (t, noSymbols, t1 - t0)
+          return (pfn, (t, noSymbols, t1 - t0))
     Nothing ->
       errorMessage (getSLoc mn) $
         "Module not found: " ++ show mn ++
@@ -431,7 +448,7 @@
 
 loadDeps :: Flags -> IdentPackage -> CM ()
 loadDeps flags pid = do
-  mres <- liftIO $ openFilePath (pkgPath flags) (packageDir ++ "/" ++ unIdent pid ++ packageSuffix)
+  mres <- liftIO $ openFilePath (pkgPath flags) (packageDir </> unIdent pid <.> packageSuffix)
   case mres of
     Nothing -> error $ "Cannot find package " ++ showIdent pid
     Just (pfn, hdl) -> do
diff --git a/src/MicroHs/CompileCache.hs b/src/MicroHs/CompileCache.hs
--- a/src/MicroHs/CompileCache.hs
+++ b/src/MicroHs/CompileCache.hs
@@ -1,7 +1,7 @@
 module MicroHs.CompileCache(
   CModule,
   Cache, addWorking, getWorking, emptyCache, deleteFromCache, workToDone, addBoot, getBoots,
-  cachedModules, lookupCache, lookupCacheChksum, getImportDeps,
+  cachedModules, cachedModuleNames, lookupCache, lookupCacheChksum, getImportDeps,
   addPackage, getCompMdls, getPathPkgs, getPkgs,
   getCacheTables, setCacheTables,
   saveCache, loadCached,
@@ -83,6 +83,9 @@
 
 cachedModules :: Cache -> [TModule [LDef]]
 cachedModules = map tModuleOf . M.elems . cache
+
+cachedModuleNames :: Cache -> [IdentModule]
+cachedModuleNames = M.keys . cache
 
 lookupCache :: IdentModule -> Cache -> Maybe (TModule [LDef])
 lookupCache mn c = tModuleOf <$> M.lookup mn (cache c)
diff --git a/src/MicroHs/Deriving.hs b/src/MicroHs/Deriving.hs
--- a/src/MicroHs/Deriving.hs
+++ b/src/MicroHs/Deriving.hs
@@ -1,6 +1,5 @@
-module MicroHs.Deriving(expandField, doDeriving, mkGetName) where
+module MicroHs.Deriving(expandField, deriveHdr, deriveNoHdr, mkGetName) where
 import Prelude(); import MHSPrelude
---import Control.Monad
 import Data.Char
 import Data.Function
 import Data.List
@@ -19,12 +18,8 @@
 --   constructor names in the derived type unqualified
 --   all other names should be qualified with B@
 
-doDeriving :: EDef -> T [EDef]
-doDeriving def@(Data    lhs cs ds) = (def:) . concat <$> mapM (derive lhs  cs) ds
-doDeriving def@(Newtype lhs  c ds) = (def:) . concat <$> mapM (derive lhs [c]) ds
-doDeriving def                     = return [def]
-
-type Deriver = LHS -> [Constr] -> EConstraint -> T [EDef]
+type DeriverT = LHS -> [Constr] -> EConstraint -> T [EDef]
+type Deriver = Maybe EConstraint -> DeriverT
 
 derivers :: [(String, Deriver)]
 derivers =
@@ -35,22 +30,38 @@
   ,("Data.Ix.Ix",             derNotYet)
   ,("Data.Ord.Ord",           derOrd)
   ,("Data.Typeable.Typeable", derTypeable)
-  ,("Text.Read.Internal.Read",derNotYet)
+  ,("GHC.Generics.Generic",   derNotYet)
+  ,("Language.Haskell.TH.Syntax.Lift", derLift)
+  ,("Text.Read.Internal.Read",derRead)
   ,("Text.Show.Show",         derShow)
   ]
 
-derive :: Deriver
-derive lhs cs d = do
+deriveHdr :: DeriverT
+deriveHdr = deriveNoHdr' Nothing
+
+deriveNoHdr :: EConstraint -> DeriverT
+deriveNoHdr ctx = deriveNoHdr' (Just ctx)
+
+deriveNoHdr' :: Maybe EConstraint -> DeriverT
+deriveNoHdr' mctx lhs cs d = do
   let c = getAppCon d
   case lookup (unIdent c) derivers of
     Nothing -> tcError (getSLoc c) $ "Cannot derive " ++ show c
-    Just f  -> f lhs cs d
+    Just f  -> f mctx lhs cs d
 
 derNotYet :: Deriver
-derNotYet _ _ d = do
-  traceM ("Warning: cannot derive " ++ show d ++ " yet, " ++ showSLoc (getSLoc d))
+derNotYet _ _ _ d = do
+  notYet d
   return []
 
+notYet :: EConstraint -> T ()
+notYet d =
+  traceM ("Warning: cannot derive " ++ show d ++ " yet, " ++ showSLoc (getSLoc d))
+
+-- We will never have Template Haskell, but we pretend we can derive Lift for it.
+derLift :: Deriver
+derLift _ _ _ _ = return []
+
 --------------------------------------------
 
 expandField :: EDef -> T [EDef]
@@ -120,7 +131,7 @@
 --------------------------------------------
 
 derTypeable :: Deriver
-derTypeable (i, _) _ etyp = do
+derTypeable _ (i, _) _ etyp = do
   mn <- gets moduleName
   let
     loc = getSLoc i
@@ -136,19 +147,25 @@
 
 --------------------------------------------
 
-getConstrTyVars :: Constr -> [Ident]
-getConstrTyVars (Constr evs ctx _ flds) =
-  let vs = freeTyVars $ ctx ++ either (map snd) (map (snd . snd)) flds
-  in  vs \\ map idKindIdent evs
+getFieldTys :: (Either [SType] [ConstrField]) -> [EType]
+getFieldTys (Left ts) = map snd ts
+getFieldTys (Right ts) = map (snd . snd) ts
 
-mkHdr :: LHS -> [Constr] -> EConstraint -> T EConstraint
-mkHdr (t, iks) cs cls = do
+decomp :: EType -> [EType]
+decomp t | Just (c, ts) <- getAppM t, isConIdent c = concatMap decomp ts
+         | otherwise = [t]
+
+-- If there is no mctx we use the default strategy to derive the instance context.
+-- The default strategy basically extracts all subtypes with variables.
+mkHdr :: Maybe EConstraint -> LHS -> [Constr] -> EConstraint -> T EConstraint
+mkHdr (Just ctx) _ _ _ = return ctx
+mkHdr _ (t, iks) cs cls = do
   mn <- gets moduleName
-  let used = foldr (union . getConstrTyVars) [] cs  -- Used type variables
-      iks' = filter ((`elem` used) . idKindIdent) iks
-      vs = map tVarK iks'
+  let ctys :: [EType]  -- All top level types used by the constructors.
+      ctys = nubBy eqEType [ tt | Constr evs _ _ flds <- cs, ft <- getFieldTys flds, tt <- decomp ft,
+                            not $ null $ freeTyVars [tt] \\ map idKindIdent evs, not (eqEType ty tt) ]
       ty = tApps (qualIdent mn t) $ map tVarK iks
-  pure $ eForall iks $ addConstraints (map (tApp cls) vs) $ tApp cls ty
+  pure $ eForall iks $ addConstraints (map (tApp cls) ctys) $ tApp cls ty
 
 mkPat :: Constr -> String -> (EPat, [Expr])
 mkPat (Constr _ _ c flds) s =
@@ -157,11 +174,14 @@
       vs = map (EVar . mkIdentSLoc loc . (s ++) . show) [1..n]
   in  (tApps c vs, vs)
 
+cannotDerive :: String -> Ident -> EConstraint -> T [EDef]
+cannotDerive cls ty e = tcError (getSLoc e) $ "Cannot derive " ++ cls ++ " " ++ show ty
+
 --------------------------------------------
 
 derEq :: Deriver
-derEq lhs cs@(_:_) eeq = do
-  hdr <- mkHdr lhs cs eeq
+derEq mctx lhs cs@(_:_) eeq = do
+  hdr <- mkHdr mctx lhs cs eeq
   let loc = getSLoc eeq
       mkEqn c =
         let (xp, xs) = mkPat c "x"
@@ -176,13 +196,13 @@
       inst = Instance hdr [BFcn iEq eqns]
 --  traceM $ showEDefs [inst]
   return [inst]
-derEq (c, _) _ e = cannotDerive "Eq" c e
+derEq _ (c, _) _ e = cannotDerive "Eq" c e
 
 --------------------------------------------
 
 derOrd :: Deriver
-derOrd lhs cs@(_:_) eord = do
-  hdr <- mkHdr lhs cs eord
+derOrd mctx lhs cs@(_:_) eord = do
+  hdr <- mkHdr mctx lhs cs eord
   let loc = getSLoc eord
       mkEqn c =
         let (xp, xs) = mkPat c "x"
@@ -200,15 +220,14 @@
       inst = Instance hdr [BFcn iCompare eqns]
 --  traceM $ showEDefs [inst]
   return [inst]
-derOrd (c, _) _ e = cannotDerive "Ord" c e
+derOrd _ (c, _) _ e = cannotDerive "Ord" c e
 
 --------------------------------------------
 
 derBounded :: Deriver
-derBounded lhs cs@(c0:_) ebnd = do
-  hdr <- mkHdr lhs cs ebnd
+derBounded mctx lhs cs@(c0:_) ebnd = do
+  hdr <- mkHdr mctx lhs cs ebnd
   let loc = getSLoc ebnd
-
       mkEqn bnd (Constr _ _ c flds) =
         let n = either length length flds
         in  eEqn [] $ tApps c (replicate n (EVar bnd))
@@ -220,16 +239,13 @@
       inst = Instance hdr [BFcn iMinBound [minEqn], BFcn iMaxBound [maxEqn]]
   -- traceM $ showEDefs [inst]
   return [inst]
-derBounded (c, _) _ e = cannotDerive "Bounded" c e
-
-cannotDerive :: String -> Ident -> EConstraint -> T [EDef]
-cannotDerive cls ty e = tcError (getSLoc e) $ "Cannot derive " ++ cls ++ " " ++ show ty
+derBounded _ (c, _) _ e = cannotDerive "Bounded" c e
 
 --------------------------------------------
 
 derEnum :: Deriver
-derEnum lhs cs@(_:_) enm | all isNullary cs = do
-  hdr <- mkHdr lhs cs enm
+derEnum mctx lhs cs@(_:_) enm | all isNullary cs = do
+  hdr <- mkHdr mctx lhs cs enm
   let loc = getSLoc enm
 
       mkFrom (Constr _ _ c _) i =
@@ -244,7 +260,7 @@
       inst = Instance hdr [BFcn iFromEnum fromEqns, BFcn iToEnum toEqns]
   --traceM $ showEDefs [inst]
   return [inst]
-derEnum (c, _) _ e = cannotDerive "Enum" c e
+derEnum _ (c, _) _ e = cannotDerive "Enum" c e
 
 isNullary :: Constr -> Bool
 isNullary (Constr _ _ _ flds) = either null null flds
@@ -252,8 +268,8 @@
 --------------------------------------------
 
 derShow :: Deriver
-derShow lhs cs@(_:_) eshow = do
-  hdr <- mkHdr lhs cs eshow
+derShow mctx lhs cs@(_:_) eshow = do
+  hdr <- mkHdr mctx lhs cs eshow
   let loc = getSLoc eshow
       mkEqn c@(Constr _ _ nm flds) =
         let (xp, xs) = mkPat c "x"
@@ -286,7 +302,7 @@
       inst = Instance hdr [BFcn iShowsPrec eqns]
 --  traceM $ showEDefs [inst]
   return [inst]
-derShow (c, _) _ e = cannotDerive "Show" c e
+derShow _ (c, _) _ e = cannotDerive "Show" c e
 
 unIdentPar :: Ident -> String
 unIdentPar i =
@@ -297,8 +313,25 @@
 
 -- Deriving for the fake Data class.
 derData :: Deriver
-derData lhs cs edata = do
-  hdr <- mkHdr lhs cs edata
+derData mctx lhs cs edata = do
+  notYet edata
+  hdr <- mkHdr mctx lhs cs edata
   let
     inst = Instance hdr []
   return [inst]
+
+--------------------------------------------
+
+derRead :: Deriver
+derRead mctx lhs cs eread = do
+  notYet eread
+  hdr <- mkHdr mctx lhs cs eread
+  let
+    loc = getSLoc eread
+    iReadPrec = mkIdentSLoc loc "readPrec"
+    err = eEqn [] $ EApp (EVar $ mkBuiltin loc "error") (ELit loc (LStr "readPrec not defined"))
+    inst = Instance hdr [BFcn iReadPrec [err]]
+  return [inst]
+
+--------------------------------------------
+
diff --git a/src/MicroHs/Desugar.hs b/src/MicroHs/Desugar.hs
--- a/src/MicroHs/Desugar.hs
+++ b/src/MicroHs/Desugar.hs
@@ -45,11 +45,7 @@
           in (qualIdent mn c, encConstr i n ss)
       in  zipWith dsConstr [0::Int ..] cs
     Newtype _ (Constr _ _ c _) _ -> [ (qualIdent mn c, Lit (LPrim "I")) ]
-    Type _ _ -> []
     Fcn f eqns -> [(f, wrapTick (useTicks flags) f $ dsEqns (getSLoc f) eqns)]
-    Sign _ _ -> []
-    KindSign _ _ -> []
-    Import _ -> []
     ForImp ie i t -> [(i, if isIO t then frgn else App perf frgn)]
       where frgn = Lit $ LForImp (fromMaybe (unIdent (unQualIdent i)) ie) cty
             cty = CType t
@@ -57,19 +53,16 @@
             isIO x | Just (_, r) <- getArrow x = isIO r
             isIO (EApp (EVar io) _) = io == mkIdent "Primitives.IO"
             isIO _ = False
-    Infix _ _ -> []
     Class ctx (c, _) _ bs ->
       let f = mkIdent "$f"
           meths :: [Ident]
-          meths = [ qualIdent mn i | (BSign i _) <- bs ]
+          meths = [ qualIdent mn i | (BSign is _) <- bs, i <- is ]
           supers :: [Ident]
           supers = [ qualIdent mn $ mkSuperSel c i | i <- [1 .. length ctx] ]
           xs = [ mkIdent ("$x" ++ show j) | j <- [ 1 .. length ctx + length meths ] ]
       in  (qualIdent mn $ mkClassConstructor c, lams xs $ Lam f $ apps (Var f) (map Var xs)) :
           zipWith (\ i x -> (i, Lam f $ App (Var f) (lams xs $ Var x))) (supers ++ meths) xs
-    Instance _ _ -> []
-    Default _ _ -> []
-    Pattern _ _ -> []
+    _ -> []
 
 wrapTick :: Bool -> Ident -> Exp -> Exp
 wrapTick False _ ee = ee
@@ -193,8 +186,10 @@
   in  letRecE v (bnds $ mkTupleE es) $
       bnds body
 
+-- In case we are cross compiling for a 32 bit platform we don't want integers that are too big.
+-- So we use the 32 bit bounds on the int encoding.
 encodeInteger :: Integer -> Exp
-encodeInteger i | toInteger (minBound::Int) <= i && i < toInteger (maxBound::Int) =
+encodeInteger i | -0x80000000 <= i && i <= 0x7fffffff  =
 --  trace ("*** small integer " ++ show i) $
   App (Var (mkIdent "Data.Integer_Type._intToInteger")) (Lit (LInt (fromInteger i)))
                 | otherwise =
@@ -358,12 +353,14 @@
 
 dsLazy :: Arm -> Arm
 dsLazy (ps, rhs) =
+  -- Accumulate lazy bindings and strict bindings
   let ((_, rbs, ris), ps') = mapAccumL lazy (1, [], []) ps
       lazy :: (Int, [EBind], [Exp]) -> EPat -> ((Int, [EBind], [Exp]), EPat)
       lazy s@(n, bs, is) ap =
         case ap of
-          ELazy False p'@(EVar i) -> ((n, bs, Var i : is), p')
-          ELazy False p'          -> lazy (n, bs, is) p'
+          ELazy False p'@(EVar i) | not (isDummyIdent i)        -- XXX !_ doesn't work
+                                  -> ((n, bs, Var i : is), p')
+          ELazy False p'          -> lazy (n, bs, is) p'        -- ignore ! on non-variables for now
           ELazy True  p'          -> ((n+1, b:bs, is), EVar v)
             where v = mkIdent ("~" ++ show n)
                   b = BPat p' (EVar v)
diff --git a/src/MicroHs/EncodeData.hs b/src/MicroHs/EncodeData.hs
--- a/src/MicroHs/EncodeData.hs
+++ b/src/MicroHs/EncodeData.hs
@@ -76,7 +76,7 @@
     fs = map (\ k -> if k == i then f else dummyIdent) [0::Int .. n-1]
     xs = [mkIdent ("$x" ++ show j) | (j, _) <- zip [0::Int ..] ss]
     strict (False:ys) (_:is) e = strict ys is e
-    strict (True:ys)  (x:is) e = App (App (Lit (LPrim "seq")) (Var x)) (strict ys is e)
+    strict (True:ys)  (x:is) e = app2 (Lit (LPrim "seq")) (Var x) (strict ys is e)
     strict _ _ e = e
   in lams xs $ strict ss xs $ lams fs $ apps (Var f) (map Var xs)  
 
@@ -112,7 +112,7 @@
   let
     xs = [mkIdent ("$x" ++ show j) | (j, _) <- zip [0::Int ..] ss]
     strict (False:ys) (_:is) e = strict ys is e
-    strict (True:ys)  (x:is) e = App (App (Lit (LPrim "seq")) (Var x)) (strict ys is e)
+    strict (True:ys)  (x:is) e = app2 (Lit (LPrim "seq")) (Var x) (strict ys is e)
     strict _ _ e = e
   in lams xs $ strict ss xs $ tuple [Lit (LInt i), tuple (map Var xs)]
 
@@ -124,11 +124,8 @@
 encCaseNo :: Exp -> [(SPat, Exp)] -> Exp -> Exp
 encCaseNo var pes dflt =
   App var (Lam n $ Lam t $ caseTree (Var n) (Var t) 0 (numConstr pes) pes' dflt)
-  where n = -- newIdent "$n" es --
-            mkIdent "$n"
-        t = -- newIdent "$tt" es --
-            mkIdent "$tt"
-        --es = var : dflt : map snd pes
+  where n = mkIdent "$n"
+        t = mkIdent "$tt"
         pes' = sortBy (\ (x, _, _) (y, _, _) -> compare x y)
                       [(conNo c, xs, e) | (SPat c xs, e) <- pes]
 
diff --git a/src/MicroHs/Exp.hs b/src/MicroHs/Exp.hs
--- a/src/MicroHs/Exp.hs
+++ b/src/MicroHs/Exp.hs
@@ -1,5 +1,4 @@
 {-# OPTIONS_GHC -Wno-unused-imports #-}
-{-# LANGUAGE PatternSynonyms #-}
 -- Copyright 2023 Lennart Augustsson
 -- See LICENSE file for full license.
 module MicroHs.Exp(
diff --git a/src/MicroHs/Expr.hs b/src/MicroHs/Expr.hs
--- a/src/MicroHs/Expr.hs
+++ b/src/MicroHs/Expr.hs
@@ -47,6 +47,7 @@
   mkEStr, mkExn,
   getAppM,
   TyVar, freeTyVars,
+  getImplies,
   ) where
 import Prelude(); import MHSPrelude hiding ((<>))
 import Control.Arrow(first)
@@ -84,7 +85,9 @@
   | Class [EConstraint] LHS [FunDep] [EBind]  -- XXX will probable need initial forall with FD
   | Instance EConstraint [EBind]
   | Default (Maybe Ident) [EType]
-  | Pattern LHS EPat
+  | Pattern LHS EPat (Maybe [Eqn])
+  | PatternSign [Ident] EType
+  | Deriving EConstraint
 --DEBUG  deriving (Show)
 
 data ImpType = ImpNormal | ImpBoot
@@ -217,7 +220,7 @@
 data EBind
   = BFcn Ident [Eqn]
   | BPat EPat Expr
-  | BSign Ident EType
+  | BSign [Ident] EType
   | BDfltSign Ident EType     -- only in class declarations
 --DEBUG  deriving (Show)
 
@@ -273,7 +276,7 @@
   [IdKind] [EConstraint]          -- existentials: forall vs . ctx =>
   Ident                           -- constructor name
   (Either [SType] [ConstrField])  -- types or named fields
---DEBUG  deriving(Show)
+  deriving(Show)
 
 type ConstrField = (Ident, SType)              -- record label and type
 type SType = (Bool, EType)                     -- the Bool indicates strict
@@ -307,12 +310,15 @@
 kConstraint = EVar (mkIdent "Primitives.Constraint")
 
 tupleConstr :: SLoc -> Int -> Ident
+tupleConstr loc 0 = mkIdentSLoc loc "()"
+tupleConstr   _ 1 = error "tupleConstr"
 tupleConstr loc n = mkIdentSLoc loc (replicate (n - 1) ',')
 
 -- Check if it is a tuple constructor
 getTupleConstr :: Ident -> Maybe Int
 getTupleConstr i =
   case unIdent i of
+    "()" -> Just 0
     ',':xs -> Just (length xs + 2)  -- "," is 2-tuple
     _ -> Nothing
 
@@ -474,7 +480,7 @@
   case abind of
     BFcn i eqns -> (i:) . composeMap allVarsEqn eqns
     BPat p e -> allVarsPat p . allVarsExpr' e
-    BSign i _ -> (i:)
+    BSign is _ -> (is ++)
     BDfltSign i _ -> (i:)
 
 allVarsEqns :: [Eqn] -> [Ident]
@@ -631,7 +637,8 @@
     Class sup lhs fds bs -> ppWhere (text "class" <+> ppCtx sup <+> ppLHS lhs <+> ppFunDeps fds) bs
     Instance ct bs -> ppWhere (text "instance" <+> ppEType ct) bs
     Default mc ts -> text "default" <+> (maybe empty ppIdent mc) <+> parens (hsep (punctuate (text ", ") (map ppEType ts)))
-    Pattern lhs p -> text "pattern" <+> ppLHS lhs <+> text "=" <+> ppExpr p
+    Pattern lhs@(i,_) p meqns -> text "pattern" <+> ppLHS lhs <+> text "=" <+> ppExpr p <+> maybe empty (ppWhere (text ";") . (:[]) . BFcn i) meqns
+    Deriving ct -> text "deriving instance" <+> ppEType ct
 
 ppDeriving :: Deriving -> Doc
 ppDeriving [] = empty
@@ -800,8 +807,8 @@
   case ab of
     BFcn i eqns -> ppEDef (Fcn i eqns)
     BPat p e -> ppEPat p <+> text "=" <+> ppExpr e
-    BSign i t -> ppIdent i <+> text "::" <+> ppEType t
-    BDfltSign i t -> text "default" <+> ppEBind (BSign i t)
+    BSign is t -> ppEDef (Sign is t)
+    BDfltSign i t -> text "default" <+> ppEBind (BSign [i] t)
 
 ppCaseArm :: ECaseArm -> Doc
 ppCaseArm arm =
@@ -908,4 +915,9 @@
     go bound (EParen e) acc = go bound e acc
     go _ x _ = error ("freeTyVars: " ++ show x) --  impossibleShow x
     goList bound es acc = foldr (go bound) acc es
+
+getImplies :: EType -> Maybe (EType, EType)
+getImplies (EApp (EApp (EVar n) a) b) =
+  if isIdent "=>" n || isIdent "Primitives.=>" n then Just (a, b) else Nothing
+getImplies _ = Nothing
 
diff --git a/src/MicroHs/FFI.hs b/src/MicroHs/FFI.hs
--- a/src/MicroHs/FFI.hs
+++ b/src/MicroHs/FFI.hs
@@ -149,7 +149,7 @@
   , ("Primitives.Int",    "Int")
   , ("Primitives.Word",   "Word")
   , ("Data.Word.Word8",   "Word8")
-  , ("Primitives.()",     "Unit")
+  , ("()",                "Unit")
   , ("System.IO.Handle",  "Ptr")
   ] ++ map (\ t -> ("Foreign.C.Types." ++ t, t))
   [ "CChar",
diff --git a/src/MicroHs/IdentMap.hs b/src/MicroHs/IdentMap.hs
--- a/src/MicroHs/IdentMap.hs
+++ b/src/MicroHs/IdentMap.hs
@@ -14,7 +14,7 @@
   null,
   size,
   toList, elems, keys,
-  merge,
+  merge, mergeWith,
   mapM,
   ) where
 import Prelude(); import MHSPrelude hiding(lookup, mapM, null)
@@ -195,3 +195,7 @@
 merge :: Map a -> Map a -> Map a
 merge m1 m2 | size m1 <= size m2 = foldr (uncurry insert) m2 (toList m1)
             | otherwise = merge m2 m1
+
+mergeWith :: (a -> a -> a) -> Map a -> Map a -> Map a
+mergeWith f m1 m2 | size m1 <= size m2 = foldr (uncurry $ insertWith f) m2 (toList m1)
+                  | otherwise = mergeWith f m2 m1
diff --git a/src/MicroHs/Interactive.hs b/src/MicroHs/Interactive.hs
--- a/src/MicroHs/Interactive.hs
+++ b/src/MicroHs/Interactive.hs
@@ -57,8 +57,9 @@
 
 repl :: I ()
 repl = do
+  mdls <- gets (cachedModuleNames . isCache)
   syms <- gets isSymbols
-  ms <- liftIO $ getInputLineHistComp (return . complete syms) ".mhsi" "> "
+  ms <- liftIO $ getInputLineHistComp (return . complete mdls syms) ".mhsi" "> "
   case ms of
     Nothing -> repl
     Just s ->
@@ -183,7 +184,7 @@
 err e = err' $ displayException e
 
 err' :: String -> IO ()
-err' s = putStrLn $ "Exception: " ++ s
+err' s = putStrLn $ "*** Exception: " ++ s
 
 oneline :: String -> I ()
 oneline line = do
@@ -283,10 +284,11 @@
 --  operator completion
 --  completion with qualified names
 
-complete :: Symbols -> (String, String) -> [String]
-complete (tys, vals) (rpre, _post) =
-  let pre = reverse $ takeWhile isIdentChar rpre
-      allSyms = map unIdent $ stKeysGlbU tys ++ stKeysGlbU vals
+complete :: [Ident] -> Symbols -> (String, String) -> [String]
+complete mdls (tys, vals) (rpre, _post) =
+  let pre = reverse $ takeWhile isId rpre
+      isId c = isIdentChar c || c == '.'
+      allSyms = map unIdent $ stKeysGlbU tys ++ stKeysGlbU vals ++ mdls
       allStrs = allSyms ++ keywords
       real = notElem '$'
   in  case filter real $ catMaybes $ map (stripPrefix pre) allStrs of
diff --git a/src/MicroHs/Main.hs b/src/MicroHs/Main.hs
--- a/src/MicroHs/Main.hs
+++ b/src/MicroHs/Main.hs
@@ -25,6 +25,7 @@
 import MicroHs.MakeCArray
 import System.Cmd
 import System.Exit
+import System.FilePath
 import System.Directory
 import System.IO
 import System.IO.Serialize
@@ -45,8 +46,10 @@
    _ -> do
     let dflags = (defaultFlags dir){ pkgPath = pkgPaths }
         (flags, mdls, rargs) = decodeArgs dflags [] args
-        pkgPaths | dir == dataDir && dir /= "." = [dropTrailing 3 dataDir]  -- This is a bit ugly
+        pkgPaths | dir == dataDir && dir /= "." = [takeDirectory $ takeDirectory $ takeDirectory dataDir]   -- This is a bit ugly
                  | otherwise                    = []                        -- No package search path
+    when (verbosityGT flags 1) $
+      putStrLn $ "flags = " ++ show flags
     case listPkg flags of
       Just p -> mainListPkg flags p
       Nothing ->
@@ -55,20 +58,13 @@
           Nothing ->
             if installPkg flags then mainInstallPackage flags mdls else
             withArgs rargs $ do
-              when (verbosityGT flags 1) $
-                putStrLn $ "flags = " ++ show flags
               case mdls of
                 []  -> mainInteractive flags
                 [s] -> mainCompile flags (mkIdentSLoc (SLoc "command-line" 0 0) s)
                 _   -> error usage
 
 usage :: String
-usage = "Usage: mhs [--version] [--numeric-version] [-v] [-q] [-l] [-r] [-C[R|W]] [-XCPP] [-Ddef] [-IPATH] [-T] [-z] [-iPATH] [-oFILE] [-a[PATH]] [-LPATH] [-PPKG] [-Q PKG [DIR]] [-tTARGET] [ModuleName...]"
-
--- Drop trailing '/foo'
-dropTrailing :: Int -> FilePath -> FilePath
-dropTrailing 0 s = s
-dropTrailing n s = dropTrailing (n-1) . reverse . drop 1 . dropWhile (/= '/') . reverse $ s
+usage = "Usage: mhs [--version] [--numeric-version] [-v] [-q] [-l] [-r] [-C[R|W]] [-XCPP] [-DDEF] [-IPATH] [-T] [-z] [-iPATH] [-oFILE] [-a[PATH]] [-L[PATH|PKG]] [-PPKG] [-Q PKG [DIR]] [-tTARGET] [-optc OPTION] [MODULENAME..|FILE]"
 
 decodeArgs :: Flags -> [String] -> [String] -> (Flags, [String], [String])
 decodeArgs f mdls [] = (f, mdls, [])
@@ -86,20 +82,22 @@
     "-XCPP"     -> decodeArgs f{doCPP = True} mdls args
     "-z"        -> decodeArgs f{compress = True} mdls args
     "-Q"        -> decodeArgs f{installPkg = True} mdls args
+    "-o" | s : args' <- args
+                -> decodeArgs f{output = s} mdls args'
+    "-optc" | s : args' <- args
+                -> decodeArgs f{cArgs = cArgs f ++ [s]} mdls args'
     '-':'i':[]  -> decodeArgs f{paths = []} mdls args
     '-':'i':s   -> decodeArgs f{paths = paths f ++ [s]} mdls args
-    '-':'o':[] | s : args' <- args
-                -> decodeArgs f{output = 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
     '-':'a':[]  -> decodeArgs f{pkgPath = []} mdls args
-    '-':'a':s   -> decodeArgs f{pkgPath = s : pkgPath f} mdls args
+    '-':'a':s   -> decodeArgs f{pkgPath = pkgPath f ++ [s]} mdls args
     '-':'L':s   -> decodeArgs f{listPkg = Just s} mdls args
     '-':_       -> error $ "Unknown flag: " ++ arg ++ "\n" ++ usage
-    _ | ".c" `isSuffixOf` arg || ".o" `isSuffixOf` arg || ".a" `isSuffixOf` arg
+    _ | arg `hasTheExtension` ".c" || arg `hasTheExtension` ".o" || arg `hasTheExtension` ".a"
                 -> decodeArgs f{cArgs = cArgs f ++ [arg]} mdls args
       | otherwise
                 -> decodeArgs f (mdls ++ [arg]) args
@@ -107,7 +105,7 @@
 
 readTargets :: Flags -> FilePath -> IO [Target]
 readTargets flags dir = do
-  let tgFilePath = dir ++ "/targets.conf"
+  let tgFilePath = dir </> "targets.conf"
   exists <- doesFileExist tgFilePath
   if not exists 
      then return []
@@ -180,7 +178,21 @@
   where readVersion = map readInt . words . map (\ c -> if c == '.' then ' ' else c)
 
 mainListPkg :: Flags -> FilePath -> IO ()
-mainListPkg _flags pkgfn = do
+mainListPkg flags "" = mainListPackages flags
+mainListPkg flags pkg = do
+  ok <- doesFileExist pkg
+  if ok then
+    mainListPkg' flags pkg
+   else do
+    mres <- openFilePath (pkgPath flags) (packageDir </> pkg <.> packageSuffix)
+    case mres of
+      Nothing -> error $ "Cannot find " ++ pkg
+      Just (pfn, hdl) -> do
+        hClose hdl
+        mainListPkg' flags pfn
+
+mainListPkg' :: Flags -> FilePath -> IO ()
+mainListPkg' _flags pkgfn = do
   pkg <- readSerialized pkgfn
   putStrLn $ "name: " ++ showIdent (pkgName pkg)
   putStrLn $ "version: " ++ showVersion (pkgVersion pkg)
@@ -231,9 +243,9 @@
     --  * file ends in .c: write C version of combinator
     --  * otherwise, write C file and compile to a binary with cc
     let outFile = output flags
-    if ".comb" `isSuffixOf` outFile then
+    if outFile `hasTheExtension` ".comb" then
       writeFile outFile outData
-     else if ".c" `isSuffixOf` outFile then
+     else if outFile `hasTheExtension` ".c" then
       writeFile outFile cCode
      else do
        (fn, h) <- openTmpFile "mhsc.c"
@@ -243,15 +255,20 @@
        mcc <- lookupEnv "MHSCC"
        let dir = mhsdir flags
            ppkgs   = map fst $ getPathPkgs cash
-           incDirs = map (convertToInclude "/include") ppkgs
-           cDirs   = map (convertToInclude "/cbits") ppkgs
+           incDirs = map (convertToInclude "include") ppkgs
+           cDirs   = map (convertToInclude "cbits") ppkgs
        incDirs' <- filterM doesDirectoryExist incDirs
        cDirs'   <- filterM doesDirectoryExist cDirs
-       --print (map fst $ getPathPkgs cash, incDirs, incDirs')
+       -- print (map fst $ getPathPkgs cash, (incDirs, incDirs'), (cDirs, cDirs'))
        let incs = unwords $ map ("-I" ++) incDirs'
+           defs = "-D__MHS__"
+           cpps = concatMap (\ a -> "'" ++ a ++ "' ") (cppArgs flags)  -- Use all CPP args from the command line
        TTarget _ compiler conf <- readTarget flags dir
        let dcc = compiler ++ " -w -Wall -O3 -I" ++ dir ++ "/src/runtime " ++
-                             incs ++ " " ++ dir ++ "/src/runtime/eval-" ++ conf ++ ".c " ++
+                             incs ++ " " ++
+                             defs ++ " " ++
+                             cpps ++
+                             dir ++ "/src/runtime/eval-" ++ conf ++ ".c " ++
                              unwords (cArgs flags) ++
                              unwords (map (++ "/*.c") cDirs') ++
                              " $IN -lm -o $OUT"
@@ -272,16 +289,16 @@
   when (verbosityGT flags (-1)) $
     putStrLn $ "Installing package " ++ pkgfn ++ " in " ++ dir
   pkg <- readSerialized pkgfn
-  let pdir = dir ++ "/" ++ packageDir
-      pkgout = unIdent (pkgName pkg) ++ "-" ++ showVersion (pkgVersion pkg) ++ packageSuffix
+  let pdir = dir </> packageDir
+      pkgout = unIdent (pkgName pkg) ++ "-" ++ showVersion (pkgVersion pkg) <.> packageSuffix
   createDirectoryIfMissing True pdir
-  copyFile pkgfn (pdir ++ "/" ++ pkgout)
+  copyFile pkgfn (pdir </> pkgout)
   let mk tm = do
-        let fn = dir ++ "/" ++ moduleToFile (tModuleName tm) ++ packageTxtSuffix
-            d = dropWhileEnd (/= '/') fn
+        let fn = dir </> moduleToFile (tModuleName tm) <.> packageTxtSuffix
+            dn = takeDirectory fn
         when (verbosityGT flags 2) $
           putStrLn $ "create " ++ fn
-        createDirectoryIfMissing True d
+        createDirectoryIfMissing True dn
         writeFile fn pkgout
   mapM_ mk (pkgExported pkg)
 mainInstallPackage flags [pkgfn] =
@@ -290,14 +307,24 @@
     first:_ -> mainInstallPackage flags [pkgfn, first]
 mainInstallPackage _ _ = error usage
 
+mainListPackages :: Flags -> IO ()
+mainListPackages flags = mapM_ list (pkgPath flags)
+  where list dir = do
+          let pdir = dir </> packageDir
+          ok <- doesDirectoryExist pdir
+          when ok $ do
+            files <- getDirectoryContents pdir
+            let pkgs = [ b | f <- files, Just b <- [stripSuffix ".pkg" f] ]
+            putStrLn $ pdir ++ ":"
+            mapM_ (\ p -> putStrLn $ "  " ++ p) pkgs
+
+
 -- Convert something like
 --   .../.mcabal/mhs-0.10.3.0/packages/base-0.10.3.0.pkg
 -- into
---   .../.mcabal/mhs-0.10.3.0/data/base-0.10.3.0/include
+--   .../.mcabal/mhs-0.10.3.0/packages/base-0.10.3.0/include
 convertToInclude :: String -> FilePath -> FilePath
-convertToInclude inc pkg =
-  let path1 = init $ dropWhileEnd (/= '/') pkg      --   .../.mcabal/mhs-0.10.3.0/packages
-      base1 = takeWhileEnd (/= '/') pkg             --   base-0.10.3.0.pkg
-      base2 = init $ dropWhileEnd (/= '.') base1    --   base-0.10.3.0
-      path2 = dropWhileEnd (/= '/') path1           --   .../.mcabal/mhs-0.10.3.0/
-  in  path2 ++ "data/" ++ base2 ++ inc              --   .../.mcabal/mhs-0.10.3.0/data/base-0.10.3.0/include
+convertToInclude inc pkg = dropExtension pkg </> inc
+
+hasTheExtension :: FilePath -> String -> Bool
+hasTheExtension f e = isSuffixOf e f
diff --git a/src/MicroHs/Parse.hs b/src/MicroHs/Parse.hs
--- a/src/MicroHs/Parse.hs
+++ b/src/MicroHs/Parse.hs
@@ -106,7 +106,6 @@
     mk = mkIdentSLoc loc
   
   (mk . map (const ',') <$> (pSpec '(' *> esome (pSpec ',') <* pSpec ')'))
-    <|< (mk "()" <$ (pSpec '(' *> pSpec ')'))  -- Allow () as a constructor name
     <|< (mk "[]" <$ (pSpec '[' *> pSpec ']'))  -- Allow [] as a constructor name
 
 -- Upper case, possibly qualified, alphanumeric identifier
@@ -312,14 +311,17 @@
   <|< Sign         <$> ((esepBy1 pLIdentSym (pSpec ',')) <* dcolon) <*> pType
   <|< Import       <$> (pKeyword "import"   *> pImportSpec)
   <|< ForImp       <$> (pKeyword "foreign"  *> pKeyword "import" *> (pKeyword "ccall" <|> pKeyword "capi")
-                        *> eoptional (pKeyword "unsafe") *> eoptional pString) <*> pLIdent <*> (pSymbol "::" *> pType)
+                        *> eoptional (pKeyword "unsafe") *> eoptional pString) <*> pLIdent <*> (dcolon *> pType)
   <|< Infix        <$> ((,) <$> pAssoc <*> pPrec) <*> esepBy1 pTypeOper (pSpec ',')
   <|< Class        <$> (pKeyword "class"    *> pContext) <*> pLHS <*> pFunDeps     <*> pWhere pClsBind
   <|< Instance     <$> (pKeyword "instance" *> pType) <*> pWhere pInstBind
   <|< Default      <$> (pKeyword "default"  *> eoptional clsSym) <*> pParens (esepBy pType (pSpec ','))
-  <|< KindSign     <$> (pKeyword "type"     *> pTypeIdentSym) <*> (pSymbol "::" *> pKind)
-  <|< Pattern      <$> (pKeyword "pattern"  *> pLHS) <*> pPatternDef
-  <|< Sign         <$> (pKeyword "pattern" *> (esepBy1 pUIdentSym (pSpec ',')) <* dcolon) <*> pType
+  <|< KindSign     <$> (pKeyword "type"     *> pTypeIdentSym) <*> (dcolon *> pKind)
+  <|< mkPattern    <$> (pKeyword "pattern"  *> pPatSyn)
+  <|< PatternSign  <$> (pKeyword "pattern"  *> (esepBy1 pUIdentSym (pSpec ',')) <* dcolon) <*> pType
+  <|< Deriving     <$> (pKeyword "deriving" *> pKeyword "instance" *> pType)
+  <|< noop         <$  (pKeyword "type"     <* pKeyword "role" <* pTypeIdentSym <*
+                                               (pKeyword "nominal" <|> pKeyword "phantom" <|> pKeyword "representational"))
   where
     pAssoc = (AssocLeft <$ pKeyword "infixl") <|< (AssocRight <$ pKeyword "infixr") <|< (AssocNone <$ pKeyword "infix")
     dig (TInt _ ii) | 0 <= i && i <= 9 = Just i  where i = fromInteger ii
@@ -329,13 +331,30 @@
     pFunDeps = (pSpec '|' *> esepBy1 pFunDep (pSpec ',')) <|< pure []
     pFunDep = (,) <$> esome pLIdent <*> (pSRArrow *> esome pLIdent)
     pField = guardM pFields ((== 1) . either length length)
-    dcolon = pSymbol "::" <|< pSymbol "\x2237"
 
-    pPatternDef = (pSpec '=' *> pPatAndExp) <|< (pSymbol "<-" *> pPat)
-    pPatAndExp = do p <- pPat; guard (isExp p); pure p
-
     clsSym = do s <- pUIdentSym; guard (unIdent s /= "()"); return s
 
+    mkPattern (lhs, pat, meqn) = Pattern lhs pat meqn
+    noop = Infix (AssocLeft, 0) []        -- harmless definition
+
+pPatSyn :: P (LHS, EPat, Maybe [Eqn])
+pPatSyn = do
+  lhs@(i, vs) <- pLHS
+  ( do pSpec '=';
+       p <- pPat
+       guard (isExp p)
+       let eqn = eEqn (map (EVar . idKindIdent) vs) p
+       pure (lhs, p, Just [eqn])
+   ) <|> (
+    do pSymbol "<-"
+       p <- pPat
+       meqns <- optional (pKeyword "where" *> pBraces (pEqns' (\ n _ -> i == n)))
+       pure (lhs, p, fmap snd meqns)
+   )
+
+dcolon :: P ()
+dcolon = pSymbol "::" <|< pSymbol "\x2237"
+
 -- Is a pattern also an expression?
 isExp :: Expr -> Bool
 isExp (EVar _) = True
@@ -364,7 +383,7 @@
 pGADTconstr :: P (Ident, [IdKind], [EConstraint], [SType], EType)
 pGADTconstr = do
   cn <- pUIdentSym
-  pSymbol "::"
+  dcolon
   es <- pForall
   ctx <- pContext
   args <- emany (pSTypeApp <* pSymbol "->")
@@ -385,10 +404,14 @@
   where pDer =     pParens (esepBy pType (pSpec ','))
                <|< ((:[]) <$> pType)
 
+-- List has 0 or 1 elements
 pContext :: P [EConstraint]
 pContext = (pCtx <* pDRArrow) <|< pure []
   where
-    pCtx = pParens (emany pType) <|< ((:[]) <$> pTypeApp)
+    pCtx =     ((:[]) <$> pTypeApp)
+           <|> (eq <$> pTypeArg <*> pTilde <*> pTypeArg)   -- A hack to allow   a~b => ...
+    eq t1 i t2 = [eApp2 (EVar i) t1 t2]
+    pTilde = do i <- pQSymOper; guard (i == mkIdent "~"); return i
 
 pDRArrow :: P ()
 pDRArrow = pSymbol "=>" <|< pSymbol "\x21d2"
@@ -408,7 +431,7 @@
 pFields :: P (Either [SType] [(Ident, SType)])
 pFields = Left  <$> emany pSAType
       -- The <|> is needed because 'emany' can be empty.
-      <|> Right <$> (pSpec '{' *> (concatMap flat <$> esepBy ((,) <$> (esepBy1 pLIdentSym (pSpec ',') <* pSymbol "::") <*> pSType) (pSpec ',') <* pSpec '}'))
+      <|> Right <$> (pSpec '{' *> (concatMap flat <$> esepBy ((,) <$> (esepBy1 pLIdentSym (pSpec ',') <* dcolon) <*> pSType) (pSpec ',') <* pSpec '}'))
   where flat (is, t) = [ (i, t) | i <- is ]
 
 -- XXX This is a mess.
@@ -459,7 +482,7 @@
 pIdKind :: P IdKind
 pIdKind =
       ((\ i -> IdKind i (EVar dummyIdent)) <$> pLIdentSym)          -- dummyIdent indicates that we have no kind info
-  <|< pParens (IdKind <$> pLIdentSym <*> (pSymbol "::" *> pKind))
+  <|< pParens (IdKind <$> pLIdentSym <*> (dcolon *> pKind))
 
 pKind :: P EKind
 pKind = pType
@@ -498,7 +521,7 @@
       (EVar <$> pLQIdentSym)
   <|< (EVar <$> pUQIdentSym)
   <|< pLit
-  <|< (eTuple <$> (pSpec '(' *> esepBy1 pType (pSpec ',') <* pSpec ')'))
+  <|< (eTuple <$> (pSpec '(' *> esepBy pType (pSpec ',') <* pSpec ')'))
   <|< (EListish . LList . (:[]) <$> (pSpec '[' *> pType <* pSpec ']'))  -- Unlike expressions, only allow a single element.
 
 -------------
@@ -517,7 +540,7 @@
       )
   <|< (evar <$> pUQIdentSym <*> optional pUpdate)
   <|< pLit
-  <|< (eTuple <$> (pSpec '(' *> esepBy1 pPat (pSpec ',') <* pSpec ')'))
+  <|< (eTuple <$> (pSpec '(' *> esepBy pPat (pSpec ',') <* pSpec ')'))
   <|< (EListish . LList <$> (pSpec '[' *> esepBy1 pPat (pSpec ',') <* pSpec ']'))
   <|< (EViewPat <$> (pSpec '(' *> pAExpr) <*> (pSRArrow *> pAPat <* pSpec ')'))
   <|< (ELazy True  <$> (pSpec '~' *> pAPat))
@@ -548,8 +571,11 @@
 -------------
 
 pEqns :: P (Ident, [Eqn])
-pEqns = do
-  (name, eqn@(Eqn ps alts)) <- pEqn (\ _ _ -> True)
+pEqns = pEqns' (\ _ _ -> True)
+
+pEqns' :: (Ident -> Int -> Bool) -> P (Ident, [Eqn])
+pEqns' pfst = do
+  (name, eqn@(Eqn ps alts)) <- pEqn pfst
   case (ps, alts) of
     ([], EAlts [_] []) ->
       -- don't collect equations when of the form 'i = e'
@@ -694,7 +720,7 @@
       (EVar   <$> pLQIdentSym)
   <|< (EVar   <$> pUQIdentSym)
   <|< pLit
-  <|< (eTuple <$> (pSpec '(' *> esepBy1 pExpr (pSpec ',') <* pSpec ')'))
+  <|< (eTuple <$> (pSpec '(' *> esepBy pExpr (pSpec ',') <* pSpec ')'))
   <|< EListish <$> (pSpec '[' *> pListish <* pSpec ']')
   <|< (ESectL <$> (pSpec '(' *> pExprOp) <*> (pOperComma <* pSpec ')'))
   <|< (ESectR <$> (pSpec '(' *> pOperCommaNoMinus) <*> (pExprOp <* pSpec ')'))
@@ -729,7 +755,7 @@
 pOperators :: P Ident -> P Expr -> P Expr
 pOperators oper one = do
   r <- pOperators' oper one
-  mt <- eoptional (pSymbol "::" *> pType)
+  mt <- eoptional (dcolon *> pType)
   pure $ maybe r (ESign r) mt
 
 pOperators' :: P Ident -> P Expr -> P Expr
@@ -751,18 +777,17 @@
 pClsBind :: P EBind
 pClsBind = 
       uncurry BFcn <$> pEqns
-  <|< BSign        <$> (pLIdentSym <* pSymbol "::") <*> pType
-  <|< BDfltSign    <$> (pKeyword "default" *> pLIdentSym <* pSymbol "::") <*> pType
+  <|< BSign        <$> ((esepBy1 pLIdentSym (pSpec ',')) <* dcolon) <*> pType
+  <|< BDfltSign    <$> (pKeyword "default" *> pLIdentSym <* dcolon) <*> pType
 
 pInstBind :: P EBind
 pInstBind = 
       uncurry BFcn <$> pEqns
--- no InstanceSig yet  <|< BSign        <$> (pLIdentSym <* pSymbol "::") <*> pType
+-- no InstanceSig yet  <|< BSign        <$> (pLIdentSym <* dcolon) <*> pType
 
 -------------
 
 eTuple :: [Expr] -> Expr
-eTuple [] = error "eTuple"
 eTuple [e] = EParen e
 eTuple es = ETuple es
 
diff --git a/src/MicroHs/TCMonad.hs b/src/MicroHs/TCMonad.hs
--- a/src/MicroHs/TCMonad.hs
+++ b/src/MicroHs/TCMonad.hs
@@ -46,6 +46,7 @@
 type TypeTable  = SymTab           -- kind of type  identifiers, used during kind checking types
 type KindTable  = SymTab           -- sort of kind  identifiers, used during sort checking kinds
 type SynTable   = M.Map EType      -- body of type synonyms
+type DataTable  = M.Map EDef       -- data/newtype definitions (only used for standalone deriving)
 type FixTable   = M.Map Fixity     -- precedence and associativity of operators
 type AssocTable = M.Map [Ident]    -- maps a type identifier to its associated constructors/selectors/methods
 type ClassTable = M.Map ClassInfo  -- maps a class identifier to its associated information
@@ -93,6 +94,7 @@
   fixTable    :: FixTable,              -- fixities, indexed by QIdent
   typeTable   :: TypeTable,             -- type symbol table
   synTable    :: SynTable,              -- synonyms, indexed by QIdent
+  dataTable   :: DataTable,             -- data/newtype definitions
   valueTable  :: ValueTable,            -- value symbol table
   assocTable  :: AssocTable,            -- values associated with a type, indexed by QIdent
   uvarSubst   :: (IM.IntMap EType),     -- mapping from unique id to type
@@ -128,6 +130,9 @@
 
 putSynTable :: SynTable -> T ()
 putSynTable senv = modify $ \ ts -> ts{ synTable = senv }
+
+putDataTable :: DataTable -> T ()
+putDataTable denv = modify $ \ ts -> ts{ dataTable = denv }
 
 putUvarSubst :: IM.IntMap EType -> T ()
 putUvarSubst sub = modify $ \ ts -> ts{ uvarSubst = sub }
diff --git a/src/MicroHs/Translate.hs b/src/MicroHs/Translate.hs
--- a/src/MicroHs/Translate.hs
+++ b/src/MicroHs/Translate.hs
@@ -35,7 +35,7 @@
     Lit (LInt i) -> unsafeCoerce i
     Lit (LDouble i) -> unsafeCoerce i
     Lit (LStr s) -> trans r (encodeString s)
-    Lit (LPrim p) -> fromMaybe (error $ "trans: no primop " ++ p) $ lookup p primTable
+    Lit (LPrim p) -> fromMaybe (error $ "trans: no primop " ++ show p) $ lookup p primTable
     Lit (LInteger i) -> trans r (encodeInteger i)
     Lit (LForImp s _) -> trans r (App (Lit (LPrim "dynsym")) (Lit (LStr s)))
     _ -> error $ "trans: impossible: " ++ show ae
@@ -139,6 +139,7 @@
   ("A.write", primitive "A.write"),
   ("A.==", primitive "A.=="),
   ("bs++", primitive "bs++"),
+  ("bs++.", primitive "bs++."),
   ("bs+++", primitive "bs+++"),
   ("bs==", primitive "bs=="),
   ("bs/=", primitive "bs/="),
@@ -153,6 +154,7 @@
   ("bssubstr", primitive "bssubstr"),
   ("fromUTF8", primitive "fromUTF8"),
   ("toUTF8", primitive "toUTF8"),
+  ("headUTF8", primitive "headUTF8"),
   ("fp+", primitive "fp+"),
   ("fp2p", primitive "fp2p"),
   ("fpnew", primitive "fpnew"),
diff --git a/src/MicroHs/TypeCheck.hs b/src/MicroHs/TypeCheck.hs
--- a/src/MicroHs/TypeCheck.hs
+++ b/src/MicroHs/TypeCheck.hs
@@ -118,17 +118,20 @@
 -- session.  The information is needed beyond the scope where it was defined.
 data GlobTables = GlobTables {
   gSynTable   :: SynTable,        -- type synonyms are needed for expansion
+  gDataTable  :: DataTable,       -- data/newtype definitions
   gClassTable :: ClassTable,      -- classes are neede for superclass expansion
   gInstInfo   :: InstTable        -- instances are implicitely global
   }
 
 emptyGlobTables :: GlobTables
-emptyGlobTables = GlobTables { gSynTable = M.empty, gClassTable = M.empty, gInstInfo = M.empty }
+emptyGlobTables = GlobTables { gSynTable = M.empty, gDataTable = M.empty, gClassTable = M.empty, gInstInfo = M.empty }
 
 mergeGlobTables :: GlobTables -> GlobTables -> GlobTables
-mergeGlobTables g1 g2 = GlobTables { gSynTable = M.merge (gSynTable g1) (gSynTable g2),
-                                     gClassTable = M.merge (gClassTable g1) (gClassTable g2),
-                                     gInstInfo = M.merge (gInstInfo g1) (gInstInfo g2) }
+mergeGlobTables g1 g2 =
+  GlobTables { gSynTable = M.merge (gSynTable g1) (gSynTable g2),
+               gDataTable = M.merge (gDataTable g1) (gDataTable g2),
+               gClassTable = M.merge (gClassTable g1) (gClassTable g2),
+               gInstInfo = M.mergeWith mergeInstInfo (gInstInfo g1) (gInstInfo g2) }
 
 type Symbols = (SymTab, SymTab)
 
@@ -181,12 +184,13 @@
              unzip $ map (getTVExps impMap (typeTable tcs) (valueTable tcs) (assocTable tcs)) exps
            fexps = map tFixDefs (M.elems impMap)
            sexps = synTable tcs
+           dexps = dataTable tcs
            iexps = instTable tcs
            ctbl  = classTable tcs
            dflts = M.fromList $ filter ((`elem` ds) . fst) $ M.toList $ defaults tcs
                  where ds = [ tyQIdent $ expLookup ti (typeTable tcs) | ExpDefault ti <- exps ]
          in  ( tModule mn (nubBy ((==) `on` fst) (concat fexps)) (concat texps) (concat vexps) dflts tds
-             , GlobTables { gSynTable = sexps, gClassTable = ctbl, gInstInfo = iexps }
+             , GlobTables { gSynTable = sexps, gDataTable = dexps, gClassTable = ctbl, gInstInfo = iexps }
              , (typeTable tcs, valueTable tcs)
              )
 
@@ -377,6 +381,7 @@
           fixTable = addPrimFixs allFixes,
           typeTable = foldr (uncurry stInsertGlbA) allTypes primTypes,
           synTable = gSynTable globs,
+          dataTable = gDataTable globs,
           valueTable = foldr (uncurry stInsertGlbA) allValues primValues,
           assocTable = allAssocs,
           uvarSubst = IM.empty,
@@ -398,7 +403,10 @@
 mergeInstInfo (InstInfo m1 l1 fds) (InstInfo m2 l2 _) =
   let
     m = foldr (uncurry $ M.insertWith mrg) m2 (M.toList m1)
-    mrg e1 _e2 = e1 -- XXX improve this if eqExpr e1 e2 then e1 else errorMessage (getSLoc e1) $ "Multiple instances: " ++ showSLoc (getSLoc e2)
+    mrg e1@(EVar i1) (EVar i2)
+      | i1 == i2  = e1
+      | otherwise = errorMessage (getSLoc i1) $ "Multiple instances: " ++ showSLoc (getSLoc i2)
+    mrg e1 _e2 = e1 -- XXX improve this
     l = unionBy eqInstDict l1 l2
   in  InstInfo m l fds
 
@@ -547,14 +555,6 @@
 kTypeTypeTypeS :: EType
 kTypeTypeTypeS = kArrow kType $ kArrow kType kType
 
--- (=>) :: Constraint -> Type -> Type
---kConstraintTypeTypeS :: EType
---kConstraintTypeTypeS = kArrow kConstraint $ kArrow kType kType
-
--- (~) :: Type -> Type -> Constraint
-kTypeTypeConstraintS :: EType
-kTypeTypeConstraintS = kArrow kType (kArrow kType kConstraint)
-
 mkIdentB :: String -> Ident
 mkIdentB = mkIdentSLoc builtinLoc
 
@@ -602,25 +602,30 @@
     kv = EVar k
     kk = IdKind k sKind
     -- Tuples are polykinded since they need to handle both Type and Constraint
+    -- (,) :: forall k . k -> k -> k
+    -- etc.
     tuple n =
       let
         i = tupleConstr builtinLoc n
       in  (i, [entry i $ EForall True [kk] $ foldr kArrow kv (replicate n kv)])
+    -- (=>) :: forall k . Constraint -> k -> k
     kImplies = EForall True [kk] $ kConstraint `kArrow` (kv `kArrow` kv)
+    -- (~) :: forall k . k -> k -> Constraint
+    kTypeEqual = EForall True [kk] $ kv `kArrow` (kv `kArrow` kConstraint)
   in
       [
        -- The function arrow et al are bothersome to define in Primitives, so keep them here.
        -- But the fixity is defined in Primitives.
        (mkIdentB "->",           [entry identArrow    kTypeTypeTypeS]),
        (mkIdentB "=>",           [entry identImplies  kImplies]),
-       (mkIdentB "~",            [entry identTypeEq   kTypeTypeConstraintS]),
+       (mkIdentB "~",            [entry identTypeEq   kTypeEqual]),
        -- Primitives.hs uses the type [], and it's annoying to fix that.
        -- XXX should not be needed
        (identList,               [entry identList     kTypeTypeS]),
        (mkIdentB "\x2192",       [entry identArrow    kTypeTypeTypeS]),  -- ->
        (mkIdentB "\x21d2",       [entry identImplies  kImplies])         -- =>
       ] ++
-      map tuple (enumFromTo 2 10)
+      map tuple (0 : enumFromTo 2 10)
 
 -- E.g.
 --  True :: Bool
@@ -637,7 +642,7 @@
         ts = map tVarK vks
         r = tApps c ts
       in  (c, [Entry (ECon $ ConData [(c, n)] c []) $ EForall True vks $ EForall True [] $ foldr tArrow r ts ])
-  in  map tuple (enumFromTo 2 10)
+  in  map tuple (0 : enumFromTo 2 10)
 
 kArrow :: EKind -> EKind -> EKind
 kArrow = tArrow
@@ -645,11 +650,6 @@
 sArrow :: ESort -> ESort -> ESort
 sArrow = tArrow
 
-getImplies :: EType -> Maybe (EType, EType)
-getImplies (EApp (EApp (EVar n) a) b) =
-  if isIdent "=>" n || isIdent "Primitives.=>" n then Just (a, b) else Nothing
-getImplies _ = Nothing
-
 setUVar :: TRef -> EType -> T ()
 setUVar i t = modify $ \ ts -> ts{ uvarSubst = IM.insert i t (uvarSubst ts) }
 
@@ -900,6 +900,11 @@
   senv <- gets synTable
   putSynTable (M.insert i t senv)
 
+extData :: Ident -> EDef -> T ()
+extData i d = do
+  denv <- gets dataTable
+  putDataTable (M.insert i d denv)
+
 extFix :: Ident -> Fixity -> T ()
 extFix i fx = modify $ \ ts -> ts{ fixTable = M.insert i fx (fixTable ts) }
 
@@ -936,7 +941,7 @@
   mapM_ tcAddInfix ds
   dst <- tcDefsType ds
 --  tcTrace ("tcDefs 2:\n" ++ showEDefs dst)
-  mapM_ addTypeSyn dst
+  mapM_ addTypeAndData dst
   dst' <- tcExpand impt dst
 --  tcTrace ("tcDefs 3:\n" ++ showEDefs dst')
   case impt of
@@ -1058,18 +1063,17 @@
       addDef lhs
     Class _ lhs@(i, _) _ ms -> do
       addDef lhs
-      addAssoc i [ x | BSign m _ <- ms, x <- [m, mkDefaultMethodId m] ]
+      addAssoc i [ x | BSign ns _ <- ms, m <- ns, x <- [m, mkDefaultMethodId m] ]
     _ -> return ()
 
--- Add type synonyms to the synonym table
-addTypeSyn :: EDef -> T ()
-addTypeSyn adef =
+-- Add type synonyms to the synonym table, and data/newtype to the data table
+addTypeAndData :: EDef -> T ()
+addTypeAndData adef = do
+  mn <- gets moduleName
   case adef of
-    Type (i, vs) t -> do
-      let t' = EForall True vs t
-      extSyn i t'
-      mn <- gets moduleName
-      extSyn (qualIdent mn i) t'
+    Type    (i, vs) t  -> extSyn  (qualIdent mn i) (EForall True vs t)
+    Data    (i, _) _ _ -> extData (qualIdent mn i) adef
+    Newtype (i, _) _ _ -> extData (qualIdent mn i) adef
     _ -> return ()
 
 -- Do kind checking of all typeish definitions.
@@ -1086,9 +1090,10 @@
     Instance ct m          ->                                                  Instance       <$> tCheckTypeTImpl kConstraint ct <*> return m
     Default mc ts          ->                                                  Default (Just c) <$> mapM (tcDefault c) ts
                                                                                  where c = fromMaybe num mc
+    Deriving ct            ->                                                  Deriving       <$> tCheckTypeTImpl kConstraint ct
     _                      -> return def
  where
-   tcMethod (BSign i t) = BSign i <$> tCheckTypeTImpl kType t
+   tcMethod (BSign is t) = BSign is <$> tCheckTypeTImpl kType t
    tcMethod (BDfltSign i t) = BDfltSign i <$> tCheckTypeTImpl kType t
    tcMethod m = return m
    tcFD (is, os) = (,) <$> mapM tcV is <*> mapM tcV os
@@ -1173,16 +1178,18 @@
   mn <- gets moduleName
   let
       meths = [ b | b@(BSign _ _) <- ms ]
-      methIds = map (\ (BSign i _) -> i) meths
+      methIds = concatMap (\ (BSign is _) -> is) meths
       mdflts = [ (i, eqns) | BFcn i eqns <- ms ]
       dflttys = [ (i, t) | BDfltSign i t <- ms ]
       tCtx = tApps (qualIdent mn iCls) (map (EVar . idKindIdent) vks)
-      mkDflt (BSign methId t) = [ Sign [iDflt] $ EForall True vks $ tCtx `tImplies` ty, def $ lookup methId mdflts ]
-        where ty = fromMaybe t $ lookup methId dflttys
-              def Nothing = Fcn iDflt $ simpleEqn noDflt
-              def (Just eqns) = Fcn iDflt eqns
-              iDflt = mkDefaultMethodId methId
-              noDflt = mkExn (getSLoc methId) (unIdent methId) "noMethodError"
+      mkDflt (BSign is t) = concatMap method is
+        where method methId = [ Sign [iDflt] $ EForall True vks $ tCtx `tImplies` ty, def $ lookup methId mdflts ]
+                where ty = fromMaybe t $ lookup methId dflttys
+                      def Nothing = Fcn iDflt $ simpleEqn noDflt
+                      def (Just eqns) = Fcn iDflt eqns
+                      iDflt = mkDefaultMethodId methId
+                      noDflt = mkExn (getSLoc methId) (unIdent methId) "noMethodError"
+              
       mkDflt _ = impossible
       dDflts = case impt of
                  ImpNormal -> concatMap mkDflt meths
@@ -1360,7 +1367,7 @@
   let
       meths = [ b | b@(BSign _ _) <- ms ]
       methTys = map (\ (BSign _ t) -> t) meths
-      methIds = map (\ (BSign i _) -> i) meths
+      methIds = concatMap (\ (BSign is _) -> is) meths
       supTys = ctx  -- XXX should do some checking
       targs = supTys ++ methTys
       qiCls = qualIdent mn iCls
@@ -1369,7 +1376,8 @@
       iCon = mkClassConstructor iCls
       iConTy = EForall True vks $ foldr tArrow tret targs
   extValETop iCon iConTy (ECon $ ConData cti (qualIdent mn iCon) [])
-  let addMethod (BSign i t) = extValETop i (EForall True vks $ tApps qiCls (map (EVar . idKindIdent) vks) `tImplies` t) (EVar $ qualIdent mn i)
+  let addMethod (BSign is t) = mapM_ method is
+        where method i = extValETop i (EForall True vks $ tApps qiCls (map (EVar . idKindIdent) vks) `tImplies` t) (EVar $ qualIdent mn i)
       addMethod _ = impossible
 --  tcTrace ("addValueClass " ++ showEType (ETuple ctx))
   mapM_ addMethod meths
@@ -1446,7 +1454,7 @@
 -- When inferring the type, the resulting type will
 -- be assigned to the TRef (using tSetRefType),
 -- and can then be read of (using tGetRefType).
--- When checking, the expected type is simple given.
+-- When checking, the expected type is simply given.
 data Expected = Infer TRef | Check EType
 --  deriving(Show)
 
@@ -1484,7 +1492,7 @@
 tGetRefType ref = do
   m <- gets uvarSubst
   case IM.lookup ref m of
-    Nothing -> return (EUVar ref) -- error "tGetRefType"
+    Nothing -> return (EUVar ref)
     Just t  -> return t
 
 -- Set the type for an Infer
@@ -2062,7 +2070,6 @@
   withExtVals env $ do
     (_sks, ds, pp) <- tCheckPat t app'
 --    tcTrace ("tCheckPatC: " ++ show pp)
-    () <- checkArity 0 pp
 --    xt <- derefUVar t
 --    tcTrace ("tCheckPatC ds=" ++ show ds ++ "t=" ++ show xt)
     -- XXX must check for leaking skolems
@@ -2089,50 +2096,20 @@
                -- _ can be anything, so just ignore it
                _ <- tGetExpType mt
                return ([], [], ae)
-
-           | isConIdent i -> do
-               (con, xpt) <- tLookupV i
---               tcTrace (show ipt)
-               case xpt of
-                  -- Sanity check
-                  EForall _ _ (EForall _ _ _) -> return ()
-                  _ -> impossibleShow i
-               EForall _ avs apt <- tInst' xpt
-               (sks, spt) <- shallowSkolemise avs apt
-               (d, p, pt) <-
-                 case getImplies spt of
-                   Nothing -> return ([], con, apt)
-                   Just (ctx, pt') -> do
-                     di <- newADictIdent loc
-                     return ([(di, ctx)], EApp con (EVar di), pt')
-                   
-               -- We will only have an expected type for a non-nullary constructor
-               pp <- case mt of
-                       Check ext -> subsCheck loc p ext pt
-                       Infer r   -> do { tSetRefType loc r pt; return p }
-               return (sks, d, pp)
-
-           | otherwise -> do
+           | not (isConIdent i) -> do
                -- All pattern variables are in the environment as
                -- type references.  Assign the reference the given type.
                ext <- tGetExpType mt
                (p, t) <- tLookupV i
                unify loc t ext
                return ([], [], p)
+           | otherwise -> tcPatAp mt [] ae
+    EApp f _
+           | isNeg f   -> lit            -- if it's (negate e) it must have been a negative literal
+           | otherwise -> tcPatAp mt [] ae
 
     EOper e ies -> do e' <- tcOper e ies; tcPat mt e'
 
-    EApp f a
-      | isNeg f -> lit       -- if it's (negate e) it must have been a negative literal
-      | otherwise -> do
-      ((skf, df, f'), ft) <- tInferPat f
---      tcTrace $ "tcPat: EApp f=" ++ showExpr f ++ "; e'=" ++ showExpr f' ++ " :: " ++ showEType ft
-      (at, rt) <- unArrow loc ft
---      tcTrace ("tcPat EApp: " ++ showExpr f ++ " :: " ++ showEType ft)
-      (ska, da, a') <- tCheckPat at a
-      instPatSigma loc rt mt
-      return (skf ++ ska, df ++ da, EApp f' a')
-           
     ETuple es -> do
       let
         n = length es
@@ -2198,6 +2175,61 @@
 
     _ -> error $ "tcPat: " ++ show (getSLoc ae) ++ " " ++ show ae
 
+-- The expected type is for (eApps afn (reverse args))
+tcPatAp :: HasCallStack =>
+           Expected -> [EPat] -> EPat -> T EPatRet
+--tcPatAp mt args afn | trace ("tcPatAp: " ++ show (mt, args, afn)) False = undefined
+tcPatAp mt args afn =
+  case afn of
+    EVar i | isConIdent i -> do
+      let loc = getSLoc i
+      (con, xpt) <- tLookupV i
+--      tcTrace (show xpt)
+      case xpt of
+         -- Sanity check
+         EForall _ _ (EForall _ _ _) -> return ()
+         _ -> impossibleShow i
+      EForall _ avs apt <- tInst' xpt
+
+      (sks, spt) <- shallowSkolemise avs apt
+      (df, pf, pt) <-
+        case getImplies spt of
+          Nothing -> return ([], con, apt)
+          Just (ctx, pt') -> do
+            di <- newADictIdent loc
+            return ([(di, ctx)], EApp con (EVar di), pt')
+          
+      let ary = arity pf
+            where arity (ECon c) = conArity c
+                  arity (EApp f _) = arity f - 1  -- deal with dictionary added above
+                  arity e = impossibleShow e
+          nargs = length args
+      if nargs < ary then
+        tcError loc "too few arguments"
+       else if nargs > ary then
+        tcError loc "too many arguments"
+       else
+        return ()
+
+      let step [] t r = return (t, r)
+          step (a:as) t (sk, d, f) = do
+            (at, rt) <- unArrow loc t
+            (ska, da, a') <- tCheckPat at a
+            step as rt (ska ++ sk, da ++ d, EApp f a')
+      (tt, (skr, dr, pr)) <- step args pt (sks, df, pf)
+
+      pp <- case mt of
+              Check ext -> subsCheck loc pr ext tt
+              Infer r   -> do { tSetRefType loc r tt; return pr }
+      return (skr, dr, pp)
+
+    EApp f a -> tcPatAp mt (a:args) f
+
+    EParen e -> tcPatAp mt args e
+
+    _ -> tcError (getSLoc afn) ("Bad pattern " ++ show afn)
+  
+
 eTrue :: SLoc -> Expr
 eTrue l = EVar $ mkBuiltin l "True"
 
@@ -2210,37 +2242,10 @@
     let v = head vs
     tcError (getSLoc v) $ "Multiply defined: " ++ showIdent v
 
-checkArity :: Int -> EPat -> T ()
-checkArity n (EApp f a) = do
-  checkArity (n+1) f
-  checkArity 0 a
-checkArity n (ECon c) =
-  let a = conArity c
-  in  if n < a then
-        tcError (getSLoc c) "too few arguments"
-      else if n > a then
-        tcError (getSLoc c) $ "too many arguments"
-      else
-        return ()
-checkArity n (EAt _ p) = checkArity n p
-checkArity n (ELazy _ p) = checkArity n p
-checkArity n (ESign p _) = checkArity n p
-checkArity n p =
-  case p of
-    ETuple _           -> check0
-    EListish (LList _) -> check0
-    EVar _             -> check0
-    ELit _ _           -> check0
-    ENegApp _          -> check0
-    EViewPat _ _       -> check0
-    _ -> impossible
-  where
-    check0 = if n /= 0 then tcError (getSLoc p) "Bad pattern" else return ()
-
 tcBinds :: forall a . [EBind] -> ([EBind] -> T a) -> T a
 tcBinds xbs ta = do
   let
-    tmap = M.fromList [ (i, t) | BSign i t <- xbs ]
+    tmap = M.fromList [ (i, t) | BSign is t <- xbs, i <- is ]
     xs = getBindsVars xbs
   multCheck xs
   xts <- mapM (tcBindVarT tmap) xs
@@ -2453,8 +2458,8 @@
 -----
 
 -- Given a dictionary of a (constraint type), split it up
---  * name components of a tupled constraint
---  * name superclasses of a constraint
+--  * components of a tupled constraint
+--  * superclasses of a constraint
 expandDict :: HasCallStack => Expr -> EConstraint -> T [InstDictC]
 expandDict edict ct = expandDict' [] [] edict =<< expandSyn ct
 
@@ -2520,9 +2525,12 @@
 
 defaultOneTyVar :: TRef -> T [Solved]
 defaultOneTyVar tv = do
+--  traceM $ "defaultOneTyVar: " ++ show tv
   old <- get             -- get entire old state
   let cvs = nub [ c | (_, EApp (EVar c) (EUVar tv')) <- constraints old, tv == tv' ]  -- all C v constraints
-  dvs <- nub . (cvs ++ ) . concat <$> mapM getSuperClasses cvs                        -- add superclasses
+--  traceM $ "defaultOneTyVar: cvs = " ++ show cvs
+  dvs <- getSuperClasses cvs                            -- add superclasses
+--  traceM $ "defaultOneTyVar: dvs = " ++ show dvs
   let oneCls c | Just ts <- M.lookup c (defaults old) =
         take 1 $ filter (\ t -> all (\ cc -> soluble cc t) cvs) ts
                | otherwise = []
@@ -2532,19 +2540,30 @@
         cs <- gets constraints
         return $ null cs                                -- No constraints left?
       tys = nubBy eqEType $ concatMap oneCls dvs
---  traceM $ "defaultOneTyVar " ++ show (tv, cvs, tys)
+--  traceM $ "defaultOneTyVar: " ++ show (tv, tys)
   case tys of
     [ty] -> do            -- There is a single type solving everything
       setUVar tv ty
       solveConstraints
     _ -> return []        -- Nothing solved
 
-getSuperClasses :: Ident -> T [Ident]
-getSuperClasses i = do
+-- The transitive closure of super-classes.
+-- XXX Somewhat duplicated with expandDict
+getSuperClasses :: [Ident] -> T [Ident]
+getSuperClasses ais = do
   ct <- gets classTable
-  case M.lookup i ct of
-    Nothing -> error "getSuperClasses"
-    Just (ClassInfo _ supers _ _ _) -> return $ map (fst . getApp) supers
+  let loop done [] = done
+      loop done (i:is) | i `elem` done = loop done is
+                       | otherwise = i :
+        case M.lookup i ct of
+          Nothing -> error $ "getSuperClasses: " ++ show i
+          Just (ClassInfo _ supers _ _ _) ->
+            loop done (concatMap flatten supers ++ is)
+      flatten a | (c, ts) <- getApp a =
+        case getTupleConstr c of
+          Nothing -> [c]
+          Just _ -> concatMap flatten ts
+  return $ loop [] ais
 
 {-
 showInstInfo :: InstInfo -> String
@@ -2824,6 +2843,7 @@
 --      is <- gets instTable
 --      tcTrace $ "Cannot satisfy constraint: " ++ unlines (map (\ (i, ii) -> show i ++ ":\n" ++ showInstInfo ii) (M.toList is))
       tcError (getSLoc i) $ "Cannot satisfy constraint: " ++ show t'
+                            ++ "\n     fully qualified: " ++ showExprRaw t'
 
 -- Add a type equality constraint.
 addEqConstraint :: SLoc -> EType -> EType -> T ()
@@ -2890,3 +2910,29 @@
   showIdent i ++ " :: " ++ showEType cc ++
     " has " ++ showListS showIdent ms
 -}
+
+doDeriving :: EDef -> T [EDef]
+doDeriving def@(Data    lhs cs ds) = (def:) . concat <$> mapM (deriveHdr lhs  cs) ds
+doDeriving def@(Newtype lhs  c ds) = (def:) . concat <$> mapM (deriveHdr lhs [c]) ds
+doDeriving def@(Deriving ct)       = (def:) <$> standaloneDeriving ct
+doDeriving def                     = return [def]
+
+standaloneDeriving :: EType -> T [EDef]
+standaloneDeriving act = do
+  (_vks, _ctx, cc) <- splitInst <$> expandSyn act
+  dtable <- gets dataTable
+--  traceM ("standaloneDeriving 1 " ++ show (ctx, cc))
+  (cls, tname) <-
+    case getAppM cc of
+      Just (c, ts@(_:_)) |
+        let t = last ts,
+        Just (n, _) <- getAppM t -> return (tApps c (init ts), n)
+      _ -> tcError (getSLoc act) "malformed standalone deriving"
+--  traceM ("standaloneDeriving 2 " ++ show (act, cls, tname))
+  (lhs, cs) <-
+    case M.lookup tname dtable of
+      Just (Newtype l  c _) -> return (l, [c])
+      Just (Data    l xs _) -> return (l, xs)
+      _ -> tcError (getSLoc act) ("not data/newtype " ++ showIdent tname)
+  -- We want 'instance ctx => cls ty'
+  deriveNoHdr act lhs cs cls
diff --git a/src/runtime/config-unix-64.h b/src/runtime/config-unix-64.h
--- a/src/runtime/config-unix-64.h
+++ b/src/runtime/config-unix-64.h
@@ -45,6 +45,7 @@
 
 /*
  * Number of bits in a word.  Only 32 and 64 are supported.
+ * WORD_SIZE set in mhsffi.h
  */
 //#define WORD_SIZE 64
 
@@ -94,7 +95,16 @@
   struct termios old, new;
   char c;
   int r;
-  
+
+#if defined(USE_SYSTEM_RAW)
+
+  /* For, e.g., execution with WASM in node the ioctl() doesn't seem to work */
+  system("stty raw");
+  r = read(0, &c, 1);
+  system("stty -raw");
+
+#else  /* USE_SYSTEM_RAW */
+
   if (tcgetattr(0, &old)) {
 #if WANT_STDIO
     fprintf(stderr, "tcgetattr failed: errno=%d\n", errno);
@@ -121,6 +131,9 @@
 #endif  /* WANT_STDIO */
     return -1;
   }
+
+#endif  /* USE_SYSTEM_RAW */
+
   if (r == 1)
     return c;
   else {
diff --git a/src/runtime/eval.c b/src/runtime/eval.c
--- a/src/runtime/eval.c
+++ b/src/runtime/eval.c
@@ -788,6 +788,7 @@
   fin->arg = bf;
   fin->back = fp;
   fp->payload.string = bf;
+  fp->finalizer = fin;
 }
 #endif
 
@@ -1898,13 +1899,18 @@
 NODEPTR mkStringC(char *str);
 
 #if WANT_STDIO
+#if WORD_SIZE == 64
+#define CONVDBL "%.16g"
+#elif WORD_SIZE == 32
+#define CONVDBL "%.8g"
+#endif
 void
 convdbl(char *str, flt_t x)
 {
   /* Using 16 decimals will lose some precision.
    * 17 would keep the precision, but it frequently looks very ugly.
    */
-  (void)snprintf(str, 25, "%.16g", x);
+  (void)snprintf(str, 25, CONVDBL, x);
   if (strcmp(str, "nan") != 0 && strcmp(str, "-nan") != 0 &&
       strcmp(str, "inf") != 0 && strcmp(str, "-inf") != 0 &&
       !strchr(str, '.') && !strchr(str, 'e') && !strchr(str, 'E')) {
diff --git a/tests/Deriving.hs b/tests/Deriving.hs
--- a/tests/Deriving.hs
+++ b/tests/Deriving.hs
@@ -7,6 +7,9 @@
 data Rec a = R { x :: a, y :: Int }
   deriving Show
 
+newtype Alt f a = Alt (f a)
+  deriving Show
+
 main :: IO ()
 main = do
   print $ A 'a' == (A 'a' :: T Char () ())
@@ -29,3 +32,5 @@
   print (A (A 'a') :: T (T Char () ()) () ())
   print $ R{ x='a', y=10 }
   print $ R{ x=R{x='b',y=11}, y=10 }
+
+  print $ Alt [True]
diff --git a/tests/Deriving.ref b/tests/Deriving.ref
--- a/tests/Deriving.ref
+++ b/tests/Deriving.ref
@@ -16,3 +16,4 @@
 A (A 'a')
 R{x='a',y=10}
 R{x=R{x='b',y=11},y=10}
+Alt [True]
diff --git a/tests/Exists.hs b/tests/Exists.hs
--- a/tests/Exists.hs
+++ b/tests/Exists.hs
@@ -31,6 +31,11 @@
 sh :: forall a . T a -> String
 sh (T a) = show a
 
+data D = forall a . (Show a, Num a) => D a
+
+unD :: D -> String
+unD (D x) = show (x+1)
+
 main :: IO ()
 main = do
   print es
@@ -40,3 +45,5 @@
   putStrLn (bar someE)
   putStrLn (sh (T True))
   putStrLn (sh (T 'x'))
+  putStrLn (unD (D (1::Int)))
+  putStrLn (unD (D 1.5))
diff --git a/tests/Exists.ref b/tests/Exists.ref
--- a/tests/Exists.ref
+++ b/tests/Exists.ref
@@ -4,3 +4,5 @@
 Just 'a'
 True
 'x'
+2
+2.5
diff --git a/tests/FArith.hs b/tests/FArith.hs
--- a/tests/FArith.hs
+++ b/tests/FArith.hs
@@ -8,7 +8,7 @@
 -- We only use values that can be represented exactly.
 
 list1 :: [Double]
-list1 = [-100.25::Double, -53.25::Double, 0.0::Double, 1.0::Double, 1.125::Double, 1.0e4::Double]
+list1 = [-100.5::Double, -53.25::Double, 0.0::Double, 1.0::Double, 1.125::Double, 1.0e3::Double]
 
 main :: IO ()
 main = do
diff --git a/tests/FArith.ref b/tests/FArith.ref
--- a/tests/FArith.ref
+++ b/tests/FArith.ref
@@ -1,6 +1,6 @@
-[-200.5,0.0,10050.0625,-153.5,-47.0,5338.3125,-100.25,-100.25,-0.0,-99.25,-101.25,-100.25,-99.125,-101.375,-112.78125,9899.75,-10100.25,-1002500.0,-153.5,47.0,5338.3125,-106.5,0.0,2835.5625,-53.25,-53.25,-0.0,-52.25,-54.25,-53.25,-52.125,-54.375,-59.90625,9946.75,-10053.25,-532500.0,-100.25,100.25,-0.0,-53.25,53.25,-0.0,0.0,0.0,0.0,1.0,-1.0,0.0,1.125,-1.125,0.0,10000.0,-10000.0,0.0,-99.25,101.25,-100.25,-52.25,54.25,-53.25,1.0,1.0,0.0,2.0,0.0,1.0,2.125,-0.125,1.125,10001.0,-9999.0,10000.0,-99.125,101.375,-112.78125,-52.125,54.375,-59.90625,1.125,1.125,0.0,2.125,0.125,1.125,2.25,0.0,1.265625,10001.125,-9998.875,11250.0,9899.75,10100.25,-1002500.0,9946.75,10053.25,-532500.0,10000.0,10000.0,0.0,10001.0,9999.0,10000.0,10001.125,9998.875,11250.0,20000.0,0.0,100000000.0]
+[-201.0,0.0,10100.25,-153.75,-47.25,5351.625,-100.5,-100.5,-0.0,-99.5,-101.5,-100.5,-99.375,-101.625,-113.0625,899.5,-1100.5,-100500.0,-153.75,47.25,5351.625,-106.5,0.0,2835.5625,-53.25,-53.25,-0.0,-52.25,-54.25,-53.25,-52.125,-54.375,-59.90625,946.75,-1053.25,-53250.0,-100.5,100.5,-0.0,-53.25,53.25,-0.0,0.0,0.0,0.0,1.0,-1.0,0.0,1.125,-1.125,0.0,1000.0,-1000.0,0.0,-99.5,101.5,-100.5,-52.25,54.25,-53.25,1.0,1.0,0.0,2.0,0.0,1.0,2.125,-0.125,1.125,1001.0,-999.0,1000.0,-99.375,101.625,-113.0625,-52.125,54.375,-59.90625,1.125,1.125,0.0,2.125,0.125,1.125,2.25,0.0,1.265625,1001.125,-998.875,1125.0,899.5,1100.5,-100500.0,946.75,1053.25,-53250.0,1000.0,1000.0,0.0,1001.0,999.0,1000.0,1001.125,998.875,1125.0,2000.0,0.0,1000000.0]
 [True,False,False,True,False,True,False,True,True,True,False,False,False,True,True,True,False,False,False,True,True,True,False,False,False,True,True,True,False,False,False,True,True,True,False,False,False,True,False,False,True,True,True,False,False,True,False,True,False,True,True,True,False,False,False,True,True,True,False,False,False,True,True,True,False,False,False,True,True,True,False,False,False,True,False,False,True,True,False,True,False,False,True,True,True,False,False,True,False,True,False,True,True,True,False,False,False,True,True,True,False,False,False,True,True,True,False,False,False,True,False,False,True,True,False,True,False,False,True,True,False,True,False,False,True,True,True,False,False,True,False,True,False,True,True,True,False,False,False,True,True,True,False,False,False,True,False,False,True,True,False,True,False,False,True,True,False,True,False,False,True,True,False,True,False,False,True,True,True,False,False,True,False,True,False,True,True,True,False,False,False,True,False,False,True,True,False,True,False,False,True,True,False,True,False,False,True,True,False,True,False,False,True,True,False,True,False,False,True,True,True,False,False,True,False,True]
-[-100.25,6.265625,-1604.0,-53.25,3.328125,-852.0,0.0,-0.0,0.0,1.0,-0.0625,16.0,1.125,-0.0703125,18.0,10000.0,-625.0,160000.0]
+[-100.5,6.28125,-1608.0,-53.25,3.328125,-852.0,0.0,-0.0,0.0,1.0,-0.0625,16.0,1.125,-0.0703125,18.0,1000.0,-62.5,16000.0]
 1.625
 3.5
 [15000.0,1.25]
diff --git a/tests/ImpMet.hs b/tests/ImpMet.hs
--- a/tests/ImpMet.hs
+++ b/tests/ImpMet.hs
@@ -1,5 +1,5 @@
 module ImpMet where
-import Prelude(pure, IO, (), putStrLn)
+import Prelude(pure, IO, {-(),-} putStrLn)
 
 main :: IO ()
 main = putStrLn "ok"
diff --git a/tests/Interactive.hs b/tests/Interactive.hs
--- a/tests/Interactive.hs
+++ b/tests/Interactive.hs
@@ -1,7 +1,6 @@
 module Interactive(module Interactive) where
 import Prelude
 import System.IO.PrintOrRun
-default (Integer, Double, String, ())
-
-_it = 1+2
-_itIO = printOrRun _it
+default Num (Integer, Double)
+default IsString (String)
+default Show (())
diff --git a/tests/Makefile b/tests/Makefile
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -88,4 +88,4 @@
 	$(TMHS) Nfib && $(EVAL)
 
 clean:
-	rm -f *.out *.tmp
+	rm -f *.out *.tmp *.js
diff --git a/tests/PatSyn.hs b/tests/PatSyn.hs
new file mode 100644
--- /dev/null
+++ b/tests/PatSyn.hs
@@ -0,0 +1,16 @@
+module PatSyn where
+
+pattern Sing :: a -> [a]
+pattern Sing a = [a]
+
+f :: [Int] -> Int
+f (Sing x) = x
+f _ = 0
+
+
+main :: IO ()
+main = do
+  print (Sing True)
+  print (f [])
+  print (f [1])
+  print (f [2,3])
diff --git a/tests/StandDer.hs b/tests/StandDer.hs
new file mode 100644
--- /dev/null
+++ b/tests/StandDer.hs
@@ -0,0 +1,13 @@
+module StandDer where
+
+data X = X
+deriving instance Show X
+
+data T a = A | B | C a | D (T a)
+
+deriving instance (Show a) => Show (T a)
+
+main :: IO ()
+main = do
+  print X
+  print [A, B, C True, D A]
diff --git a/tests/StandDer.ref b/tests/StandDer.ref
new file mode 100644
--- /dev/null
+++ b/tests/StandDer.ref
@@ -0,0 +1,2 @@
+X
+[A,B,C True,D A]
