From 57ea5ae22e658f8af60413e5afdff39273c90400 Mon Sep 17 00:00:00 2001
From: rtalbi <dr_talbi@esi.dz>
Date: Fri, 12 Apr 2019 11:14:04 +0200
Subject: [PATCH] Working version of logistic regression

---
 .idea/workspace.xml                           |  485 ++-
 CONFIG/DAPPLE.config                          |   10 +-
 CRYPTO/DTPKC.cpp                              |    6 +-
 CRYPTO/DTPKC.h                                |    1 +
 CRYPTO/EvalDotProd.cpp                        |   24 +-
 CRYPTO/EvalLrUpdate.cpp                       |   86 +-
 CRYPTO/EvalSigmoid.cpp                        |   53 +-
 CRYPTO/EvalSub2.cpp                           |   41 +-
 DATA/Datasets/Bank/LR/DO_1.data               |  166 +-
 DATA/Datasets/Bank/LR/DO_10.data              | 1900 +++++-----
 DATA/Datasets/Bank/LR/DO_11.data              | 2080 +++++------
 DATA/Datasets/Bank/LR/DO_12.data              | 2272 ++++++------
 DATA/Datasets/Bank/LR/DO_13.data              | 2492 ++++++-------
 DATA/Datasets/Bank/LR/DO_14.data              | 2676 +++++++-------
 DATA/Datasets/Bank/LR/DO_15.data              | 2906 ++++++++--------
 DATA/Datasets/Bank/LR/DO_16.data              | 3076 ++++++++---------
 DATA/Datasets/Bank/LR/DO_2.data               |  348 +-
 DATA/Datasets/Bank/LR/DO_3.data               |  542 +--
 DATA/Datasets/Bank/LR/DO_4.data               |  730 ++--
 DATA/Datasets/Bank/LR/DO_5.data               |  924 ++---
 DATA/Datasets/Bank/LR/DO_6.data               | 1122 +++---
 DATA/Datasets/Bank/LR/DO_7.data               | 1322 +++----
 DATA/Datasets/Bank/LR/DO_8.data               | 1502 ++++----
 DATA/Datasets/Bank/LR/DO_9.data               | 1704 ++++-----
 ML/LR/LR.cpp                                  |    2 +-
 PPML/PPLR/PPLR_Classifier.cpp                 |   11 +-
 SER/dtpkc.ser                                 |   20 +-
 TEST/TESTBuildingBlocks.cpp                   |    6 +-
 TEST/main.cpp                                 |    2 +-
 .../CMakeFiles/DAPPLE.dir/CXX.includecache    |  140 +-
 .../CMakeFiles/DAPPLE.dir/depend.internal     |    1 +
 .../CMakeFiles/DAPPLE.dir/depend.make         |    1 +
 32 files changed, 13329 insertions(+), 13322 deletions(-)

diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index fd213685..35d0b022 100755
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -11,13 +11,15 @@
     </configurations>
   </component>
   <component name="ChangeListManager">
-    <list default="true" id="2624f523-8bdb-4867-a32b-0c8fa25f5cda" name="Default" comment="Added the call to the PPLR classifier">
-      <change afterPath="$PROJECT_DIR$/CRYPTO/EvalSub2.cpp" afterDir="false" />
-      <change afterPath="$PROJECT_DIR$/CRYPTO/EvalSub2.h" afterDir="false" />
-      <change afterPath="$PROJECT_DIR$/DATA/Scripts/Shuffle_enc.py" afterDir="false" />
+    <list default="true" id="2624f523-8bdb-4867-a32b-0c8fa25f5cda" name="Default" comment="Updated version of PPLR with para">
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/CONFIG/DAPPLE.config" beforeDir="false" afterPath="$PROJECT_DIR$/CONFIG/DAPPLE.config" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/CRYPTO/DTPKC.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/CRYPTO/DTPKC.cpp" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/CRYPTO/DTPKC.h" beforeDir="false" afterPath="$PROJECT_DIR$/CRYPTO/DTPKC.h" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/CRYPTO/EvalDotProd.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/CRYPTO/EvalDotProd.cpp" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/CRYPTO/EvalLrUpdate.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/CRYPTO/EvalLrUpdate.cpp" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/CRYPTO/EvalSigmoid.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/CRYPTO/EvalSigmoid.cpp" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/CRYPTO/EvalSub2.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/CRYPTO/EvalSub2.cpp" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_1.data" beforeDir="false" afterPath="$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_1.data" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_10.data" beforeDir="false" afterPath="$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_10.data" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_11.data" beforeDir="false" afterPath="$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_11.data" afterDir="false" />
@@ -34,22 +36,14 @@
       <change beforePath="$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_7.data" beforeDir="false" afterPath="$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_7.data" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_8.data" beforeDir="false" afterPath="$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_8.data" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_9.data" beforeDir="false" afterPath="$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_9.data" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/DATA/Scripts/Shuffle.py" beforeDir="false" afterPath="$PROJECT_DIR$/DATA/Scripts/Shuffle.py" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/ML/LR/LR.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/ML/LR/LR.cpp" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/PPML/PPLR/PPLR_Classifier.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/PPML/PPLR/PPLR_Classifier.cpp" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/PPML/PPLR/PPLR_Classifier.h" beforeDir="false" afterPath="$PROJECT_DIR$/PPML/PPLR/PPLR_Classifier.h" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/SER/dtpkc.ser" beforeDir="false" afterPath="$PROJECT_DIR$/SER/dtpkc.ser" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/TEST/TESTBuildingBlocks.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/TEST/TESTBuildingBlocks.cpp" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/TEST/main.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/TEST/main.cpp" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/CXX.includecache" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/CXX.includecache" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/DependInfo.cmake" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/DependInfo.cmake" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/build.make" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/build.make" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/cmake_clean.cmake" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/cmake_clean.cmake" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/depend.internal" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/depend.internal" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/depend.make" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/depend.make" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/link.txt" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/link.txt" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/progress.make" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/DAPPLE.dir/progress.make" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/Makefile2" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/Makefile2" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/progress.marks" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/progress.marks" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/cmake-build-debug/DAPPLE.cbp" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/DAPPLE.cbp" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/cmake-build-debug/Makefile" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/Makefile" afterDir="false" />
     </list>
     <ignored path="$PROJECT_DIR$/cmake-build-debug/" />
     <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
@@ -67,81 +61,73 @@
       <file pinned="false" current-in-tab="true">
         <entry file="file://$PROJECT_DIR$/CONFIG/DAPPLE.config">
           <provider selected="true" editor-type-id="text-editor">
-            <state relative-caret-position="165">
-              <caret line="11" column="20" selection-start-line="11" selection-start-column="20" selection-end-line="11" selection-end-column="20" />
+            <state relative-caret-position="105">
+              <caret line="7" column="27" lean-forward="true" selection-start-line="7" selection-start-column="27" selection-end-line="7" selection-end-column="27" />
             </state>
           </provider>
         </entry>
       </file>
       <file pinned="false" current-in-tab="false">
-        <entry file="file://$PROJECT_DIR$/CRYPTO/EvalAddPow2.cpp">
+        <entry file="file://$PROJECT_DIR$/TEST/TESTBuildingBlocks.cpp">
           <provider selected="true" editor-type-id="text-editor">
-            <state relative-caret-position="-1225">
-              <caret line="4" selection-start-line="4" selection-end-line="4" />
+            <state relative-caret-position="245">
+              <caret line="617" selection-start-line="617" selection-end-line="617" />
             </state>
           </provider>
         </entry>
       </file>
       <file pinned="false" current-in-tab="false">
-        <entry file="file://$PROJECT_DIR$/CRYPTO/EvalDotProd.cpp">
-          <provider selected="true" editor-type-id="text-editor">
-            <state relative-caret-position="165">
-              <caret line="70" selection-start-line="70" selection-end-line="70" />
-            </state>
-          </provider>
+        <entry file="file://$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_1.data">
+          <provider selected="true" editor-type-id="text-editor" />
         </entry>
       </file>
       <file pinned="false" current-in-tab="false">
-        <entry file="file://$PROJECT_DIR$/PPML/PPVFDT/PPVFDT_Classifier.cpp">
+        <entry file="file://$PROJECT_DIR$/PPML/PPLR/PPLR_Classifier.cpp">
           <provider selected="true" editor-type-id="text-editor">
-            <state relative-caret-position="255">
-              <caret line="238" column="122" selection-start-line="238" selection-start-column="16" selection-end-line="238" selection-end-column="122" />
+            <state relative-caret-position="93">
+              <caret line="322" column="10" selection-start-line="322" selection-start-column="10" selection-end-line="322" selection-end-column="10" />
               <folding>
-                <element signature="e#20#50#0" expanded="true" />
+                <element signature="e#0#17#0" expanded="true" />
+                <element signature="e#92#1009#0" />
               </folding>
             </state>
           </provider>
         </entry>
       </file>
       <file pinned="false" current-in-tab="false">
-        <entry file="file://$PROJECT_DIR$/PPML/PPLR/PPLR_Classifier.cpp">
+        <entry file="file://$PROJECT_DIR$/ML/LR/LR.cpp">
           <provider selected="true" editor-type-id="text-editor">
-            <state relative-caret-position="72">
-              <caret line="342" selection-start-line="342" selection-end-line="342" />
+            <state relative-caret-position="123">
+              <caret line="276" column="30" selection-start-line="276" selection-start-column="30" selection-end-line="276" selection-end-column="30" />
               <folding>
-                <element signature="e#0#17#0" expanded="true" />
-                <element signature="e#92#1004#0" />
-                <element signature="e#1006#1257#0" />
-                <element signature="e#1259#3015#0" />
-                <element signature="e#3017#3392#0" />
-                <element signature="e#3394#3659#0" />
-                <element signature="e#3661#4033#0" />
+                <element signature="e#0#16#0" expanded="true" />
+                <element signature="e#891#2113#0" />
+                <element signature="e#2115#2436#0" />
+                <element signature="e#2438#2635#0" />
+                <element signature="e#2637#3029#0" />
               </folding>
             </state>
           </provider>
         </entry>
       </file>
       <file pinned="false" current-in-tab="false">
-        <entry file="file://$PROJECT_DIR$/PPML/IO/PPDatasetReader.cpp">
+        <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-12-09:09:55-Stats.csv">
           <provider selected="true" editor-type-id="text-editor">
-            <state relative-caret-position="217">
-              <caret line="126" selection-start-line="126" selection-end-line="126" />
+            <state relative-caret-position="255">
+              <caret line="17" column="69" selection-start-line="17" selection-start-column="63" selection-end-line="17" selection-end-column="69" />
             </state>
           </provider>
         </entry>
       </file>
+      <file pinned="false" current-in-tab="false">
+        <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-11-15:54:14-Stats.csv">
+          <provider selected="true" editor-type-id="text-editor" />
+        </entry>
+      </file>
     </leaf>
   </component>
   <component name="FindInProjectRecents">
     <findStrings>
-      <find>re</find>
-      <find>recordCounter</find>
-      <find>depth</find>
-      <find>tree</find>
-      <find>max_dep</find>
-      <find>Hbound</find>
-      <find>HBOund</find>
-      <find>prec</find>
       <find>preci</find>
       <find>Hb</find>
       <find>vfdt</find>
@@ -160,10 +146,18 @@
       <find>mpz_s</find>
       <find>extTrai</find>
       <find>,</find>
-      <find>shuffle</find>
       <find>getT</find>
       <find>clos</find>
       <find>sub</find>
+      <find>Proba</find>
+      <find>predic</find>
+      <find>Sdec</find>
+      <find>tmp</find>
+      <find>200</find>
+      <find>chunk</find>
+      <find>chun</find>
+      <find>shuff</find>
+      <find>shuffle</find>
     </findStrings>
     <replaceStrings>
       <replace>EvalCmp100</replace>
@@ -197,8 +191,6 @@
         <option value="$PROJECT_DIR$/EXP/DEBUG-VFDT/cipher-2019-03-18-16:20:01-Config.txt" />
         <option value="$PROJECT_DIR$/CRYPTO/EvalCmp100.cpp" />
         <option value="$PROJECT_DIR$/PPML/PPVFDT/PPNodeTest.cpp" />
-        <option value="$PROJECT_DIR$/CRYPTO/DTPKC.h" />
-        <option value="$PROJECT_DIR$/CRYPTO/DTPKC.cpp" />
         <option value="$PROJECT_DIR$/CRYPTO/EvalEntropy.cpp" />
         <option value="$PROJECT_DIR$/CRYPTO/EvalEntropy.h" />
         <option value="$PROJECT_DIR$/Scripts/vary_th.sh" />
@@ -217,23 +209,25 @@
         <option value="$PROJECT_DIR$/PPML/PPNB/PPStats.cpp" />
         <option value="$PROJECT_DIR$/Scripts/TestPPNB.sh" />
         <option value="$PROJECT_DIR$/EXP/LR-Bank/LR-2019-03-13-21:10:32-Config.txt" />
-        <option value="$PROJECT_DIR$/CRYPTO/EvalSigmoid.cpp" />
         <option value="$PROJECT_DIR$/CRYPTO/EvalLrUpdate.h" />
-        <option value="$PROJECT_DIR$/CRYPTO/EvalLrUpdate.cpp" />
         <option value="$PROJECT_DIR$/PPML/PPLR/PPNB_Classifier.h" />
         <option value="$PROJECT_DIR$/ML/LR/LR.h" />
-        <option value="$PROJECT_DIR$/ML/LR/LR.cpp" />
         <option value="$PROJECT_DIR$/TEST/TESTBuildingBlocks.h" />
         <option value="$PROJECT_DIR$/CRYPTO/EvalDotProd.h" />
-        <option value="$PROJECT_DIR$/TEST/TESTBuildingBlocks.cpp" />
-        <option value="$PROJECT_DIR$/TEST/main.cpp" />
         <option value="$PROJECT_DIR$/DATA/Scripts/Shuffle.py" />
         <option value="$PROJECT_DIR$/DATA/Scripts/Shuffle_enc.py" />
         <option value="$PROJECT_DIR$/CRYPTO/EvalSub2.h" />
-        <option value="$PROJECT_DIR$/CRYPTO/EvalSub2.cpp" />
         <option value="$PROJECT_DIR$/PPML/PPLR/PPLR_Classifier.h" />
-        <option value="$PROJECT_DIR$/PPML/PPLR/PPLR_Classifier.cpp" />
         <option value="$PROJECT_DIR$/CRYPTO/EvalDotProd.cpp" />
+        <option value="$PROJECT_DIR$/CRYPTO/EvalLrUpdate.cpp" />
+        <option value="$PROJECT_DIR$/CRYPTO/DTPKC.cpp" />
+        <option value="$PROJECT_DIR$/CRYPTO/DTPKC.h" />
+        <option value="$PROJECT_DIR$/TEST/TESTBuildingBlocks.cpp" />
+        <option value="$PROJECT_DIR$/TEST/main.cpp" />
+        <option value="$PROJECT_DIR$/CRYPTO/EvalSigmoid.cpp" />
+        <option value="$PROJECT_DIR$/CRYPTO/EvalSub2.cpp" />
+        <option value="$PROJECT_DIR$/PPML/PPLR/PPLR_Classifier.cpp" />
+        <option value="$PROJECT_DIR$/ML/LR/LR.cpp" />
         <option value="$PROJECT_DIR$/CONFIG/DAPPLE.config" />
       </list>
     </option>
@@ -295,19 +289,18 @@
               <item name="DAPPLE" type="b2602c69:ProjectViewProjectNode" />
               <item name="DAPPLE-2.0" type="462c0819:PsiDirectoryNode" />
               <item name="PPML" type="462c0819:PsiDirectoryNode" />
-              <item name="IO" type="462c0819:PsiDirectoryNode" />
+              <item name="PPLR" type="462c0819:PsiDirectoryNode" />
             </path>
             <path>
               <item name="DAPPLE" type="b2602c69:ProjectViewProjectNode" />
               <item name="DAPPLE-2.0" type="462c0819:PsiDirectoryNode" />
               <item name="PPML" type="462c0819:PsiDirectoryNode" />
-              <item name="PPLR" type="462c0819:PsiDirectoryNode" />
+              <item name="PPVFDT" type="462c0819:PsiDirectoryNode" />
             </path>
             <path>
               <item name="DAPPLE" type="b2602c69:ProjectViewProjectNode" />
               <item name="DAPPLE-2.0" type="462c0819:PsiDirectoryNode" />
-              <item name="PPML" type="462c0819:PsiDirectoryNode" />
-              <item name="PPVFDT" type="462c0819:PsiDirectoryNode" />
+              <item name="TEST" type="462c0819:PsiDirectoryNode" />
             </path>
           </expand>
           <select />
@@ -416,14 +409,10 @@
       <workItem from="1553591361409" duration="14332000" />
       <workItem from="1553676823720" duration="36106000" />
       <workItem from="1554383548410" duration="16642000" />
-      <workItem from="1554464277043" duration="10202000" />
-    </task>
-    <task id="LOCAL-00009" summary="05/11/2018 (DTPKC functions tested and working)">
-      <created>1541412003192</created>
-      <option name="number" value="00009" />
-      <option name="presentableId" value="LOCAL-00009" />
-      <option name="project" value="LOCAL" />
-      <updated>1541412003192</updated>
+      <workItem from="1554464277043" duration="13193000" />
+      <workItem from="1554794662948" duration="1201000" />
+      <workItem from="1554894851081" duration="14949000" />
+      <workItem from="1554980604962" duration="20519000" />
     </task>
     <task id="LOCAL-00010" summary="05/11/2018 (DTPKC functions tested and working)">
       <created>1541412012150</created>
@@ -761,11 +750,18 @@
       <option name="project" value="LOCAL" />
       <updated>1554397582883</updated>
     </task>
-    <option name="localTasksCounter" value="58" />
+    <task id="LOCAL-00058" summary="Updated version of PPLR with para">
+      <created>1554478129022</created>
+      <option name="number" value="00058" />
+      <option name="presentableId" value="LOCAL-00058" />
+      <option name="project" value="LOCAL" />
+      <updated>1554478129023</updated>
+    </task>
+    <option name="localTasksCounter" value="59" />
     <servers />
   </component>
   <component name="TimeTrackingManager">
-    <option name="totallyTimeSpent" value="728430000" />
+    <option name="totallyTimeSpent" value="768090000" />
   </component>
   <component name="TodoView">
     <todo-panel id="selected-file">
@@ -779,18 +775,18 @@
   <component name="ToolWindowManager">
     <frame x="67" y="25" width="1355" height="678" extended-state="6" />
     <layout>
-      <window_info active="true" content_ui="combo" id="Project" order="0" sideWeight="0.8053333" visible="true" weight="0.31398013" />
+      <window_info active="true" content_ui="combo" id="Project" order="0" sideWeight="0.8053333" visible="true" weight="0.29411766" />
       <window_info id="Structure" order="1" sideWeight="0.2735043" side_tool="true" weight="0.3390558" />
       <window_info id="Favorites" order="2" sideWeight="0.19466667" side_tool="true" weight="0.28113064" />
       <window_info anchor="bottom" id="Database Changes" order="0" />
       <window_info anchor="bottom" id="Message" order="1" />
       <window_info anchor="bottom" id="Find" order="2" sideWeight="0.49503437" weight="0.32675046" />
-      <window_info anchor="bottom" id="Run" order="3" sideWeight="0.6355997" visible="true" weight="0.3096539" />
-      <window_info anchor="bottom" id="Debug" order="4" sideWeight="0.58594346" weight="0.46140036" />
+      <window_info anchor="bottom" id="Run" order="3" sideWeight="0.6355997" visible="true" weight="0.3387978" />
+      <window_info anchor="bottom" id="Debug" order="4" sideWeight="0.58594346" weight="0.45960504" />
       <window_info anchor="bottom" id="Cvs" order="5" weight="0.25" />
       <window_info anchor="bottom" id="Inspection" order="6" weight="0.4" />
       <window_info anchor="bottom" id="TODO" order="7" sideWeight="0.49920928" weight="0.32786885" />
-      <window_info anchor="bottom" id="Messages" order="8" sideWeight="0.6363636" weight="0.4183124" />
+      <window_info anchor="bottom" id="Messages" order="8" sideWeight="0.6363636" weight="0.41530055" />
       <window_info anchor="bottom" id="Event Log" order="9" sideWeight="0.53093964" side_tool="true" weight="0.38069215" />
       <window_info anchor="bottom" id="Terminal" order="10" sideWeight="0.46906036" weight="0.3123878" />
       <window_info anchor="bottom" id="Version Control" order="11" sideWeight="0.49197862" weight="0.32315978" />
@@ -850,7 +846,6 @@
   <component name="VcsManagerConfiguration">
     <option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
     <option name="CHECK_NEW_TODO" value="false" />
-    <MESSAGE value="20/11/2018 : NPPVFDT entirely coded but not properly tested : don't forget to add parallelism to this version too" />
     <MESSAGE value="21/11/2018 : NPPVFDT almost works but still has a problem with the choice of the thresholds" />
     <MESSAGE value="22/11/2018 : Still having really low accuracy" />
     <MESSAGE value="22/11/2018 : VFDT works just fine" />
@@ -875,7 +870,8 @@
     <MESSAGE value="Almost their (Third classifier)" />
     <MESSAGE value="Added dot product test" />
     <MESSAGE value="Added the call to the PPLR classifier" />
-    <option name="LAST_COMMIT_MESSAGE" value="Added the call to the PPLR classifier" />
+    <MESSAGE value="Updated version of PPLR with para" />
+    <option name="LAST_COMMIT_MESSAGE" value="Updated version of PPLR with para" />
   </component>
   <component name="XDebuggerManager">
     <breakpoint-manager>
@@ -1321,18 +1317,18 @@
         </line-breakpoint>
         <line-breakpoint enabled="true" type="com.jetbrains.cidr.execution.debugger.OCBreakpointType">
           <url>file://$PROJECT_DIR$/TEST/TESTBuildingBlocks.cpp</url>
-          <line>551</line>
+          <line>552</line>
           <option name="timeStamp" value="873" />
         </line-breakpoint>
         <line-breakpoint enabled="true" type="com.jetbrains.cidr.execution.debugger.OCBreakpointType">
           <url>file://$PROJECT_DIR$/PPML/PPLR/PPLR_Classifier.cpp</url>
-          <line>154</line>
-          <option name="timeStamp" value="874" />
+          <line>119</line>
+          <option name="timeStamp" value="897" />
         </line-breakpoint>
         <line-breakpoint enabled="true" type="com.jetbrains.cidr.execution.debugger.OCBreakpointType">
-          <url>file://$PROJECT_DIR$/PPML/PPLR/PPLR_Classifier.cpp</url>
-          <line>118</line>
-          <option name="timeStamp" value="897" />
+          <url>file://$PROJECT_DIR$/CRYPTO/EvalSigmoid.cpp</url>
+          <line>34</line>
+          <option name="timeStamp" value="916" />
         </line-breakpoint>
         <line-breakpoint enabled="true" suspend="THREAD" type="python-line">
           <url>file://$PROJECT_DIR$/DATA/Scripts/Clean_Adult.py</url>
@@ -1380,319 +1376,282 @@
     </watches-manager>
   </component>
   <component name="editorHistoryManager">
-    <entry file="file://$PROJECT_DIR$/EXP/LR-Bank/LR-2019-03-13-21:13:08-Stats.csv">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/PlzWork-2019-04-05-15:29:24-ClassOutput.txt">
       <provider selected="true" editor-type-id="text-editor" />
     </entry>
-    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Cipher-2019-04-03-13:32:59-Stats.csv">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/PlzWork-2019-04-05-15:29:24-Stats.csv">
       <provider selected="true" editor-type-id="text-editor" />
     </entry>
-    <entry file="file://$PROJECT_DIR$/EXP/DebugPPNB/clear-2019-03-28-16:43:39-Stats.csv">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Debug-2019-04-10-12:28:20-Stats.csv">
       <provider selected="true" editor-type-id="text-editor" />
     </entry>
-    <entry file="file://$PROJECT_DIR$/EXP/LR-Bank/LR-2019-03-13-21:10:32-Stats.csv">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Debug-2019-04-10-12:38:55-Config.txt">
       <provider selected="true" editor-type-id="text-editor" />
     </entry>
-    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Cipher-2019-04-03-13:35:51-Stats.csv">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="270">
-          <caret line="18" lean-forward="true" selection-start-line="18" selection-end-line="18" />
-        </state>
-      </provider>
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Debug-2019-04-10-12:38:55-Stats.csv">
+      <provider selected="true" editor-type-id="text-editor" />
     </entry>
-    <entry file="file://$PROJECT_DIR$/EXP/LR-Bank/LR-2019-03-13-21:10:32-Config.txt">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Debug-2019-04-10-12:38:55-ClassOutput.txt">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="330">
-          <caret line="61" column="2" selection-start-line="56" selection-start-column="1" selection-end-line="61" selection-end-column="2" />
+        <state relative-caret-position="285">
+          <caret line="19" column="1" selection-start-line="19" selection-start-column="1" selection-end-line="19" selection-end-column="1" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Cipher-2019-04-03-13:44:21-Stats.csv">
-      <provider selected="true" editor-type-id="text-editor" />
-    </entry>
-    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Cipher-2019-04-03-13:48:10-Stats.csv">
-      <provider selected="true" editor-type-id="text-editor" />
-    </entry>
-    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalSigmoid.cpp">
+    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalProba.cpp">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="1200">
-          <caret line="80" column="91" selection-start-line="78" selection-start-column="3" selection-end-line="80" selection-end-column="91" />
-          <folding>
-            <element signature="e#0#24#0" expanded="true" />
-          </folding>
+        <state relative-caret-position="42">
+          <caret line="72" lean-forward="true" selection-start-line="72" selection-end-line="72" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalLrUpdate.h">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Debug-2019-04-10-12:31:13-ClassOutput.txt">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="165">
-          <caret line="11" column="8" selection-start-line="11" selection-start-column="8" selection-end-line="11" selection-end-column="8" />
+        <state relative-caret-position="90">
+          <caret line="6" column="1" selection-start-line="6" selection-start-column="1" selection-end-line="6" selection-end-column="1" />
         </state>
       </provider>
     </entry>
-    <entry file="file:///usr/local/include/gmpxx.h">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Debug-2019-04-10-12:28:20-ClassOutput.txt.enc">
+      <provider selected="true" editor-type-id="text-editor" />
+    </entry>
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Debug-2019-04-10-12:28:20-ClassOutput.txt">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="22335">
-          <caret line="1489" selection-start-line="1489" selection-end-line="1489" />
+        <state relative-caret-position="150">
+          <caret line="10" selection-start-line="10" selection-end-line="10" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/PPML/PPLR/PPNB_Classifier.cpp" />
-    <entry file="file://$PROJECT_DIR$/PPML/PPLR/PPNB_Classifier.h" />
-    <entry file="file://$PROJECT_DIR$/PPML/PPNB/PPNB_Classifier.cpp">
+    <entry file="file://$PROJECT_DIR$/CRYPTO/DTPKC.h">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="195">
-          <caret line="13" column="40" lean-forward="true" selection-start-line="13" selection-start-column="40" selection-end-line="13" selection-end-column="40" />
-          <folding>
-            <element signature="e#0#17#0" expanded="true" />
-          </folding>
+        <state relative-caret-position="-225">
+          <caret line="53" column="24" selection-start-line="53" selection-start-column="24" selection-end-line="53" selection-end-column="24" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalEntropy.h">
-      <provider selected="true" editor-type-id="text-editor" />
-    </entry>
-    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalLrUpdate.cpp">
+    <entry file="file:///usr/local/include/gmpxx.h">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="15">
-          <caret line="1" column="17" selection-start-line="1" selection-start-column="17" selection-end-line="1" selection-end-column="17" />
-          <folding>
-            <element signature="e#0#25#0" expanded="true" />
-          </folding>
+        <state relative-caret-position="83">
+          <caret line="2254" selection-start-line="2254" selection-end-line="2254" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalEntropy.cpp">
+    <entry file="file://$PROJECT_DIR$/EXP/DebugPPNB/Cipher-2019-04-03-10:50:29-Config.txt">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="15">
-          <caret line="72" column="4" selection-start-line="72" selection-start-column="4" selection-end-line="72" selection-end-column="25" />
-        </state>
+        <state relative-caret-position="-90" />
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/PPML/IO/PPDatasetReader.h">
-      <provider selected="true" editor-type-id="text-editor" />
-    </entry>
-    <entry file="file://$PROJECT_DIR$/ML/LR/LR.h">
+    <entry file="file://$PROJECT_DIR$/DATA/Datasets/Nursery/testing.data">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="285">
-          <caret line="38" column="20" selection-start-line="23" selection-start-column="3" selection-end-line="38" selection-end-column="20" />
-        </state>
+        <state relative-caret-position="-5746" />
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/TEST/TESTBuildingBlocks.h">
+    <entry file="file://$PROJECT_DIR$/DATA/Datasets/Nursery/data-clean.csv">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="225">
-          <caret line="15" column="31" selection-start-line="15" selection-start-column="31" selection-end-line="15" selection-end-column="31" />
+        <state relative-caret-position="209">
+          <caret line="1999" column="9" selection-start-line="1999" selection-start-column="9" selection-end-line="1999" selection-end-column="9" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/TEST/TESTBuildingBlocks.cpp">
+    <entry file="file://$PROJECT_DIR$/DATA/Datasets/Nursery/training.data">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="185">
-          <caret line="588" column="56" selection-start-line="588" selection-start-column="56" selection-end-line="588" selection-end-column="56" />
+        <state relative-caret-position="209">
+          <caret line="1597" column="17" selection-start-line="1597" selection-start-column="17" selection-end-line="1597" selection-end-column="17" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/PPML/PPVFDT/PPVFDT_Classifier.h">
+    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalDotProd.cpp">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="-165">
-          <caret line="34" column="24" selection-start-line="34" selection-start-column="24" selection-end-line="34" selection-end-column="24" />
+        <state relative-caret-position="198">
+          <caret line="110" column="24" selection-start-line="110" selection-start-column="24" selection-end-line="110" selection-end-column="24" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Cipher-2019-04-05-11:08:58-Stats.csv">
-      <provider selected="true" editor-type-id="text-editor" />
-    </entry>
-    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Cipher-2019-04-05-11:10:58-Stats.csv">
-      <provider selected="true" editor-type-id="text-editor" />
-    </entry>
-    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalDotProd.h">
+    <entry file="file://$PROJECT_DIR$/CRYPTO/DTPKC.cpp">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="165">
-          <caret line="11" column="13" selection-start-line="11" selection-start-column="13" selection-end-line="11" selection-end-column="13" />
+        <state relative-caret-position="928">
+          <caret line="94" column="16" selection-start-line="94" selection-start-column="8" selection-end-line="94" selection-end-column="16" />
         </state>
       </provider>
     </entry>
     <entry file="file://$PROJECT_DIR$/TEST/main.cpp">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="75">
-          <caret line="591" selection-start-line="591" selection-end-line="591" />
+        <state relative-caret-position="231">
+          <caret line="72" column="28" selection-start-line="72" selection-start-column="28" selection-end-line="72" selection-end-column="28" />
           <folding>
             <element signature="e#52#93#0" expanded="true" />
           </folding>
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_1.data">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Cipher-2019-04-03-13:21:49-Config.txt">
       <provider selected="true" editor-type-id="text-editor" />
     </entry>
-    <entry file="file://$PROJECT_DIR$/DATA/Scripts/Shuffle.py">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Cipher-2019-04-03-13:21:49-ClassOutput.txt">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="105">
-          <caret line="7" column="56" selection-start-line="7" selection-start-column="56" selection-end-line="7" selection-end-column="71" />
-          <folding>
-            <element signature="e#0#19#0" expanded="true" />
-          </folding>
+        <state relative-caret-position="-5521">
+          <caret line="15" column="1" lean-forward="true" selection-start-line="15" selection-start-column="1" selection-end-line="15" selection-end-column="1" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/DATA/Datasets/Adult/DO_1.enc">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="210">
-          <caret line="14" column="18188" selection-start-line="14" selection-start-column="18188" selection-end-line="14" selection-end-column="18188" />
-        </state>
-      </provider>
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Cipher-2019-04-03-13:21:49-Stats.csv">
+      <provider selected="true" editor-type-id="text-editor" />
+    </entry>
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/Cipher-2019-04-04-15:40:48-Stats.csv">
+      <provider selected="true" editor-type-id="text-editor" />
     </entry>
-    <entry file="file://$PROJECT_DIR$/DATA/Datasets/Adult/DO_12.enc">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-11-14:42:14-Stats.csv">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="180">
-          <caret line="12" column="8643" selection-start-line="12" selection-start-column="8643" selection-end-line="12" selection-end-column="8644" />
+        <state relative-caret-position="45">
+          <caret line="3" lean-forward="true" selection-start-line="3" selection-end-line="3" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/PPML/IO/PPRecord.h">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-11-15:28:24-Config.txt">
+      <provider selected="true" editor-type-id="text-editor" />
+    </entry>
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-11-15:28:24-Stats.csv">
+      <provider selected="true" editor-type-id="text-editor" />
+    </entry>
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-11-14:42:14-ClassOutput.txt">
+      <provider selected="true" editor-type-id="text-editor" />
+    </entry>
+    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalSigmoid.cpp">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="667">
-          <caret line="47" selection-start-line="47" selection-end-line="47" />
+        <state relative-caret-position="190">
+          <caret line="86" column="10" selection-start-line="86" selection-start-column="10" selection-end-line="86" selection-end-column="10" />
+          <folding>
+            <element signature="e#0#24#0" expanded="true" />
+          </folding>
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/ML/LR/LR.cpp">
+    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalLrUpdate.cpp">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="150">
-          <caret line="10" column="39" selection-start-line="10" selection-start-column="39" selection-end-line="10" selection-end-column="39" />
+        <state relative-caret-position="109">
+          <caret line="31" column="91" selection-start-line="31" selection-start-column="8" selection-end-line="31" selection-end-column="91" />
           <folding>
-            <element signature="e#0#16#0" expanded="true" />
-            <element signature="e#891#2113#0" />
-            <element signature="e#2115#2436#0" />
-            <element signature="e#2438#2635#0" />
-            <element signature="e#2637#3029#0" />
+            <element signature="e#0#25#0" expanded="true" />
           </folding>
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_1.enc">
+    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalSub2.cpp">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="1515">
-          <caret line="101" selection-start-line="101" selection-end-line="101" />
+        <state relative-caret-position="139">
+          <caret line="53" column="13" selection-start-line="53" selection-start-column="13" selection-end-line="53" selection-end-column="13" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/DATA/Scripts/Shuffle_enc.py">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-11-15:44:05-Config.txt">
+      <provider selected="true" editor-type-id="text-editor" />
+    </entry>
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-11-15:44:05-Stats.csv">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="51">
-          <caret line="15" column="9" selection-start-line="15" selection-start-column="9" selection-end-line="15" selection-end-column="9" />
+        <state relative-caret-position="45">
+          <caret line="3" selection-start-line="3" selection-end-line="3" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalSub.h">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-11-15:54:14-Stats.csv">
       <provider selected="true" editor-type-id="text-editor" />
     </entry>
-    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalSub.cpp">
+    <entry file="file://$PROJECT_DIR$/DATA/Datasets/Bank/LR/DO_1.data">
+      <provider selected="true" editor-type-id="text-editor" />
+    </entry>
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-11-15:55:55-Stats.csv">
+      <provider selected="true" editor-type-id="text-editor" />
+    </entry>
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/PlzWork-2019-04-10-11:22:32-Stats.csv">
+      <provider selected="true" editor-type-id="text-editor" />
+    </entry>
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-11-16:00:56-Stats.csv">
+      <provider selected="true" editor-type-id="text-editor" />
+    </entry>
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-12-08:59:20-Stats.csv">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="-205">
-          <folding>
-            <element signature="e#0#20#0" expanded="true" />
-          </folding>
+        <state relative-caret-position="90">
+          <caret line="6" column="62" selection-start-line="6" selection-start-column="61" selection-end-line="6" selection-end-column="62" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalSub2.h">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-12-09:00:16-Stats.csv">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="285">
-          <caret line="19" column="18" selection-start-line="19" selection-start-column="18" selection-end-line="19" selection-end-column="18" />
+        <state relative-caret-position="45">
+          <caret line="3" column="65" selection-start-line="3" selection-start-column="65" selection-end-line="3" selection-end-column="65" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalSub2.cpp">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/PlzWork-2019-04-10-11:22:32-Config.txt">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="96">
-          <caret line="16" column="1" selection-start-line="16" selection-start-column="1" selection-end-line="16" selection-end-column="1" />
-          <folding>
-            <element signature="e#0#20#0" expanded="true" />
-          </folding>
-        </state>
+        <state relative-caret-position="-225" />
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/PPML/PPLR/PPLR_Classifier.h">
+    <entry file="file://$PROJECT_DIR$/TEST/TESTBuildingBlocks.cpp">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="120">
-          <caret line="8" column="34" selection-start-line="8" selection-start-column="34" selection-end-line="8" selection-end-column="34" />
+        <state relative-caret-position="245">
+          <caret line="617" selection-start-line="617" selection-end-line="617" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalAddPow2.cpp">
+    <entry file="file://$PROJECT_DIR$/PPML/PPLR/PPLR_Classifier.cpp">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="-1225">
-          <caret line="4" selection-start-line="4" selection-end-line="4" />
+        <state relative-caret-position="93">
+          <caret line="322" column="10" selection-start-line="322" selection-start-column="10" selection-end-line="322" selection-end-column="10" />
+          <folding>
+            <element signature="e#0#17#0" expanded="true" />
+            <element signature="e#92#1009#0" />
+          </folding>
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/PlzWork-2019-04-05-15:13:59-ClassOutput.txt">
-      <provider selected="true" editor-type-id="text-editor" />
-    </entry>
-    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/PlzWork-2019-04-05-14:44:58-Stats.csv">
-      <provider selected="true" editor-type-id="text-editor" />
-    </entry>
-    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/PlzWork-2019-04-05-14:44:58-ClassOutput.txt">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-12-09:01:04-Stats.csv">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="150">
-          <caret line="10" selection-start-line="10" selection-end-line="10" />
+        <state relative-caret-position="165">
+          <caret line="11" column="25" selection-start-line="11" selection-start-column="25" selection-end-line="11" selection-end-column="25" />
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/PlzWork-2019-04-05-15:13:59-Config.txt">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-12-09:05:14-Stats.csv">
       <provider selected="true" editor-type-id="text-editor" />
     </entry>
-    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/PlzWork-2019-04-05-15:13:59-ClassOutput.txt.enc">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-12-09:04:18-Stats.csv">
       <provider selected="true" editor-type-id="text-editor" />
     </entry>
-    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/PlzWork-2019-04-05-15:13:59-Stats.csv">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-12-09:06:11-Stats.csv">
       <provider selected="true" editor-type-id="text-editor" />
     </entry>
-    <entry file="file://$PROJECT_DIR$/PPML/PPVFDT/PPVFDT_Classifier.cpp">
+    <entry file="file://$PROJECT_DIR$/ML/LR/LR.cpp">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="255">
-          <caret line="238" column="122" selection-start-line="238" selection-start-column="16" selection-end-line="238" selection-end-column="122" />
+        <state relative-caret-position="123">
+          <caret line="276" column="30" selection-start-line="276" selection-start-column="30" selection-end-line="276" selection-end-column="30" />
           <folding>
-            <element signature="e#20#50#0" expanded="true" />
+            <element signature="e#0#16#0" expanded="true" />
+            <element signature="e#891#2113#0" />
+            <element signature="e#2115#2436#0" />
+            <element signature="e#2438#2635#0" />
+            <element signature="e#2637#3029#0" />
           </folding>
         </state>
       </provider>
     </entry>
-    <entry file="file://$PROJECT_DIR$/PPML/IO/PPDatasetReader.cpp">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="217">
-          <caret line="126" selection-start-line="126" selection-end-line="126" />
-        </state>
-      </provider>
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-12-09:08:50-Stats.csv">
+      <provider selected="true" editor-type-id="text-editor" />
     </entry>
-    <entry file="file://$PROJECT_DIR$/CRYPTO/EvalDotProd.cpp">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="165">
-          <caret line="70" selection-start-line="70" selection-end-line="70" />
-        </state>
-      </provider>
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-12-09:10:41-Stats.csv">
+      <provider selected="true" editor-type-id="text-editor" />
     </entry>
-    <entry file="file://$PROJECT_DIR$/PPML/PPLR/PPLR_Classifier.cpp">
+    <entry file="file://$PROJECT_DIR$/EXP/DEBUG-LR/LetsSeeHowItworks-2019-04-12-09:09:55-Stats.csv">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="72">
-          <caret line="342" selection-start-line="342" selection-end-line="342" />
-          <folding>
-            <element signature="e#0#17#0" expanded="true" />
-            <element signature="e#92#1004#0" />
-            <element signature="e#1006#1257#0" />
-            <element signature="e#1259#3015#0" />
-            <element signature="e#3017#3392#0" />
-            <element signature="e#3394#3659#0" />
-            <element signature="e#3661#4033#0" />
-          </folding>
+        <state relative-caret-position="255">
+          <caret line="17" column="69" selection-start-line="17" selection-start-column="63" selection-end-line="17" selection-end-column="69" />
         </state>
       </provider>
     </entry>
     <entry file="file://$PROJECT_DIR$/CONFIG/DAPPLE.config">
       <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="165">
-          <caret line="11" column="20" selection-start-line="11" selection-start-column="20" selection-end-line="11" selection-end-column="20" />
+        <state relative-caret-position="105">
+          <caret line="7" column="27" lean-forward="true" selection-start-line="7" selection-start-column="27" selection-end-line="7" selection-end-column="27" />
         </state>
       </provider>
     </entry>
diff --git a/CONFIG/DAPPLE.config b/CONFIG/DAPPLE.config
index b365ac0a..3e03ea9e 100755
--- a/CONFIG/DAPPLE.config
+++ b/CONFIG/DAPPLE.config
@@ -4,14 +4,14 @@
       PrivacyPreservation="true";
       MLAlgorithm="lr";
       runs_number ="1";
-      thread_number="16";
+      thread_number="1";
       remoteClient="false";
       Incremental="true";
       OutputPath="/home/rania/CLionProjects/DAPPLE-2.0/EXP/DEBUG-LR/";
-      scenarioName ="PlzWork";
-      debug="false";
-      maxTrainSize="10";
-      maxTestSize="10";
+      scenarioName ="LetsSeeHowItworks";
+      debug="true";
+      maxTrainSize="100";
+      maxTestSize="400";
  }
 
  # The dataset configuration parameters
diff --git a/CRYPTO/DTPKC.cpp b/CRYPTO/DTPKC.cpp
index 5ffd8586..4adee6a5 100755
--- a/CRYPTO/DTPKC.cpp
+++ b/CRYPTO/DTPKC.cpp
@@ -163,7 +163,7 @@ Cipher DTPKC :: enc(mpz_class plaintext, mpz_class pkey)
 
     // Set the public key
     c.Pub=pkey;
-
+    c.sign = 1;
     return c;
 }
 
@@ -310,6 +310,10 @@ DTPKC::Sdec(Cipher c)
 {
 mpz_class invLambda = mpz_class_invert(SK,n2);
 mpz_class powT1 = (((mpz_class_powm(c.T1,SK,n2)-1)/n)*invLambda)%n;
+
+if (c.sign == 0 )
+    powT1 = - powT1;
+
 return powT1;
 
 }
diff --git a/CRYPTO/DTPKC.h b/CRYPTO/DTPKC.h
index ba6f78ad..fbc82a77 100755
--- a/CRYPTO/DTPKC.h
+++ b/CRYPTO/DTPKC.h
@@ -42,6 +42,7 @@ public :
     struct Cipher {
 
         mpz_class T1, T2, Pub;
+        int sign = 1;
 
         /**
          * overload the comparison operators for ciphers.
diff --git a/CRYPTO/EvalDotProd.cpp b/CRYPTO/EvalDotProd.cpp
index 1744923b..bfaa18c5 100755
--- a/CRYPTO/EvalDotProd.cpp
+++ b/CRYPTO/EvalDotProd.cpp
@@ -30,14 +30,15 @@ std::vector<Cipher> EvalDotProd::EvalDotProd_U1_step1()
     {
         Cipher inter, inter2;
 
-
         inter.T1 = mpz_class_powm(a[i].T1,r1,dtpkc.n2);
         inter.T2 = mpz_class_powm(a[i].T2,r1,dtpkc.n2);
         inter.Pub= a[i].Pub;
+        inter.sign = a[i].sign;
 
         inter2.T1 = mpz_class_powm(b[i].T1,r2,dtpkc.n2);
         inter2.T2 = mpz_class_powm(b[i].T2,r2,dtpkc.n2);
         inter2.Pub= b[i].Pub;
+        inter2.sign = b[i].sign;
 
         res.push_back(inter);
         res.push_back(dtpkc.PSdec0(inter));
@@ -68,18 +69,33 @@ Cipher EvalDotProd::EvalDotProd_U2_step2(std::vector<Cipher> val)
     for (int i=0; i<val.size(); i+=4)
     {
         mpz_class inter  = dtpkc.PSdec1(val[i], val[i+1]) * dtpkc.PSdec1(val[i+2], val[i+3]);
+
+        if ((val[i].sign == 1 && val[i + 2].sign == 0) || (val[i].sign == 0 && val[i + 2].sign == 1)) {
+
+            inter = -inter;
+        }
+
         #pragma omp critical
         {
             res = res + inter/r3;
         };
     }
 
-    return dtpkc.enc(res,a[0].Pub);
+    Cipher out;
+
 
+    if (res < 0) {
+        out = dtpkc.enc(-res, a[0].Pub);
+        out.sign = 0;
+    } else {
+        out = dtpkc.enc(res, a[0].Pub);
+        out.sign = 1;
+    }
 
 
-}
+    return out;
 
+}
 
 
 Cipher EvalDotProd::EvalDotProd_U1_step3(Cipher val)
@@ -92,7 +108,7 @@ Cipher EvalDotProd::EvalDotProd_U1_step3(Cipher val)
     EvalDiv evalDiv(val,S1,dtpkc);
     std::vector <Cipher> res = evalDiv.EvalDiv_U1_step1();
     Cipher out = evalDiv.EvalDiv_U1_step3(evalDiv.EvalDiv_U2_step2(res[0],res[1], res[2], res[3]));
-
+    out.sign = val.sign;
     return out;
 
 }
diff --git a/CRYPTO/EvalLrUpdate.cpp b/CRYPTO/EvalLrUpdate.cpp
index 62e1d7e8..9a09a7f1 100755
--- a/CRYPTO/EvalLrUpdate.cpp
+++ b/CRYPTO/EvalLrUpdate.cpp
@@ -3,8 +3,7 @@
 
 
 EvalLrUpdate::EvalLrUpdate(std::vector<Cipher> a, std::vector<Cipher> b, std::vector<Cipher> c, int alpha,
-                           DTPKC dtpkc)
-{
+                           DTPKC dtpkc){
     this->a=a;
     this->b=b;
     this->c=c;
@@ -27,19 +26,56 @@ std::vector<Cipher> EvalLrUpdate::EvalLrUpdate_U1_step1()
 
     gmp_randclear(state);
 
-    for (int i=0; i< a.size(); i++)
-    {
+    for (int i=0; i< a.size(); i++){
         Cipher inter, inter2;
-        inter.T1 = a[i].T1*mpz_class_powm(b[i].T1,dtpkc.n-1,dtpkc.n2);
-        inter.T2 = a[i].T2*mpz_class_powm(b[i].T2,dtpkc.n-1,dtpkc.n2);
-        inter.Pub= b[i].Pub;
+
+        if ( (a[i].sign == 1 && b[i].sign ==  1 ) || (a[i].sign == 0 && b[i].sign ==  0 )){
+
+            if (a[i] > b[i] || a[i] == b[i]){
+
+                inter.T1 = a[i].T1*mpz_class_powm(b[i].T1,dtpkc.n-1,dtpkc.n2);
+                inter.T2 = a[i].T2*mpz_class_powm(b[i].T2,dtpkc.n-1,dtpkc.n2);
+                inter.Pub= b[i].Pub;
+                inter.sign = 1;
+
+            } else{
+
+                inter.T1 = b[i].T1*mpz_class_powm(a[i].T1,dtpkc.n-1,dtpkc.n2);
+                inter.T2 = b[i].T2*mpz_class_powm(a[i].T2,dtpkc.n-1,dtpkc.n2);
+                inter.Pub= a[i].Pub;
+                inter.sign = 0;
+            }
+
+
+            if (a[i].sign == 0){
+                inter.sign = 1 - inter.sign;
+            }
+
+        }else{
+
+            inter.T1 = a[i].T1*b[i].T1;
+            inter.T2 = a[i].T2*b[i].T2;
+            inter.Pub= b[i].Pub;
+
+            if (b[i].sign == 0 ){
+
+                inter.sign = 1;
+
+            }else{
+
+                inter.sign = 0;
+
+            }
+        }
 
         inter.T1 = mpz_class_powm(inter.T1,r1,dtpkc.n2);
         inter.T2 = mpz_class_powm(inter.T2,r1,dtpkc.n2);
 
-        inter2.T1 = mpz_class_powm(c[i].T1,r2,dtpkc.n2);
-        inter2.T2 = mpz_class_powm(c[i].T2,r2,dtpkc.n2);
+
+        inter2.T1 = mpz_class_powm(c[i].T1,r2,dtpkc.n2*dtpkc.n2);
+        inter2.T2 = mpz_class_powm(c[i].T2,r2,dtpkc.n2*dtpkc.n2);
         inter2.Pub= c[i].Pub;
+        inter2.sign = c[i].sign;
 
         res.push_back(inter);
         res.push_back(dtpkc.PSdec0(inter));
@@ -54,28 +90,39 @@ std::vector<Cipher> EvalLrUpdate::EvalLrUpdate_U1_step1()
 
 }
 
-Cipher EvalLrUpdate::EvalLrUpdate_U2_step2(std::vector<Cipher> val)
-{
+Cipher EvalLrUpdate::EvalLrUpdate_U2_step2(std::vector<Cipher> val) {
 
     mpz_class res;
     gmp_randstate_t state;
     gmp_randinit_default(state);
-    gmp_randseed_ui(state,time(NULL));
-
-    r3=mpz_class_get_z_bits(dtpkc.blindVal);
+    gmp_randseed_ui(state, time(NULL));
+    Cipher out;
 
+    r3 = mpz_class_get_z_bits(dtpkc.blindVal);
+    //cout << "r2*r1/r3 " << r1*r2/r3 << endl;
     gmp_randclear(state);
 
-    for (int i=0; i<val.size(); i+=4)
-    {
-        mpz_class inter  = dtpkc.PSdec1(val[i], val[i+1]) * dtpkc.PSdec1(val[i+2], val[i+3]) * alpha;
-        res = res + inter/r3;
+    for (int i = 0; i < val.size(); i += 4) {
+        mpz_class inter = dtpkc.PSdec1(val[i], val[i + 1]) * dtpkc.PSdec1(val[i + 2], val[i + 3]) * alpha;
+        if ((val[i].sign == 1 && val[i + 2].sign == 0) || (val[i].sign == 0 && val[i + 2].sign == 1)) {
+
+            inter = -inter;
+        }
+
+        res = res + inter / r3;
     }
 
 
-    return dtpkc.enc(res,a[0].Pub);
+    if (res < 0) {
+        out = dtpkc.enc(-res, a[0].Pub);
+        out.sign = 0;
+    } else {
+        out = dtpkc.enc(res, a[0].Pub);
+        out.sign = 1;
+    }
 
 
+    return out;
 
 }
 
@@ -91,6 +138,7 @@ Cipher EvalLrUpdate::EvalLrUpdate_U1_step3(Cipher val)
     EvalDiv evalDiv(val,S1,dtpkc);
     std::vector <Cipher> res = evalDiv.EvalDiv_U1_step1();
     Cipher out = evalDiv.EvalDiv_U1_step3(evalDiv.EvalDiv_U2_step2(res[0],res[1], res[2], res[3]));
+    out.sign  = val.sign;
 
     return out;
 
diff --git a/CRYPTO/EvalSigmoid.cpp b/CRYPTO/EvalSigmoid.cpp
index 2279f1f1..d6de48dc 100755
--- a/CRYPTO/EvalSigmoid.cpp
+++ b/CRYPTO/EvalSigmoid.cpp
@@ -1,6 +1,6 @@
 #include "EvalSigmoid.h"
 #include "EvalDiv.h"
-
+#include "EvalDiv100.h"
 
 
 EvalSigmoid::EvalSigmoid(Cipher a, int lambda, DTPKC dtpkc)
@@ -18,22 +18,21 @@ EvalSigmoid::EvalSig_U1_step1()
     gmp_randstate_t state;
     Cipher S1, S2;
 
-
     gmp_randinit_default(state);
     gmp_randseed_ui(state,time(NULL));
 
-    r=mpz_class_get_z_bits(dtpkc.blindVal);
+    r=mpz_class_get_z_bits(300);
 
     gmp_randclear(state);
 
     Cipher C_R = dtpkc.enc(mpz_class_log(r),u.Pub);
 
-    cout << "C_R" << C_R << endl;
+    //cout << "C_R" << C_R << endl;
 
     S1.T1=C_R.T1*u.T1;
     S1.T2=C_R.T2*u.T2;
     S1.Pub=u.Pub;
-
+    S1.sign = u.sign;
 
     S2=dtpkc.PSdec0(S1);
 
@@ -48,14 +47,18 @@ EvalSigmoid::EvalSig_U2_step2(Cipher S1, Cipher S2)
     mpz_class S3;
     Cipher S4;
     S3=dtpkc.PSdec1(S1,S2);
-    gmp_randstate_t randstate;
-    gmp_randinit_default(randstate);
-    gmp_randseed_ui(randstate,time(NULL));
-    //r2=mpz_class_get_z_bits(dtpkc.blindVal);
-    S4=dtpkc.enc(mpz_class_exp(S3,lambda),u.Pub);
 
-    //cout << "***" << mpz_class_exp(3,lambda)*mpz_class_exp(mpz_class_log(r),1)<< endl;
-    //cout << mpz_class_exp(S3,lambda)<< endl;
+    S4=dtpkc.enc(mpz_class_exp(S3,lambda/100),u.Pub);
+
+    if (S1.sign == 1){
+
+        S4.sign = 1;
+
+    }else{
+
+        S4.sign = 0;
+
+    }
 
 
     return S4;
@@ -72,27 +75,25 @@ EvalSigmoid::EvalSig_U1_step3(Cipher S4)
 
     S5 = dtpkc.enc(mpz_class_exp(mpz_class_log(r),1), u.Pub);
 
-    //cout << r-r2 << endl;
-    //S5 = dtpkc.enc(mpz_class_exp(r-r2,1), u.Pub);
-
-
-    EvalDiv evalDiv(S4,S5,dtpkc);
+    EvalDiv100 evalDiv(S4,S5,dtpkc);
     std::vector <Cipher> res = evalDiv.EvalDiv_U1_step1();
     S6 = evalDiv.EvalDiv_U1_step3(evalDiv.EvalDiv_U2_step2(res[0],res[1], res[2], res[3]));
 
+    //cout << "S6 " << S6 << endl;
 
+    Cipher one  = dtpkc.enc(lambda,u.Pub);
 
 
-    Cipher one  = dtpkc.enc(lambda,u.Pub);
+   // cout << "S6 " << S6 << endl;
 
     S7.T1 = S6.T1 * one.T1;
     S7.T2 = S6.T2 * one.T2;
     S7.Pub = u.Pub;
 
+    //cout << "S7" << S7 << endl;
 
-
-    S8.T1 = mpz_class_powm(S6.T1,lambda,dtpkc.n2);
-    S8.T2 = mpz_class_powm(S6.T2,lambda,dtpkc.n2);
+    S8.T1 = mpz_class_powm(S6.T1,lambda,dtpkc.n2*dtpkc.n2);
+    S8.T2 = mpz_class_powm(S6.T2,lambda,dtpkc.n2*dtpkc.n2);
     S8.Pub = u.Pub;
 
 
@@ -100,6 +101,16 @@ EvalSigmoid::EvalSig_U1_step3(Cipher S4)
     res = Div.EvalDiv_U1_step1();
     S9 = Div.EvalDiv_U1_step3(Div.EvalDiv_U2_step2(res[0],res[1], res[2], res[3]));
 
+
+    if ( S4.sign == 0){
+
+        S9.T1= one.T1*mpz_class_powm(S9.T1,dtpkc.n-1,dtpkc.n2);
+        S9.T2= one.T2*mpz_class_powm(S9.T2,dtpkc.n-1,dtpkc.n2);
+    }
+
+
+    S9.sign = 1;
+
     return S9;
 
 }
diff --git a/CRYPTO/EvalSub2.cpp b/CRYPTO/EvalSub2.cpp
index e1eebc7e..c3709a13 100755
--- a/CRYPTO/EvalSub2.cpp
+++ b/CRYPTO/EvalSub2.cpp
@@ -16,10 +16,45 @@ Cipher
 EvalSub2 :: EvalSub_U1()
 {
 
-        c.T1=a.T1*mpz_class_powm(b.T1,dtpkc.n-1,dtpkc.n2);
-        c.T2=a.T2*mpz_class_powm(b.T2,dtpkc.n-1,dtpkc.n2);
-        c.Pub=a.Pub;
+        if ( (a.sign == 1 && b.sign ==  1 ) || (a.sign == 0 && b.sign ==  0 )){
 
+            if (a > b){
+
+                c.T1=a.T1*mpz_class_powm(b.T1,dtpkc.n-1,dtpkc.n2);
+                c.T2=a.T2*mpz_class_powm(b.T2,dtpkc.n-1,dtpkc.n2);
+                c.Pub=a.Pub;
+                c.sign = 1;
+
+            }else{
+
+                c.T1=b.T1*mpz_class_powm(a.T1,dtpkc.n-1,dtpkc.n2);
+                c.T2=b.T2*mpz_class_powm(a.T2,dtpkc.n-1,dtpkc.n2);
+                c.Pub=a.Pub;
+                c.sign = 0;
+
+            }
+
+            if (a.sign == 0){
+                c.sign = 1 - c.sign;
+            }
+
+
+        }else{
+            c.T1=b.T1*a.T1;
+            c.T2=b.T2*a.T2;
+            c.Pub=a.Pub;
+
+            if (b.sign == 0){
+
+                c.sign = 1;
+
+            } else {
+
+                c.sign = 0;
+            }
+
+
+        }
 
     return c;
 }
\ No newline at end of file
diff --git a/DATA/Datasets/Bank/LR/DO_1.data b/DATA/Datasets/Bank/LR/DO_1.data
index 14d62ae6..bc03233b 100644
--- a/DATA/Datasets/Bank/LR/DO_1.data
+++ b/DATA/Datasets/Bank/LR/DO_1.data
@@ -1,100 +1,100 @@
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
-8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
-14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
-26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
+20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
 18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
-18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
-13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
-32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
-49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
-15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
-23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
-31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
-31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
 25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
-5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
-15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
-35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
 11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
-26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
-26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
-11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
-39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
-40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
+14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
+25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
 24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
-17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
-7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
 72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
+35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
 26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
-41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
 12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
-28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
-30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
+21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
+13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
+18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
+15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
+25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
 16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
-12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
-20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
+31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
 12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
+7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
+41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
+22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
+15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
+11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
 13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
+40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
 18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
-25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
+28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
+10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
+40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
+39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
 37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
-40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
-18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
 32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
-15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
 7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
-22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
-13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
+8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
+17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
 28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
 22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
-38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
-13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
-39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
 22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
-11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
diff --git a/DATA/Datasets/Bank/LR/DO_10.data b/DATA/Datasets/Bank/LR/DO_10.data
index 87c91f31..33a99fe5 100644
--- a/DATA/Datasets/Bank/LR/DO_10.data
+++ b/DATA/Datasets/Bank/LR/DO_10.data
@@ -1,1000 +1,1000 @@
-20,0,0,2,1,24,2,1,0,26,3,1,22,167,12,3,1
-51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
-15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
-13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
-36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
-15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
-15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
-6,9,3,2,1,67,2,1,3,26,8,6,11,0,0,4,0
-12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
-19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
-13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
-36,8,2,2,1,27,2,1,3,26,8,10,11,0,0,4,0
-19,10,2,3,1,15,2,1,0,4,3,13,0,0,0,4,1
-33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
-26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
-37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
-19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
+29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
+25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
+27,0,0,3,1,19,1,1,0,20,5,9,33,0,0,4,1
+38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
+41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
+7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
+17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
+10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
+19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
+22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
+23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
+12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
+33,2,2,3,1,54,2,1,3,15,11,3,0,0,0,4,1
+24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
+14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
+14,10,3,2,1,9,1,1,0,9,1,11,33,0,0,4,1
 10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
-22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
-12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
-5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
+21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
+21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
+32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
+25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
+23,0,3,2,1,67,1,2,3,2,6,11,33,0,0,4,1
+12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
+29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
+26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
+8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
+10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
+13,10,3,3,1,35,1,1,3,29,10,5,0,0,0,4,1
+28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
+35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
+16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
+28,10,2,2,1,55,2,1,3,7,6,13,11,0,0,4,1
+24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
+8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
+37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
+34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
+26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
+27,10,3,3,1,9,1,1,0,9,1,13,33,0,0,4,1
+13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
+20,5,2,3,1,59,1,1,0,22,3,7,0,0,0,4,1
+12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
+8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
+34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
+14,1,3,3,1,62,1,1,3,4,10,15,0,0,0,4,1
+8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
+22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
+30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+14,5,3,3,1,24,1,1,0,17,1,10,38,0,0,4,1
+26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
+35,1,2,1,1,56,1,1,0,20,1,7,43,0,0,4,1
+20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
+18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
+16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
+15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
+41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
+13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
+28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
+15,5,2,3,1,24,1,1,0,4,1,2,11,0,0,4,1
+38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
+35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
+19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
 37,1,2,4,1,69,1,1,0,14,1,3,11,0,0,4,1
-28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
-13,5,2,3,1,66,1,1,0,12,1,13,5,0,0,4,1
-24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
+7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
+27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
+15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
+33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
+37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
+32,11,2,1,1,63,1,1,3,26,6,10,0,0,0,4,1
 30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
-8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
-31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
-19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
-35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
-40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
-35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
 44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
-23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
-31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
-41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
-23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
-20,1,0,2,1,23,2,1,0,20,5,1,33,0,0,4,1
-15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
-35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
-21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
-22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
-7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
-31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
-13,5,2,3,1,61,1,1,0,28,1,2,0,0,0,4,1
-21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
-9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
-34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
-22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
-16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
-34,1,2,2,1,63,1,2,2,12,10,14,22,0,0,4,1
-22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
-28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
-37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
-24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
-15,10,2,3,1,62,1,1,0,12,10,13,0,3,2,1,1
-8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
-12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
-13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
-28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
-35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
-32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
-15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
+17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
 36,5,2,2,1,12,2,1,0,17,5,3,22,0,0,4,1
-37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
-25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
-27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
-12,8,3,2,2,4,2,1,0,9,5,10,0,0,0,4,1
-30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
-29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
-34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
-9,5,3,3,1,19,2,1,0,7,5,10,0,0,0,4,1
-11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
-39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
-34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
-34,3,2,2,1,45,2,1,3,5,8,15,22,0,0,4,1
-34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
-19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
-16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
-15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
-37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
-6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
-31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
-35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
-14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
-18,10,3,2,1,33,2,2,3,26,8,8,0,0,0,4,0
-15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
-20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
-34,6,0,3,1,43,2,2,3,7,6,13,33,0,0,4,1
-41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
-20,2,2,3,1,9,1,1,0,15,5,11,11,0,0,4,1
-36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
-27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
-32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
-18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
-29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
-12,0,3,2,1,38,2,1,0,25,3,1,11,0,0,4,1
-41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
-22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
-31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
-34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
-17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
-26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
-9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
-32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
-29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
-21,9,3,3,1,27,1,1,0,11,3,11,0,0,0,4,1
-16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
-33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
-7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
-7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
-12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
-14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
-21,5,2,3,1,44,2,2,3,26,8,3,11,0,0,4,0
-24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
-13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
-31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
-14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
-5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
-15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
-24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
-22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
-11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
-14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
 12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
-8,8,3,2,1,18,1,1,2,15,11,5,0,0,0,4,1
-35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
-12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
-33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
-14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
-40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
-40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
-19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
-34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
-15,5,2,3,1,22,1,1,0,3,3,9,0,0,0,4,1
-26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
-41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
-22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
-12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
-17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
-9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
-11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
-19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
-8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
-8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
-27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
-36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
-16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
-23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
-10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
-13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
-18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
-44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
-15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
-35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
-25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
-41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
-40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
-23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
-41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
-11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
-24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
-36,10,2,3,1,32,1,1,3,26,8,8,33,0,0,4,0
-23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
+17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
+18,7,2,3,1,24,1,1,3,26,8,6,11,0,0,4,0
+8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
+19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
+13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
+12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
+18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
 12,10,3,3,1,22,1,1,0,8,5,12,22,0,0,4,1
-21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
-28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
-7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
-21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
-26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
-21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
-22,2,0,2,1,37,2,1,0,9,5,12,22,0,0,4,1
-17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
-37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
-9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
-14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
-22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
-31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
-26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
-17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
-10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
-38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
-12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
-18,7,2,3,1,24,1,1,3,26,8,6,11,0,0,4,0
-13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
-14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
-24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
+41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
+19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
+18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
+31,8,2,2,1,44,1,1,2,24,5,0,33,0,0,4,1
+39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
+41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
+28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
+21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
+37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+33,7,2,3,1,55,2,2,0,24,5,11,33,0,0,4,1
+20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
+41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
+25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
+28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
+42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
+30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
+27,0,2,2,1,18,2,1,3,15,8,15,22,0,0,4,1
+19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
+13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
+27,5,2,3,1,61,1,1,3,12,6,12,22,0,0,4,1
+10,8,2,2,1,53,2,2,0,29,5,6,11,0,0,4,1
+27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
+39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
+24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
+40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
+11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
+18,1,2,2,1,39,2,2,0,7,5,14,0,0,0,4,1
+16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
+12,8,3,2,2,4,2,1,0,9,5,10,0,0,0,4,1
+41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
+25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
+33,11,0,3,1,9,1,1,0,24,5,11,11,0,0,4,1
+13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
+13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
+14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
+36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
+24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
+17,10,3,3,1,54,1,1,0,13,10,15,11,0,0,4,1
+10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
 29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
-22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
-17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
-31,8,2,2,1,50,1,1,3,26,8,7,11,0,0,4,0
-12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
-7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
-22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
-32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
-16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
-18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
-23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
-19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
-21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
-33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
-12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
-30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
-12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
-19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
-32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
-29,1,2,2,1,67,1,1,0,29,1,13,11,0,0,4,1
-15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
-26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
-22,0,2,2,1,40,1,1,0,24,5,2,38,0,0,4,1
-18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
+11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
+8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
+8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
+15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
 35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
-39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
-31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
-10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
-30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
-41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
-21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
-24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
-27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
-30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
-24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
-19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
-12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
-14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
-34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
-23,8,2,2,1,9,2,1,3,26,8,1,11,0,0,4,0
-15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
-20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
-40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
-18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
-12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
+21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
+14,5,2,3,1,9,2,1,3,26,8,6,0,0,0,4,0
+29,0,0,2,1,28,1,1,0,20,1,1,33,0,0,4,1
+22,8,3,2,1,19,2,1,0,12,10,9,0,0,0,4,1
+6,10,3,2,1,46,2,1,3,7,8,15,0,0,0,4,1
+24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
+23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
+15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
+4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
+26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
+16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
+17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
+20,10,0,3,1,23,1,1,3,30,6,15,11,0,0,4,1
+15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
+34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
+28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
 11,1,2,2,1,66,2,2,0,1,5,12,0,0,0,4,1
-12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
-12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
-22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
-17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
+37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
+12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
+14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
+15,1,3,3,1,62,1,1,0,30,3,3,0,546,1,3,1
+30,2,2,3,2,4,1,1,0,24,5,13,33,0,0,4,1
+13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
+39,8,2,2,1,20,2,1,3,26,8,5,0,0,0,4,0
+40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
+18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
+5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
+23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
+10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
+40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
+25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
+17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
 31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
-25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
-16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
-24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
-25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
-18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
-18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
-40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
-51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
-36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
-23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
-13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
-13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
-7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
-14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
-15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
-30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
-28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
-14,5,2,3,1,9,2,1,3,26,8,6,0,0,0,4,0
-20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
-31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
-18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
-36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
-17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
-19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
-14,1,3,3,1,62,1,1,3,4,10,15,0,0,0,4,1
-33,1,2,2,1,32,2,1,3,26,8,13,0,0,0,4,0
-33,1,2,2,1,63,2,1,3,5,8,15,0,0,0,4,1
-18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
-12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
-29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
+53,6,2,1,1,50,1,1,0,7,3,15,38,0,0,4,1
+21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
+23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
+9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
+25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
+26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
+15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
+18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
+22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
+39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
+14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
+12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
+20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
+39,6,0,3,1,64,1,1,0,27,1,3,33,0,0,4,1
+19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
+21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
+38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
+6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
+19,8,3,2,1,34,2,1,3,22,6,0,22,0,0,4,1
+40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
+30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
+23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
+16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
+34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
+35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
+19,10,2,3,1,15,2,1,0,4,3,13,0,0,0,4,1
+31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
+14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
+31,8,2,2,1,67,1,1,0,29,1,13,33,0,0,4,1
+17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
+36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
+22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
+35,0,0,4,1,32,1,1,0,2,5,3,11,0,0,4,1
+21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
+15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
 18,5,2,3,1,9,2,2,3,26,8,9,0,0,0,4,0
-18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
-32,11,2,1,1,63,1,1,3,26,6,10,0,0,0,4,1
-35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
-23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
-40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
-19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
-33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
-12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
-43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
-29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
-19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
-32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
-32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
-11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
-42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
-34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
-33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
-9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
-21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
-18,5,2,3,1,16,1,1,3,10,6,6,0,0,0,4,1
-15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
-21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
-12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
-11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
-17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
-32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
+23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
+38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
+39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
+21,9,3,3,1,27,1,1,0,11,3,11,0,0,0,4,1
+10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
+22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
+14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
+13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
 12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
-12,7,2,3,1,22,1,1,3,8,11,7,0,0,0,4,1
-19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
-14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
-22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
-38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
-41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
-31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
-33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
-31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
-17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
-14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
-11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
-22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
-14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
-40,2,2,3,1,68,1,1,3,26,6,2,11,0,0,4,1
-13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
-27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
+7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
+18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
+29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
+9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
+37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
+33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
+34,3,2,1,1,44,2,1,0,8,5,2,0,0,0,4,1
+26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
+15,5,2,3,1,22,1,1,0,3,3,9,0,0,0,4,1
+9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
+17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
+19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
+18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
+42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
+10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
+24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
+30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
+15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
+25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
+40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
+21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
+13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
+12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
+18,0,2,3,1,27,2,1,3,26,8,4,11,0,0,4,0
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
 26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
-39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
+20,2,2,3,1,9,1,1,0,15,5,11,11,0,0,4,1
+36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
+12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
+22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
+11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
+40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
+28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
+8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
+16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
+23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
+18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
+42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
+7,8,3,2,1,40,1,2,0,6,5,1,11,0,0,4,1
+41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
+20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
+5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
+11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
+41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
+10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
+24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
+14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
+21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
+16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
+41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
+29,1,2,2,1,36,1,1,0,1,3,8,0,0,0,4,1
+37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
+20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
+12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
+40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
+40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
+29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
+22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
+31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
+39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
+12,7,2,3,1,22,1,1,3,8,11,7,0,0,0,4,1
+43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
+12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
+17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
+16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
+31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
+31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
+34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+23,8,0,2,1,67,2,1,0,11,3,15,0,0,0,4,1
+17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
+14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
+35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
+17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
+41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
+7,10,3,2,1,10,1,2,0,29,5,11,11,0,0,4,1
+40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
+18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
+29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
+23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
+17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
+31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
+10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
+12,0,0,2,1,43,2,1,3,25,6,10,6,0,0,4,1
+27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
+38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
+17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
+14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
+31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
+6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
+13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
+9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
+13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
+33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
+12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
+35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
+19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
+9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
+14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
+37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
+42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
 23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
-29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
-41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
-12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
-10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
+19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
+21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
+29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
+22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
+18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
+23,8,2,4,2,9,1,2,0,23,5,2,33,0,0,4,1
+37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
+34,3,2,2,1,45,2,1,3,5,8,15,22,0,0,4,1
+11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
 8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
-35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
-7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
-8,1,3,2,1,67,2,1,3,30,8,12,0,0,0,4,1
-31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
-37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
-31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
-41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
-40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
-17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
-29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
-42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
-4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
-33,2,2,3,1,54,2,1,3,15,11,3,0,0,0,4,1
-18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
-9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
-30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
-9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
-16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
-9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
-12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
+20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
+31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
+14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
+35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
+16,8,3,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
 10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
-11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
-22,1,2,2,1,9,2,2,3,12,6,0,38,0,0,4,1
-42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
-15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
-12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
-14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
-16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
-42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
-35,0,0,4,1,32,1,1,0,2,5,3,11,0,0,4,1
-29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
-40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
-27,0,2,2,1,18,2,1,3,15,8,15,22,0,0,4,1
-33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
-8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
-26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
-26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
-10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
-26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
-21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
-15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
-17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
-20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
-13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
-20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
-5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
-43,5,2,2,1,71,1,1,0,9,1,16,43,0,0,4,1
-10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
-9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
-37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
-14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
-15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
-6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
-8,9,3,2,1,9,2,1,3,26,8,11,11,0,0,4,0
-22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
-17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
-18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
-10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
-10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
-28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
-38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
-12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
-12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
-28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
-17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
-33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
-30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
-39,8,2,2,1,20,2,1,3,26,8,5,0,0,0,4,0
-21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
+14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
+26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
+31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
+11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
+15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
 35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
-16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
-13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
-33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
-40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
-13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
-38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
-28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
-14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
-26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
-21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
-35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
-21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
-15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
+21,10,3,3,1,50,2,1,3,26,8,6,0,0,0,4,0
+8,11,3,2,1,12,1,1,0,30,5,11,0,0,0,4,1
+16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
+26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
+32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
+32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
+13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
+12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
+25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
+20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
+19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
+13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
 28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
-13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
-12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
-13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
-13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
-10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
-38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
-42,6,2,1,1,58,2,1,3,26,8,7,0,0,0,4,0
+35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
+27,1,2,2,1,12,2,1,3,14,11,12,0,0,0,4,1
 32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
-22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
-24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
-13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
-37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
-23,1,3,2,2,11,2,2,0,28,5,11,0,0,0,4,1
-10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
-6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
-28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
-39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
-29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
-11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
-28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
-41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
-12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
-17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
-23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
-14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
-23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
-21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
-16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
-15,5,2,3,1,24,1,1,0,4,1,2,11,0,0,4,1
-15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
-19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
+12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
+42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
+24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
+12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
+22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
 18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
-31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
-12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
-16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-16,8,3,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
-19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
-22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
-41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
-42,5,2,3,1,29,1,1,0,26,3,7,11,0,0,4,1
-27,5,2,3,1,61,1,1,3,12,6,12,22,0,0,4,1
-42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
-14,5,3,3,1,24,1,1,0,17,1,10,38,0,0,4,1
-11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
-17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
-16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
-7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
-9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
-24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
-42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
-12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
-17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
-35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
-10,1,3,2,1,2,2,1,3,30,8,6,11,0,0,4,1
-13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
-35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
-21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
-36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
-27,0,0,3,1,19,1,1,0,20,5,9,33,0,0,4,1
-28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
-17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
-10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
+8,1,3,2,1,67,2,1,3,30,8,12,0,0,0,4,1
+32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
 24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
-21,10,3,3,1,50,2,1,3,26,8,6,0,0,0,4,0
-14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
-25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
-23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
-15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
-16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
-42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
-10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
-31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
-37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
-22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
-41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
-13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
-28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
-14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
-38,1,2,2,1,14,1,1,3,2,6,15,0,0,0,4,1
-23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
-16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
-18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
-13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
-29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
-19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
-36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
-28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
-38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
-37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
-13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
-18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
-34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
-31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
+9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
+8,5,3,3,1,9,2,1,3,23,8,7,11,0,0,4,1
+22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
+28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
+18,10,3,2,1,33,2,2,3,26,8,8,0,0,0,4,0
+19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
+13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
+33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
+24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
+21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
+43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
 26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
-28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
-33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
-29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
-29,1,2,4,2,20,1,1,0,17,1,9,22,0,0,4,1
-10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
-16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
-23,8,2,4,2,9,1,2,0,23,5,2,33,0,0,4,1
-7,10,3,2,1,10,1,2,0,29,5,11,11,0,0,4,1
-11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
-23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
-17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
-6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
+29,0,2,2,1,35,2,1,0,14,5,3,11,0,0,4,1
+16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
+13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
+18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
+23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
+19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
+36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
+37,10,2,3,1,21,1,2,0,26,1,12,11,0,0,4,1
+22,1,2,2,1,9,2,2,3,12,6,0,38,0,0,4,1
+35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
 25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
-42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
-14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
-31,10,2,3,1,43,1,1,0,26,1,14,11,0,0,4,1
-37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
-18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
-14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
-15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
-29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
-10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
-8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
-23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
-40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
-18,1,2,2,1,39,2,2,0,7,5,14,0,0,0,4,1
-19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
-38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
-21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
-21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
+9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
+32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
+24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
+34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
+34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
+18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
+28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
+17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
+22,0,2,2,1,40,1,1,0,24,5,2,38,0,0,4,1
+33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
+35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
 30,5,2,3,1,23,2,1,0,18,3,7,0,0,0,4,1
-27,10,3,3,1,9,1,1,0,9,1,13,33,0,0,4,1
-17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
 27,5,2,3,1,54,2,1,3,26,8,14,11,0,0,4,0
-21,10,2,2,1,9,2,1,3,26,8,6,0,0,0,4,0
-29,1,2,2,1,34,1,1,0,2,1,10,0,0,0,4,1
-18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
-21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
-36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
-29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
-39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
-42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
-19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
-26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
-10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
-25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
-14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
-37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
-40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
-26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
-16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
-38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
-37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
-23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
-41,6,0,2,1,61,1,1,0,23,5,13,33,0,0,4,1
-13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
-15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
-15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
-7,8,3,2,1,40,1,2,0,6,5,1,11,0,0,4,1
-39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
-27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
-26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
-41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
-19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
-13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
-24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
-22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
-28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
-29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
-18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
-56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
-10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
-39,1,2,4,1,42,1,1,2,5,10,5,0,0,0,4,1
-23,8,0,2,1,67,2,1,0,11,3,15,0,0,0,4,1
-24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
-25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
-21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
-24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
-14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
-42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
-16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
-9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
-35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
-10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
-12,0,0,2,1,43,2,1,3,25,6,10,6,0,0,4,1
-16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
-33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
-31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
-40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
-12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
-12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
-15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
-40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
-27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
-28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
-8,11,3,2,1,12,1,1,0,30,5,11,0,0,0,4,1
-41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
-24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
-31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
-23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
-17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
-20,5,2,3,1,59,1,1,0,22,3,7,0,0,0,4,1
-32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
-13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
-28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
-17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
-12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
-17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
-16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
-22,8,3,2,1,19,2,1,0,12,10,9,0,0,0,4,1
-16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
-19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
-9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
-35,1,2,2,1,9,2,2,3,26,8,6,0,0,0,4,0
-19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
-20,10,2,2,1,28,2,1,3,23,8,13,22,0,0,4,1
-36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
-30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
-20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
-31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
-42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
-40,5,2,4,1,11,2,1,3,26,8,7,22,0,0,4,0
-30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
-33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
-14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
-16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
-36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
-35,1,2,1,1,56,1,1,0,20,1,7,43,0,0,4,1
-23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
-22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
-34,5,3,3,1,67,1,1,0,18,1,2,43,0,0,4,1
-32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
-33,7,2,3,1,55,2,2,0,24,5,11,33,0,0,4,1
-42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
-40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
-4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
-27,2,2,3,1,25,2,1,0,12,10,14,38,0,0,4,1
+25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
+27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
+25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
+14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
+8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
+41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
+17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
+18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
+24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
 19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
-35,10,2,3,1,71,1,1,0,12,1,4,38,0,0,4,1
-17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
-15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
-14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
-33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
-15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
-12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
-12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
-31,8,2,2,1,67,1,1,0,29,1,13,33,0,0,4,1
-26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
-25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
-22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
-9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
-18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
-32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
-39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
-15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
-17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
+25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
+40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
+41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
+17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
+13,8,2,2,1,31,2,2,3,26,8,5,0,0,0,4,0
+14,10,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
+35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
+26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
+17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
+19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
+4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
+28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
 14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
-11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
-29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
-25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
-37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
-18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
-39,5,2,3,1,9,2,2,3,12,6,5,0,0,0,4,1
-25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
-17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
-16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
-42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
-42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
-16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
-15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
-12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
-8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
+40,5,2,4,1,11,2,1,3,26,8,7,22,0,0,4,0
+13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
+27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
+42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
+42,6,2,1,1,58,2,1,3,26,8,7,0,0,0,4,0
+10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
+15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
+36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
+18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
+28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
+21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
+34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
+17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
+14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
+6,9,3,2,1,67,2,1,3,26,8,6,11,0,0,4,0
+16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
+41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
+23,8,2,2,1,9,2,1,3,26,8,1,11,0,0,4,0
+13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
+42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
+17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
+40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
+34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
+14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
+22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
+15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
+14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
+23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
+22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
+35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
+38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
+35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
+33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
+55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
+17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
+8,9,3,2,1,9,2,1,3,26,8,11,11,0,0,4,0
+16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
+23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
+20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
+15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
+14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
+29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
+10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
+12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
+39,10,0,2,1,37,1,1,0,5,1,13,11,0,0,4,1
+34,5,3,3,1,67,1,1,0,18,1,2,43,0,0,4,1
+11,5,2,3,1,38,1,1,3,20,8,15,11,0,0,4,1
+21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
+26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
+26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
+29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
+7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
+15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
+18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
+22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
+15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
+31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
+19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
+15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
+18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
+29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
+31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
+19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
+18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
+22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
 15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
 31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
-20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
-14,10,3,2,1,9,1,1,0,9,1,11,33,0,0,4,1
+41,6,0,2,1,61,1,1,0,23,5,13,33,0,0,4,1
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
+16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
+12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
+29,1,2,2,1,34,1,1,0,2,1,10,0,0,0,4,1
+7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
+12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
+44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
+24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
+25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
+18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
+14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
+7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
+24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
+18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
+13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
+19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
+28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
+18,5,2,3,1,16,1,1,3,10,6,6,0,0,0,4,1
+23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
+19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
+33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
+33,1,2,2,1,32,2,1,3,26,8,13,0,0,0,4,0
+12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
+33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
+29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
+12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
 14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
-16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
-22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
-22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
-31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
-19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
-14,5,3,3,1,50,1,1,0,13,1,13,43,0,0,4,1
-15,1,3,3,1,62,1,1,0,30,3,3,0,546,1,3,1
-13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
-27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
-18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
-17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
+10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
+33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
+27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
+24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
+39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
+36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
+35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
+14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
+9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
+22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
+32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
+37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
+33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
+13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
+15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
+18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
 40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
-39,1,2,2,1,19,2,1,0,8,10,11,0,0,0,4,1
-24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
-27,1,2,1,1,9,2,1,3,3,8,10,38,0,0,4,1
-43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
-17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
-38,5,2,3,1,59,1,1,0,27,3,5,0,0,0,4,1
-9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
-25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
-8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
-25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
-14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
-18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
-11,5,2,3,1,38,1,1,3,20,8,15,11,0,0,4,1
-17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
-42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
-28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
-28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
-37,10,2,2,1,14,2,1,3,26,8,5,11,0,0,4,0
-14,10,0,3,1,54,1,1,0,14,1,12,11,0,0,4,1
-33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
-8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
-13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
-10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
-11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
-13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
-18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
-39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
-35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
-16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
-23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
-10,1,3,2,1,65,2,1,3,30,8,13,0,0,0,4,1
+28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
+15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
+37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
+7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
+9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
+37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
 21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
-35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
-40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
-31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
-26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
-27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
-53,6,2,1,1,50,1,1,0,7,3,15,38,0,0,4,1
-36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
-37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
-29,1,2,2,1,36,1,1,0,1,3,8,0,0,0,4,1
-13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
-34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
-13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
-18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
-30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
-8,5,3,3,1,9,2,1,3,23,8,7,11,0,0,4,1
-35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
-8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
-14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
-37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
-17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
-72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
-22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
-31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
-28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
-9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
-24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
-24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
+29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
+31,10,2,3,1,43,1,1,0,26,1,14,11,0,0,4,1
+34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
+16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
+28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
+21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
+13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
+40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
+33,1,2,2,1,63,2,1,3,5,8,15,0,0,0,4,1
+10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
+36,10,2,3,1,32,1,1,3,26,8,8,33,0,0,4,0
+25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
+13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
 12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
-35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
-13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
-23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
-19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
-38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-7,5,3,3,1,31,1,1,0,8,3,10,0,0,0,4,1
-28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
-20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
-17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
-4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
-7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
-25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
-11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
-37,10,2,3,1,21,1,2,0,26,1,12,11,0,0,4,1
+40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
+37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
+14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
+28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
+27,1,2,1,1,9,2,1,3,3,8,10,38,0,0,4,1
+23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
+31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
+31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
+34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
+32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
 16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
-18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
-30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
-18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
-12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
-38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
-21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
-8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
-7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
-28,10,2,2,1,55,2,1,3,7,6,13,11,0,0,4,1
-28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
-49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
-9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
-39,6,0,3,1,64,1,1,0,27,1,3,33,0,0,4,1
-21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
-39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
-33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
-29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
-11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
-41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
-18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
-14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
-20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
-12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
+11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
+28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
+15,10,2,3,1,62,1,1,0,12,10,13,0,3,2,1,1
+35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
+9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
+28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
+20,10,2,2,1,28,2,1,3,23,8,13,22,0,0,4,1
+31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
+12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
+12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
+25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
+27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
+37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
+39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
+33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
+21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
+19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
+12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
+9,5,3,3,1,19,2,1,0,7,5,10,0,0,0,4,1
+15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
+13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
+34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
+32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
+29,1,2,2,1,12,2,1,0,21,4,1,0,0,0,4,1
+19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
+33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
+41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
+13,5,3,3,1,9,2,1,3,26,8,11,0,0,0,4,0
+9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
+33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
+16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
+32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
+16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
+41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
+24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
+17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
+35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
+24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
+57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
+22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
+10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
+19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
+10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
+15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
+32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
+17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
+5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
+21,10,2,2,1,9,2,1,3,26,8,6,0,0,0,4,0
+42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
+35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
+18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
+9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
 19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
-7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
+8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
+27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
+33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
+20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
+15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
+16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
 33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
-41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
-25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
-10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
-18,2,0,3,1,65,1,2,0,28,5,13,22,0,0,4,1
-25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
-17,1,3,2,1,14,2,2,3,26,8,6,0,0,0,4,0
-14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
-14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
-8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
-16,5,3,3,1,33,2,1,0,13,10,12,43,0,0,4,1
-34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
-18,0,2,3,1,27,2,1,3,26,8,4,11,0,0,4,0
-13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
-37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
-26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
-38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
-42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
-13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
-15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
-35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
-27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
-32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
-20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
+23,1,3,2,2,11,2,2,0,28,5,11,0,0,0,4,1
+35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
+40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
+15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
+18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
+13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
+37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
+29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
+6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
+12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
+29,1,2,2,1,67,1,1,0,29,1,13,11,0,0,4,1
+20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
+7,5,3,3,1,31,1,1,0,8,3,10,0,0,0,4,1
+35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
+29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
+9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
+35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
+17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
+17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
+15,8,3,2,1,21,1,1,0,28,5,13,0,0,0,4,1
+72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
+12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
+17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
+14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
+22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
+38,5,2,3,1,59,1,1,0,27,3,5,0,0,0,4,1
 25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
-14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
-14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
-13,10,3,3,1,35,1,1,3,29,10,5,0,0,0,4,1
+30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
+31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
+12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
 13,5,0,3,1,43,1,1,0,1,3,3,43,0,0,4,1
-21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
+14,10,0,3,1,54,1,1,0,14,1,12,11,0,0,4,1
+38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
+28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
+43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
+25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
+14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
+13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
+21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
+26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
+19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
+37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
+13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
+17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
 39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
-22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
-32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
-26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
 14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
-18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
-34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
-23,0,3,2,1,67,1,2,3,2,6,11,33,0,0,4,1
-26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
-26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
-39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
-19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
-29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
-10,8,2,2,1,53,2,2,0,29,5,6,11,0,0,4,1
-39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
-18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
-29,0,2,2,1,35,2,1,0,14,5,3,11,0,0,4,1
-19,8,3,2,1,34,2,1,3,22,6,0,22,0,0,4,1
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
-30,2,2,3,2,4,1,1,0,24,5,13,33,0,0,4,1
-15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
-30,1,2,2,1,17,2,1,3,5,8,12,11,0,0,4,1
+10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
+34,1,2,2,1,63,1,2,2,12,10,14,22,0,0,4,1
+31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
+22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
+10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
+14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
+17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
+18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
+13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
+39,1,2,2,1,19,2,1,0,8,10,11,0,0,0,4,1
+14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
+26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
+14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
+16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
+38,1,2,2,1,14,1,1,3,2,6,15,0,0,0,4,1
+31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
+39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
+16,5,3,3,1,33,2,1,0,13,10,12,43,0,0,4,1
+8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
+42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
+37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
 23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
-17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
-23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
-33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
-43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
-22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
-20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
-13,8,2,2,1,31,2,2,3,26,8,5,0,0,0,4,0
-23,1,2,1,1,31,2,1,3,6,8,1,0,0,0,4,1
-20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
-17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
-34,3,2,1,1,44,2,1,0,8,5,2,0,0,0,4,1
-29,0,0,2,1,28,1,1,0,20,1,1,33,0,0,4,1
-14,10,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-6,10,3,2,1,46,2,1,3,7,8,15,0,0,0,4,1
-33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
-27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
-16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
-17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
-18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
-13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
-40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
-39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
-13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
-33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
-19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
 20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
-16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+20,1,0,2,1,23,2,1,0,20,5,1,33,0,0,4,1
+12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
+17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
+12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
+13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
+32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
+16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
+22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
+17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
+15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
+21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
+8,8,3,2,1,18,1,1,2,15,11,5,0,0,0,4,1
+20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
+37,10,2,2,1,14,2,1,3,26,8,5,11,0,0,4,0
+17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
+32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
+13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
+21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
+14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
+11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
+13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
+42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
+42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
+4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
+20,0,0,2,1,24,2,1,0,26,3,1,22,167,12,3,1
+21,5,2,3,1,44,2,2,3,26,8,3,11,0,0,4,0
+41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
+19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
 27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
-8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
+12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
+9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+30,1,2,2,1,17,2,1,3,5,8,12,11,0,0,4,1
+19,5,3,3,1,58,2,1,3,26,8,4,0,0,0,4,0
+16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
+10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
+26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
+32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
+34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
+12,0,3,2,1,38,2,1,0,25,3,1,11,0,0,4,1
+38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
+22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
+34,6,0,3,1,43,2,2,3,7,6,13,33,0,0,4,1
+29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
+18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
+26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
+39,1,2,4,1,42,1,1,2,5,10,5,0,0,0,4,1
+15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
+14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
+22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
+32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
+30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
+13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
+13,10,3,3,1,12,1,1,0,26,3,12,0,74,12,0,1
+40,2,2,3,1,68,1,1,3,26,6,2,11,0,0,4,1
+37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
+31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
+26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
+30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
+14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
+25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
+12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
+12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
+15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
+36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
+29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
+11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
 23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
-32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
-14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
-20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
-35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
-13,5,3,3,1,9,2,1,3,26,8,11,0,0,0,4,0
-15,8,3,2,1,21,1,1,0,28,5,13,0,0,0,4,1
-37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
-29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
-29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
-10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
-17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
-15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
+13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
+13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
+36,8,2,2,1,27,2,1,3,26,8,10,11,0,0,4,0
+35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
+24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
+39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
+7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
+13,5,2,3,1,61,1,1,0,28,1,2,0,0,0,4,1
+34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
+24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
+12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
+24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
+40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
+38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
+25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
+11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
+39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
+18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
+30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
+35,10,2,3,1,71,1,1,0,12,1,4,38,0,0,4,1
+20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
+29,1,2,4,2,20,1,1,0,17,1,9,22,0,0,4,1
+13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
+27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
+12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
+51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
+20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
+8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
+10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
+16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
+13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
+12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
+9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
+38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
+23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
+8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
+14,5,3,3,1,50,1,1,0,13,1,13,43,0,0,4,1
+7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
+30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
+18,2,0,3,1,65,1,2,0,28,5,13,22,0,0,4,1
+12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
+15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
+23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
+17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
+11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
 25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
-16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
-7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
-22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
+22,2,0,2,1,37,2,1,0,9,5,12,22,0,0,4,1
+51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
+9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
+9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
 17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
-9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
-19,5,3,3,1,58,2,1,3,26,8,4,0,0,0,4,0
-31,8,2,2,1,44,1,1,2,24,5,0,33,0,0,4,1
-23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
-20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
-14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
-31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
-28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
-30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
-18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
-21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
-27,1,2,2,1,12,2,1,3,14,11,12,0,0,0,4,1
-33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
+18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
+14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
+16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
+14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
+14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
+40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
+31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
+35,1,2,2,1,9,2,2,3,26,8,6,0,0,0,4,0
+29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
+31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
+28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
+38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
+36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
+33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
+17,1,3,2,1,14,2,2,3,26,8,6,0,0,0,4,0
+33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
+33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
+31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
+49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
+42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
+7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
+26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
+9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
+19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
+26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
+43,5,2,2,1,71,1,1,0,9,1,16,43,0,0,4,1
+41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
+36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
+8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
+18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
+11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
+33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
+24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
+29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
+6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
+12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
+17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
+21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
+27,2,2,3,1,25,2,1,0,12,10,14,38,0,0,4,1
+16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
+56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
+28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
+16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
+28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
+10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
+21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
+39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
+33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
+12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
+13,5,2,3,1,66,1,1,0,12,1,13,5,0,0,4,1
+17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
+42,5,2,3,1,29,1,1,0,26,3,7,11,0,0,4,1
+22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
+18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
+15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
+23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
+27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
+39,5,2,3,1,9,2,2,3,12,6,5,0,0,0,4,1
+29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
+22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
+23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
+19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
 20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
+10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
+27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
+7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
+10,1,3,2,1,65,2,1,3,30,8,13,0,0,0,4,1
+42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
+40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
+17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
+15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
+33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
+20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
+15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+10,1,3,2,1,2,2,1,3,30,8,6,11,0,0,4,1
+12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
+28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
+42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
+7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
+40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
+14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
+17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
+18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
+27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
+16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
+41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
+34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
+12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
+32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
+28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
+17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
+23,1,2,1,1,31,2,1,3,6,8,1,0,0,0,4,1
+39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
 16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
-17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
-25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
-34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
-8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
-32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
-24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+31,8,2,2,1,50,1,1,3,26,8,7,11,0,0,4,0
+26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
+18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
+37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
+23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
 24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
-55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
-41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
-12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
-33,11,0,3,1,9,1,1,0,24,5,11,11,0,0,4,1
-12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
-32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
-20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
-39,10,0,2,1,37,1,1,0,5,1,13,11,0,0,4,1
-36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
-25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
-12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
-20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
-17,10,3,3,1,54,1,1,0,13,10,15,11,0,0,4,1
-10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
-25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
-9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
-12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
-36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
-32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
-34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
-25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
-13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
-29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
-23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
-33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
-20,10,0,3,1,23,1,1,3,30,6,15,11,0,0,4,1
-24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
-12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
-38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
-29,1,2,2,1,12,2,1,0,21,4,1,0,0,0,4,1
-24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
-15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
-13,10,3,3,1,12,1,1,0,26,3,12,0,74,12,0,1
+36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
+44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
+22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
+32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
+18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
+15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
+11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
+21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
+13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
+15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
+31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
+24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
diff --git a/DATA/Datasets/Bank/LR/DO_11.data b/DATA/Datasets/Bank/LR/DO_11.data
index 0625bf5d..5ccb918d 100644
--- a/DATA/Datasets/Bank/LR/DO_11.data
+++ b/DATA/Datasets/Bank/LR/DO_11.data
@@ -1,1100 +1,1100 @@
-26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
-37,10,2,2,2,4,1,1,0,11,3,13,0,0,0,4,1
-14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
-9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
-15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
-24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
-38,1,2,2,1,14,1,1,3,2,6,15,0,0,0,4,1
-22,10,3,3,1,21,2,1,0,11,3,7,0,157,12,0,1
-24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
-7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
+18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
+39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
+14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
+14,10,0,3,1,54,1,1,0,14,1,12,11,0,0,4,1
+15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
+32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
+31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
+39,10,0,2,1,37,1,1,0,5,1,13,11,0,0,4,1
+41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
+12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
+28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
+10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
+40,2,2,3,1,68,1,1,3,26,6,2,11,0,0,4,1
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
+36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
+18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
+12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
+29,0,0,2,1,28,1,1,0,20,1,1,33,0,0,4,1
+18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
+19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
+15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
+35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
+12,8,3,2,2,4,2,1,0,9,5,10,0,0,0,4,1
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
+14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
+42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
+32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
+13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
+41,0,2,2,1,9,2,1,0,1,5,16,0,0,0,4,1
+17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
+11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
+38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
+36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
+14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
+19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
+12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
+13,5,2,3,1,66,1,1,0,12,1,13,5,0,0,4,1
+10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
+15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
+13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
+16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
+23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
+42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
+8,5,3,3,1,9,2,1,3,23,8,7,11,0,0,4,1
+10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
+12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
+15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
+22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
+9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
+40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
+22,0,2,1,1,63,2,2,0,13,10,14,0,0,0,4,1
+24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
+30,5,2,3,1,9,1,1,2,1,10,7,0,0,0,4,1
+49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+23,1,3,2,2,11,2,2,0,28,5,11,0,0,0,4,1
 34,5,2,3,1,34,2,1,3,26,8,16,0,0,0,4,0
-26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
-17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
-36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
-18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
-16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
-27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
-35,5,0,2,1,9,1,2,2,14,2,2,0,0,0,4,1
-32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
-23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
-22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
+25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
+18,2,0,3,1,65,1,2,0,28,5,13,22,0,0,4,1
+18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
+26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
+25,1,2,2,1,23,1,2,0,7,5,0,2,0,0,4,1
+12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
+40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
+32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
+42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
+6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
+42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
+39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
+22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
+21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
+30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
+15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
+19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
+14,1,3,3,1,62,1,1,3,4,10,15,0,0,0,4,1
+23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
 35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
-33,11,0,3,1,9,1,1,0,24,5,11,11,0,0,4,1
-37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
-7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
-31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
-39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
-24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
+14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
+29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
+40,5,2,4,1,11,2,1,3,26,8,7,22,0,0,4,0
+12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
+42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
+21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
+23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
+26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
+22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
+14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
+23,1,0,2,1,54,2,1,3,5,8,4,22,0,0,4,1
+26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
+14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
+16,8,2,2,1,2,2,2,3,26,8,13,0,0,0,4,0
+17,10,3,3,1,54,1,1,0,13,10,15,11,0,0,4,1
+9,12,3,2,1,13,1,1,2,18,3,7,0,4,1,0,1
+23,1,0,1,1,61,1,2,0,6,5,15,38,0,0,4,1
+42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
+17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
+55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
+41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
+24,2,0,3,2,25,2,1,3,26,8,9,0,0,0,4,0
+15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
+16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+22,0,2,2,1,40,1,1,0,24,5,2,38,0,0,4,1
+13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
 16,8,3,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
-12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
-40,5,2,3,1,47,2,1,2,5,10,5,0,0,0,4,1
-12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
-41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
-14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
+19,8,3,2,1,34,2,1,3,22,6,0,22,0,0,4,1
+30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
+11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
+43,5,2,2,1,71,1,1,0,9,1,16,43,0,0,4,1
+25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
+18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
+33,11,0,3,1,9,1,1,0,24,5,11,11,0,0,4,1
 35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
-21,10,2,2,1,9,2,1,3,26,8,6,0,0,0,4,0
-9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
-23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
-16,1,2,2,1,23,1,1,0,27,1,15,11,0,0,4,1
-12,0,3,2,1,38,2,1,0,25,3,1,11,0,0,4,1
-37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
-35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
-8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
-17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
-12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
+34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
+34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
+39,8,2,2,1,20,2,1,3,26,8,5,0,0,0,4,0
+21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
+37,5,2,3,1,56,1,1,0,3,1,15,1,0,0,4,1
+30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
 27,5,2,3,1,61,1,1,3,12,6,12,22,0,0,4,1
-22,2,0,2,1,37,2,1,0,9,5,12,22,0,0,4,1
-18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
+24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+35,1,2,2,1,9,2,2,3,26,8,6,0,0,0,4,0
+13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
+30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
 16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
-21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
-14,5,3,3,1,50,1,1,0,13,1,13,43,0,0,4,1
-57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
-11,1,2,2,1,66,2,2,0,1,5,12,0,0,0,4,1
-26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
-20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
-7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
-37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
-31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
+9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
+42,5,2,3,1,29,1,1,0,26,3,7,11,0,0,4,1
+20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+40,5,2,3,1,47,2,1,2,5,10,5,0,0,0,4,1
+24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
+12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
+27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
+14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
+44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
+20,0,0,2,1,24,2,1,0,26,3,1,22,167,12,3,1
+7,5,3,3,1,31,1,1,0,8,3,10,0,0,0,4,1
+11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
+17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
+10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
+16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
+36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+18,1,2,2,1,39,2,2,0,7,5,14,0,0,0,4,1
+31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
+14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
+29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
+17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+35,1,2,1,1,56,1,1,0,20,1,7,43,0,0,4,1
+23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
+36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
+25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
+15,1,3,3,1,62,1,1,0,30,3,3,0,546,1,3,1
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
+15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
+10,8,2,2,1,53,2,2,0,29,5,6,11,0,0,4,1
+16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
+23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
+13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
+17,2,3,3,1,18,2,1,0,9,5,14,11,0,0,4,1
+15,10,3,3,1,17,2,1,0,9,5,1,22,0,0,4,1
+26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
+22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
+36,6,0,3,1,9,1,1,3,4,8,12,0,0,0,4,1
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
+8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
+26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
+22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
+20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
+20,8,3,2,1,56,2,1,3,26,8,13,11,0,0,4,0
+32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
+20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
+33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
+21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
+20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
+15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
+44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
+13,7,3,3,1,18,2,1,3,7,8,12,0,0,0,4,1
+33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
+26,1,2,2,1,57,2,1,3,26,8,10,0,0,0,4,0
 38,1,3,2,1,61,1,2,0,29,5,14,22,0,0,4,1
-10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
-29,1,2,4,2,20,1,1,0,17,1,9,22,0,0,4,1
-15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
-35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
-21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
-15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
-41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
-18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
-36,5,2,3,1,9,1,1,3,26,8,2,11,0,0,4,0
-24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
-33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
-29,3,3,3,1,43,1,1,3,3,6,16,43,0,0,4,1
-18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
-20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
-13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
-36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
+12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
+28,10,2,2,1,55,2,1,3,7,6,13,11,0,0,4,1
+10,10,3,2,1,16,1,1,0,19,3,13,0,0,0,4,1
+37,10,2,2,2,4,1,1,0,11,3,13,0,0,0,4,1
+18,5,2,3,1,16,1,1,3,10,6,6,0,0,0,4,1
 20,10,0,3,1,23,1,1,3,30,6,15,11,0,0,4,1
-41,5,2,2,1,16,1,1,3,30,6,9,22,0,0,4,1
-21,10,3,3,1,50,2,1,3,26,8,6,0,0,0,4,0
-10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
-33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
-12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
-24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
-32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
-9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
+19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
+10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+31,8,2,2,1,50,1,1,3,26,8,7,11,0,0,4,0
+10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
+13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
+13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
+12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
+12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
+28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
+37,10,2,3,1,21,1,2,0,26,1,12,11,0,0,4,1
+32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
+29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
+23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
+19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
+35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
+34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
+33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
+12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
 37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
-12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
-24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
-8,10,2,2,1,1,1,2,0,30,5,9,38,0,0,4,1
-17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
-37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
-14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
-31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
-17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
-8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
-28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
-17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
-13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
-28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
-11,8,3,2,1,3,2,1,3,25,6,11,0,0,0,4,1
-14,1,3,3,1,62,1,1,3,4,10,15,0,0,0,4,1
-22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
-17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
-18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
-13,5,3,3,1,9,2,1,3,26,8,11,0,0,0,4,0
-36,8,2,2,1,27,2,1,3,26,8,10,11,0,0,4,0
+42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
+22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
+25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
+31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
+18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
+40,6,2,1,1,14,1,1,0,9,1,6,11,0,0,4,1
+11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
 13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
-26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
-42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
-27,11,0,2,1,40,2,1,3,21,8,13,0,0,0,4,1
-16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
-23,1,0,2,1,54,2,1,3,5,8,4,22,0,0,4,1
-21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
-16,8,2,2,1,2,2,2,3,26,8,13,0,0,0,4,0
-12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
-28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
-13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
-35,11,0,2,1,57,1,1,0,10,10,11,0,0,0,4,1
-36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
-38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
-31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
-18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
-16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
-27,10,2,3,1,43,2,1,3,10,6,14,22,0,0,4,1
-23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
-29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
-40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
-40,2,2,3,1,68,1,1,3,26,6,2,11,0,0,4,1
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
-8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
-14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
-22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
-18,1,2,2,1,39,2,2,0,7,5,14,0,0,0,4,1
-16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
-25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
-18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
-17,1,3,2,1,45,2,1,3,30,8,12,33,0,0,4,1
-33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
-14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
-31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
+13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
+8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
+56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
+12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
+17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
+22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
+27,1,2,1,1,9,2,1,3,3,8,10,38,0,0,4,1
+15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
+39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
+12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
+17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
+28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
 9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
-14,7,3,3,1,44,2,1,0,9,10,10,0,0,0,4,1
-15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
-40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
-36,0,0,2,1,24,1,1,0,4,3,10,38,0,0,4,1
-41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
-30,1,2,1,1,63,1,2,0,2,1,9,38,0,0,4,1
-20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
-7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
-5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
-29,0,2,2,1,35,2,1,0,14,5,3,11,0,0,4,1
-11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
-15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
-12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
-8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
-14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
-21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
-27,2,2,3,1,25,2,1,0,12,10,14,38,0,0,4,1
-14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
-12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
-26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
-7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
-41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
-35,10,2,3,1,71,1,1,0,12,1,4,38,0,0,4,1
-32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
-12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
-26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
-30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
-19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
+7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
+18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
+38,5,2,3,1,59,1,1,0,27,3,5,0,0,0,4,1
+34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
+25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
+40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
+27,10,3,3,1,9,1,1,0,9,1,13,33,0,0,4,1
+10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
+42,1,2,4,1,10,2,1,3,26,8,7,0,0,0,4,0
+8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
+14,5,2,3,1,9,2,1,3,26,8,6,0,0,0,4,0
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
 40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
-24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
-17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
-28,10,2,2,1,41,1,2,0,19,3,2,0,0,0,4,1
-17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
-24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
-17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
+41,5,0,3,1,32,2,1,2,21,11,7,0,0,0,4,1
+19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
 32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
-20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
-32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
-16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
-12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
-18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
+29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
+22,1,2,2,1,9,2,2,3,12,6,0,38,0,0,4,1
+4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
+42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
+24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
+14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
+18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
+16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
+20,10,2,2,1,28,2,1,3,23,8,13,22,0,0,4,1
+16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
+27,1,2,2,1,12,2,1,3,14,11,12,0,0,0,4,1
+28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
+22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
+16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
+32,11,2,1,1,63,1,1,3,26,6,10,0,0,0,4,1
+21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
+35,1,2,2,1,59,1,1,0,22,3,7,0,0,0,4,1
+7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
+40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
+26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
+32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
+23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
+11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
+21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
+15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
+33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
+23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
+41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
+17,6,3,1,1,48,1,1,3,26,8,4,0,0,0,4,0
+35,1,2,1,1,64,2,1,0,22,3,4,11,0,0,4,1
+17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
+8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
+32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
 7,10,3,2,1,51,1,1,0,16,5,13,0,0,0,4,1
-26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
-25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
-17,1,3,2,1,14,2,2,3,26,8,6,0,0,0,4,0
-33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
-33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
-20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-34,1,2,2,1,63,1,2,2,12,10,14,22,0,0,4,1
+10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
+8,5,3,3,1,62,2,1,3,20,8,5,11,0,0,4,1
+19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
+15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
+31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
+11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
+41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
+10,8,3,2,1,53,2,1,3,27,8,3,22,0,0,4,1
+25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
+33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
+14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
+5,8,3,2,1,61,2,1,3,20,8,2,0,0,0,4,1
+4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
+38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
+26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
+25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
+7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
+36,5,2,2,1,12,2,1,0,17,5,3,22,0,0,4,1
+14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
+36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
+28,0,2,2,1,61,2,1,2,21,5,1,2,0,0,4,1
+20,1,0,2,1,23,2,1,0,20,5,1,33,0,0,4,1
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+19,2,0,2,1,22,2,2,3,4,8,13,43,0,0,4,1
+38,1,2,2,1,14,1,1,3,2,6,15,0,0,0,4,1
 40,2,2,3,1,65,2,1,2,30,5,16,0,0,0,4,1
-41,0,2,2,1,9,2,1,0,1,5,16,0,0,0,4,1
-10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
-12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
-8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
-34,3,2,2,1,45,2,1,3,5,8,15,22,0,0,4,1
-14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
-31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
-28,10,2,2,1,55,2,1,3,7,6,13,11,0,0,4,1
-15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
-21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
-10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
-16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
-18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
-41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
-39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
-30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
-21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
-24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
-10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
-20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
-23,1,2,1,1,31,2,1,3,6,8,1,0,0,0,4,1
-37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
-33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
-11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
-14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
-41,6,2,1,1,20,2,2,0,26,1,14,0,0,0,4,1
-16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
-7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
-36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
-19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
-34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
-37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
-28,5,3,3,1,35,2,1,3,23,8,16,11,0,0,4,1
-16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
+27,5,2,3,1,54,2,1,3,26,8,14,11,0,0,4,0
+27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
+16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
 15,5,3,3,1,63,1,1,0,19,1,10,46,0,0,4,1
-41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
-28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
-37,1,2,4,1,69,1,1,0,14,1,3,11,0,0,4,1
-31,8,2,2,1,50,1,1,3,26,8,7,11,0,0,4,0
-29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
-25,1,3,2,1,64,2,1,3,12,6,11,11,0,0,4,1
-29,11,2,1,1,39,1,1,0,13,10,10,11,0,0,4,1
-39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
-21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
-14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
-23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
-18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
-20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
-13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
-18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
-14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
-16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
-17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
-23,1,2,2,1,55,2,1,0,1,5,11,0,0,0,4,1
-14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
-16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
-49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
-23,8,2,4,2,9,1,2,0,23,5,2,33,0,0,4,1
-23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
-9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
-34,5,3,3,1,67,1,1,0,18,1,2,43,0,0,4,1
-72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
-24,2,0,3,2,25,2,1,3,26,8,9,0,0,0,4,0
-34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
-42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
-38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
 25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
+13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
+37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
+18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
+28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
+28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
+7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
+28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
+21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
+30,5,2,3,1,25,2,1,3,4,8,12,11,0,0,4,1
+12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
+31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
+33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
+13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
 28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
-9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
-43,5,2,2,1,71,1,1,0,9,1,16,43,0,0,4,1
-28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
-12,10,3,3,1,22,1,1,0,8,5,12,22,0,0,4,1
-31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
-28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+29,1,2,4,2,20,1,1,0,17,1,9,22,0,0,4,1
+13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
+24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
+31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
+17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
+33,7,2,2,1,70,2,1,0,15,5,3,33,0,0,4,1
+12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
+40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+39,5,2,3,1,9,2,2,3,12,6,5,0,0,0,4,1
+29,1,2,2,1,36,1,1,0,1,3,8,0,0,0,4,1
+17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
+14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
+14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
+57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
+22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
+17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
+21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
+13,10,2,2,2,4,2,1,0,9,5,10,11,0,0,4,1
+30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
+10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
+38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
+28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
+36,10,3,3,1,50,2,1,0,9,5,12,22,0,0,4,1
+10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
+27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
+8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
+23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
+22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
+41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
+20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
+13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
+24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
+13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
+10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
+17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
+27,10,2,3,1,43,2,1,3,10,6,14,22,0,0,4,1
+11,8,3,2,1,67,1,2,3,22,5,11,22,0,0,4,1
+18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
+13,11,3,1,1,20,1,1,0,23,4,13,11,110,1,1,1
+17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
+33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
+14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
+30,5,2,3,1,23,2,1,0,18,3,7,0,0,0,4,1
+22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
+41,5,2,2,1,16,1,1,3,30,6,9,22,0,0,4,1
 32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
-40,6,2,1,1,14,1,1,0,9,1,6,11,0,0,4,1
-19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
-37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
-35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
-17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
-13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
-38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
-7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
-31,8,2,2,1,67,1,1,0,29,1,13,33,0,0,4,1
-14,5,3,3,1,24,1,1,0,17,1,10,38,0,0,4,1
+10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
+18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
+18,0,2,3,1,27,2,1,3,26,8,4,11,0,0,4,0
+28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
+34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
 30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
-15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
-30,5,2,3,1,23,2,1,0,18,3,7,0,0,0,4,1
-21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
-10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
-13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
-27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
-30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
-37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
-12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
-40,5,2,4,1,11,2,1,3,26,8,7,22,0,0,4,0
-30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
-15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
-15,10,3,2,1,10,2,1,3,26,8,7,11,0,0,4,0
-38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
-17,6,3,1,1,48,1,1,3,26,8,4,0,0,0,4,0
-18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
-39,8,2,2,1,20,2,1,3,26,8,5,0,0,0,4,0
-12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
-7,8,3,2,1,40,1,2,0,6,5,1,11,0,0,4,1
-35,0,0,4,1,32,1,1,0,2,5,3,11,0,0,4,1
-16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
-22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
-20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
-14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
-33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
-15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
-34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
-17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
+35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
+31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
+32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
+41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
+43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
+31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
+29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
+18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
+33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
+32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
+35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
+18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
+40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
+12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
 13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
-23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
-35,1,2,2,1,59,1,1,0,22,3,7,0,0,0,4,1
-40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
-17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
-39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
-31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
-28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
+9,5,3,3,1,19,2,1,0,7,5,10,0,0,0,4,1
+40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
+13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
+13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
+21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
+39,1,2,4,1,42,1,1,2,5,10,5,0,0,0,4,1
+17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
+12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
+42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
+27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
+36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
+22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
+24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
+12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
+15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
+35,5,0,2,1,9,1,2,2,14,2,2,0,0,0,4,1
+28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
+35,3,2,1,1,10,1,2,3,26,6,12,0,0,0,4,1
+8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
+25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
+33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
+33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
+33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
+16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
+30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
 21,5,2,3,1,44,2,2,3,26,8,3,11,0,0,4,0
-18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
-13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
-23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
-29,0,0,2,1,28,1,1,0,20,1,1,33,0,0,4,1
-17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
-29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
-14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
-33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
-41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
-38,10,0,2,1,23,1,1,0,9,5,11,0,0,0,4,1
-18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
-11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
-32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
-6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
-26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
-18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
-15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
-42,6,0,2,1,27,2,1,3,26,8,7,0,0,0,4,0
-8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
-23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
-19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
-17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
-9,1,3,2,1,31,2,1,3,21,8,13,0,0,0,4,1
-19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
-32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
-23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
-10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
-41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
-22,1,2,2,1,9,2,2,3,12,6,0,38,0,0,4,1
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-35,1,2,1,1,56,1,1,0,20,1,7,43,0,0,4,1
-14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
-18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
 18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
-19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
-9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
-33,1,2,2,1,32,2,1,3,26,8,13,0,0,0,4,0
-19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
-34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
-17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
+11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
+9,1,3,2,1,31,2,1,3,21,8,13,0,0,0,4,1
+14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
+23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
 13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
-29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
-32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
-39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
-32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
-26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-20,8,3,2,1,56,2,1,3,26,8,13,11,0,0,4,0
-21,11,3,2,1,1,2,1,0,22,3,9,0,0,0,4,1
-15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
-19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
-15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
-9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
-35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
-28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
-27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
-8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
-22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
-30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
-30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
-26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
-18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
+30,2,2,3,2,4,1,1,0,24,5,13,33,0,0,4,1
+6,9,3,2,1,67,2,1,3,26,8,6,11,0,0,4,0
+15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
+15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
+19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
+25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
+16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
+35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
 19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
-28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
-10,8,3,2,1,53,2,1,3,27,8,3,22,0,0,4,1
-13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
-17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
-12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
-16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
-35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
-15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
-25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
-9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
-26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
-31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
-14,8,2,1,1,29,2,1,0,13,5,0,43,0,0,4,1
-9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
-39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
-23,0,3,2,1,67,1,2,3,2,6,11,33,0,0,4,1
-16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
-14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
-21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
-26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
-21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
-25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
-29,1,2,2,1,12,2,1,0,21,4,1,0,0,0,4,1
-7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
-14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
-10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
-24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
-21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
+23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
+15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
 7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
-31,2,0,4,2,7,2,1,0,23,5,16,11,0,0,4,1
-38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
-12,8,3,2,2,4,2,1,0,9,5,10,0,0,0,4,1
-13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
-15,5,2,3,1,22,1,1,0,3,3,9,0,0,0,4,1
-21,1,2,1,1,13,1,1,0,22,3,15,0,0,0,4,1
-8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
-41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
-10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
-56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
-13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
-35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
-11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
+14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
+32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
+36,0,0,2,1,24,1,1,0,4,3,10,38,0,0,4,1
+30,1,2,2,1,20,2,1,3,5,8,13,0,0,0,4,1
+25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
 12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
-23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
-11,5,2,3,1,38,1,1,3,20,8,15,11,0,0,4,1
-15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
-21,9,3,3,1,27,1,1,0,11,3,11,0,0,0,4,1
-26,5,2,3,1,12,1,1,0,19,1,10,22,0,0,4,1
-40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
-36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
-28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
-24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
-22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
-29,1,2,2,1,34,1,1,0,2,1,10,0,0,0,4,1
-20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
-18,5,3,3,1,26,1,2,0,12,10,13,0,0,0,4,1
-20,5,2,3,1,22,2,1,0,1,5,10,0,0,0,4,1
-28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
+26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
+37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
+29,1,2,2,1,67,1,1,0,29,1,13,11,0,0,4,1
+12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
+51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
+21,10,2,2,1,9,2,1,3,26,8,6,0,0,0,4,0
+13,10,3,3,1,35,1,1,3,29,10,5,0,0,0,4,1
 23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
-35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
+23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
+29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
+20,1,2,2,1,20,1,1,3,7,6,3,47,0,0,4,1
+34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
+38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
+29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
+19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
+16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
+33,1,2,2,1,32,2,1,3,26,8,13,0,0,0,4,0
+17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
+24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
+13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
+16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
+30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
+12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
+17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+10,0,3,4,1,30,2,1,0,9,5,9,11,0,0,4,1
+14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
+30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
+23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
+19,5,3,3,1,49,2,1,0,4,1,15,43,0,0,4,1
+29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
+22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
+19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
+26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
+22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
+35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
+40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
+9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
+9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
+18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
+53,6,2,1,1,50,1,1,0,7,3,15,38,0,0,4,1
+43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
+24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
+8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
+6,10,3,2,1,46,2,1,3,7,8,15,0,0,0,4,1
+16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
+31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
 8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
-34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
-15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
-36,10,3,3,1,50,2,1,0,9,5,12,22,0,0,4,1
-14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
-30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
-15,1,3,1,1,15,2,1,3,21,8,1,11,0,0,4,1
-23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
-30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
-19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
-40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
-18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
-25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
-36,6,0,3,1,9,1,1,3,4,8,12,0,0,0,4,1
+20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
+16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
+10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
+42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
+37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
+33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
+14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
+35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
+23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
+31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
+12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
+18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
+22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
+12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
 30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
-29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
-19,8,3,2,1,34,2,1,3,22,6,0,22,0,0,4,1
-30,5,2,3,1,9,1,1,2,1,10,7,0,0,0,4,1
-17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
-35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
-36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
-21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
-10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
-18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
+27,2,2,3,1,25,2,1,0,12,10,14,38,0,0,4,1
+12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
+29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
+20,9,3,3,1,40,1,1,3,8,6,3,22,0,0,4,1
+27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
+30,5,2,2,1,33,2,1,0,20,5,10,45,0,0,4,1
+24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
+39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
+22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
+25,1,3,2,1,64,2,1,3,12,6,11,11,0,0,4,1
+15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
+40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
+23,8,2,4,2,9,1,2,0,23,5,2,33,0,0,4,1
+14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
+13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
+13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
+28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
+29,0,2,2,1,35,2,1,0,14,5,3,11,0,0,4,1
+14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
+19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
+34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
+16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
+14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
 19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
-36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
-39,6,2,2,1,27,2,1,3,26,8,7,11,0,0,4,0
-35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
-38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
-23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
-37,10,2,3,1,21,1,2,0,26,1,12,11,0,0,4,1
-33,7,2,3,1,55,2,2,0,24,5,11,33,0,0,4,1
-33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
-28,0,2,2,1,61,2,1,2,21,5,1,2,0,0,4,1
-28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
-25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
-26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
 27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
-34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
-30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
-26,1,2,2,1,57,2,1,3,26,8,10,0,0,0,4,0
-34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
-25,1,2,2,1,23,1,2,0,7,5,0,2,0,0,4,1
-13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
-28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
-42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
-12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
-10,10,3,2,1,16,1,1,0,19,3,13,0,0,0,4,1
-26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
-40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
-10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
-13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
-42,5,2,3,1,29,1,1,0,26,3,7,11,0,0,4,1
-16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
-11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
-22,0,2,2,1,40,1,1,0,24,5,2,38,0,0,4,1
-37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
-24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
-13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
-29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
-20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
-24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
-25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
-13,10,3,3,1,35,1,1,3,29,10,5,0,0,0,4,1
-35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
-33,1,2,2,1,63,2,1,3,5,8,15,0,0,0,4,1
-29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
-20,0,0,2,1,24,2,1,0,26,3,1,22,167,12,3,1
-20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
-40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
-10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
-13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
-15,5,3,3,1,37,2,1,0,14,5,1,0,0,0,4,1
-19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
-15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
-19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
-10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
-16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
-23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
-19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
-15,8,3,2,1,21,1,1,0,28,5,13,0,0,0,4,1
-28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
-15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
-29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
-18,5,2,3,1,9,2,2,3,26,8,9,0,0,0,4,0
-19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
-19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
-18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
-15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
-40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
-21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
-40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
-27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
-25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
-12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
-31,8,2,2,1,44,1,1,2,24,5,0,33,0,0,4,1
-26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
-39,1,2,2,1,19,2,1,0,8,10,11,0,0,0,4,1
-27,0,2,2,1,18,2,1,3,15,8,15,22,0,0,4,1
-11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
-23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
+17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
+34,1,2,2,1,63,1,2,2,12,10,14,22,0,0,4,1
+26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
+15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
+20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
+42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
+39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
+28,5,3,3,1,35,2,1,3,23,8,16,11,0,0,4,1
+8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
+13,5,0,3,1,43,1,1,0,1,3,3,43,0,0,4,1
+13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
+19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
+21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
+31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
+15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
+29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
+17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
+13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
+19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
+13,8,2,2,1,31,2,2,3,26,8,5,0,0,0,4,0
+37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
 20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
-30,5,2,2,1,33,2,1,0,20,5,10,45,0,0,4,1
-15,10,3,3,1,17,2,1,0,9,5,1,22,0,0,4,1
-28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
-37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
+33,7,2,3,1,55,2,2,0,24,5,11,33,0,0,4,1
+25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
+23,1,2,2,1,55,2,1,0,1,5,11,0,0,0,4,1
+33,1,2,2,1,63,2,1,3,5,8,15,0,0,0,4,1
+13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
+41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
+26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
+37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
+24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
+18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
+23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
+9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
+21,1,2,1,1,13,1,1,0,22,3,15,0,0,0,4,1
+31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
+20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
+41,6,2,1,1,20,2,2,0,26,1,14,0,0,0,4,1
+24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
+23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
+32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
+14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
+37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
+22,8,3,2,1,19,2,1,0,12,10,9,0,0,0,4,1
+27,0,0,3,1,19,1,1,0,20,5,9,33,0,0,4,1
+17,5,0,3,1,9,2,1,2,21,11,5,0,0,0,4,1
 40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
-21,0,2,2,1,15,2,2,0,25,3,3,11,0,0,4,1
+15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
+18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
+24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
+9,9,2,2,1,13,2,1,0,7,5,13,11,0,0,4,1
+13,1,3,2,1,63,1,1,0,28,5,13,11,0,0,4,1
+72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
+14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
+18,7,2,3,1,24,1,1,3,26,8,6,11,0,0,4,0
+16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
+35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
+15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
 10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
-35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
+37,10,2,2,1,14,2,1,3,26,8,5,11,0,0,4,0
 9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
-18,7,2,3,1,24,1,1,3,26,8,6,11,0,0,4,0
-18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
-25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
-33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
-22,0,2,1,1,63,2,2,0,13,10,14,0,0,0,4,1
-28,8,2,2,1,36,1,1,0,13,10,15,0,0,0,4,1
-19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
-10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
-31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
-13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-15,10,2,3,1,62,1,1,0,12,10,13,0,3,2,1,1
-22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
-24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
-14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
-20,2,2,3,1,9,1,1,0,15,5,11,11,0,0,4,1
-12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
-21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
-39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
-14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
-26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
-17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
-28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
-18,0,2,3,1,27,2,1,3,26,8,4,11,0,0,4,0
-41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
-36,5,2,2,1,12,2,1,0,17,5,3,22,0,0,4,1
+37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
+28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
+21,9,3,3,1,27,1,1,0,11,3,11,0,0,0,4,1
+19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
+21,10,3,3,1,50,2,1,3,26,8,6,0,0,0,4,0
+12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
+37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
+27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
+29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
+15,5,2,3,1,22,1,1,0,3,3,9,0,0,0,4,1
+35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
+37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
+14,5,3,3,1,50,1,1,0,13,1,13,43,0,0,4,1
+37,1,2,4,1,69,1,1,0,14,1,3,11,0,0,4,1
+17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
+13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
+35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
+18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
+8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
+22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
 39,6,0,3,1,64,1,1,0,27,1,3,33,0,0,4,1
-26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
-23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
-17,10,3,3,1,54,1,1,0,13,10,15,11,0,0,4,1
-20,10,2,2,1,28,2,1,3,23,8,13,22,0,0,4,1
-6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
-17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
-21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
-42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
-12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
-13,10,2,2,2,4,2,1,0,9,5,10,11,0,0,4,1
-33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
-23,2,2,1,1,44,2,1,0,13,10,11,11,0,0,4,1
-10,1,3,2,1,65,2,1,3,30,8,13,0,0,0,4,1
-38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
-23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
-22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
-23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
-27,10,3,3,1,9,1,1,0,9,1,13,33,0,0,4,1
-43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
-53,6,2,1,1,50,1,1,0,7,3,15,38,0,0,4,1
-42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
-22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
-10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
-42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
-16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
-16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
-31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
-40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
+28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
+12,10,3,3,1,22,1,1,0,8,5,12,22,0,0,4,1
+29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
+21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
+12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
+14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
+26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
+14,10,3,2,1,9,1,1,0,9,1,11,33,0,0,4,1
+15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
+17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
+16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
+15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
+23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
+25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
+12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
+17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
+34,6,0,3,1,43,2,2,3,7,6,13,33,0,0,4,1
+21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
+41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
+29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
+25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
+41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
+17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
+35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
+35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
+21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
+31,8,2,2,1,44,1,1,2,24,5,0,33,0,0,4,1
+34,3,2,2,1,45,2,1,3,5,8,15,22,0,0,4,1
+12,0,3,2,1,38,2,1,0,25,3,1,11,0,0,4,1
+26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
 51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
-14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
-20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
-13,10,3,3,1,12,1,1,0,26,3,12,0,74,12,0,1
-19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
+14,5,3,3,1,24,1,1,0,17,1,10,38,0,0,4,1
+29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
+10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
+6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
+31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
+16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
+19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
+11,8,3,2,1,3,2,1,3,25,6,11,0,0,0,4,1
+35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
+12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
+36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
+41,6,0,2,1,61,1,1,0,23,5,13,33,0,0,4,1
+17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
+19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
+25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
+13,5,3,3,1,9,2,1,3,26,8,11,0,0,0,4,0
+40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
+29,11,2,1,1,39,1,1,0,13,10,10,11,0,0,4,1
+36,10,2,3,1,32,1,1,3,26,8,8,33,0,0,4,0
+17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
+15,12,3,4,1,9,1,1,3,26,8,6,0,0,0,4,0
+21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
+16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
+16,5,3,3,1,33,2,1,0,13,10,12,43,0,0,4,1
+15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
+18,5,2,3,1,9,2,2,3,26,8,9,0,0,0,4,0
+10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
+17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
+26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
+10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
+31,8,2,2,1,67,1,1,0,29,1,13,33,0,0,4,1
 41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
-8,1,3,2,1,67,2,1,3,30,8,12,0,0,0,4,1
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
-10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
-35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
-7,5,3,3,1,31,1,1,0,8,3,10,0,0,0,4,1
-28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
-13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
-15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
-16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
-23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
-18,2,0,3,1,65,1,2,0,28,5,13,22,0,0,4,1
-40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
-24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
-37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
-22,8,3,2,1,19,2,1,0,12,10,9,0,0,0,4,1
-34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
-5,8,3,2,1,61,2,1,3,20,8,2,0,0,0,4,1
-10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
-42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
-33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
-11,8,3,2,1,67,1,2,3,22,5,11,22,0,0,4,1
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
-8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
-34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
-22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
-13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
-44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
-22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
-19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
-31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
-17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
-12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
-7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
-35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
-33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
-12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
-14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
-15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
-29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
-20,1,2,2,1,20,1,1,3,7,6,3,47,0,0,4,1
-4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
-7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
-17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
-8,8,3,2,1,18,1,1,2,15,11,5,0,0,0,4,1
-40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
-14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-6,9,3,2,1,67,2,1,3,26,8,6,11,0,0,4,0
-12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
-31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
-16,0,2,2,1,19,1,1,0,26,3,12,11,0,0,4,1
+37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
+42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
+29,3,3,3,1,43,1,1,3,3,6,16,43,0,0,4,1
+12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
+10,1,3,2,1,2,2,1,3,30,8,6,11,0,0,4,1
+19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
 43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
-12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
-36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
-41,5,2,3,1,36,1,2,0,6,5,14,22,0,0,4,1
-11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
-14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
-14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
-31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
-16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
-25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
-10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
-20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
-6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
-16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
-12,0,0,2,1,43,2,1,3,25,6,10,6,0,0,4,1
-31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
+12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
+20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
+39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
+40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
+19,10,2,3,1,15,2,1,0,4,3,13,0,0,0,4,1
+30,1,2,2,1,17,2,1,3,5,8,12,11,0,0,4,1
+17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+12,7,2,3,1,22,1,1,3,8,11,7,0,0,0,4,1
+44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
+26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
+31,10,2,3,1,43,1,1,0,26,1,14,11,0,0,4,1
+33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
+23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
+30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
+21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
+34,5,3,3,1,67,1,1,0,18,1,2,43,0,0,4,1
+35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
 18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
-19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
-12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
-19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
-15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
-27,1,2,2,1,12,2,1,3,14,11,12,0,0,0,4,1
-5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
-51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
-12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
-33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
-36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
-8,5,3,3,1,62,2,1,3,20,8,5,11,0,0,4,1
-35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
-27,5,2,3,1,54,2,1,3,26,8,14,11,0,0,4,0
-37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
-5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
-30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
-13,7,2,3,1,70,1,1,0,14,1,11,11,0,0,4,1
-13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
-42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
-29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
-19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
-12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
-15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
-19,5,3,3,1,49,2,1,0,4,1,15,43,0,0,4,1
-8,5,3,3,1,9,2,1,3,23,8,7,11,0,0,4,1
-25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
-21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
-55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
-12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
+14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
 20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
-31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
-4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
-22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
-39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
-39,5,2,3,1,9,2,2,3,12,6,5,0,0,0,4,1
-18,5,2,3,1,16,1,1,3,10,6,6,0,0,0,4,1
-23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
-23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
-24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
-40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
-12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
-19,2,0,2,1,22,2,2,3,4,8,13,43,0,0,4,1
+12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+15,10,2,3,1,62,1,1,0,12,10,13,0,3,2,1,1
+23,0,3,2,1,67,1,2,3,2,6,11,33,0,0,4,1
 23,8,2,2,1,9,2,1,3,26,8,1,11,0,0,4,0
-25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
-29,1,2,2,1,36,1,1,0,1,3,8,0,0,0,4,1
-10,0,3,4,1,30,2,1,0,9,5,9,11,0,0,4,1
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
-33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
-13,8,2,2,1,31,2,2,3,26,8,5,0,0,0,4,0
-29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
-14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
-24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
-32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
-22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
-19,10,2,3,1,15,2,1,0,4,3,13,0,0,0,4,1
-20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
-9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
-19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
-42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
-33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
-17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
-34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
-9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
-22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
-32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+29,1,2,2,1,12,2,1,0,21,4,1,0,0,0,4,1
+24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
+18,10,3,2,1,33,2,2,3,26,8,8,0,0,0,4,0
 32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
-20,1,0,2,1,23,2,1,0,20,5,1,33,0,0,4,1
+34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
+18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
+32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
+14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
+34,3,2,1,1,44,2,1,0,8,5,2,0,0,0,4,1
+26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
+30,1,2,1,1,63,1,2,0,2,1,9,38,0,0,4,1
+11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
+21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
+15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
+37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
+25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
+16,1,2,2,1,23,1,1,0,27,1,15,11,0,0,4,1
+38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
+28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
+28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
+36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
+8,10,2,2,1,1,1,2,0,30,5,9,38,0,0,4,1
+35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
+19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
+23,1,2,1,1,31,2,1,3,6,8,1,0,0,0,4,1
+21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
+13,10,3,3,1,12,1,1,0,26,3,12,0,74,12,0,1
+30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
+24,1,3,1,1,20,2,1,0,17,5,11,46,0,0,4,1
+37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
+28,8,2,2,1,36,1,1,0,13,10,15,0,0,0,4,1
+18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
+40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
+5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
+19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
+14,10,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
+17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
+11,5,2,3,1,38,1,1,3,20,8,15,11,0,0,4,1
+5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
+8,8,3,2,1,18,1,1,2,15,11,5,0,0,0,4,1
+39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
+20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
+23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
+7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
+15,5,3,3,1,37,2,1,0,14,5,1,0,0,0,4,1
+9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
+36,5,2,3,1,9,1,1,3,26,8,2,11,0,0,4,0
+41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
+6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
+19,5,3,3,1,58,2,1,3,26,8,4,0,0,0,4,0
+31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
+8,9,3,2,1,9,2,1,3,26,8,11,11,0,0,4,0
+35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
+23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
+29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
+41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
 23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
-10,8,2,2,1,53,2,2,0,29,5,6,11,0,0,4,1
-26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
-31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
-35,1,2,2,1,9,2,2,3,26,8,6,0,0,0,4,0
-33,2,2,3,1,54,2,1,3,15,11,3,0,0,0,4,1
+19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
+18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
+7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
 17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
-8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
-26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
-31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
-32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
-37,10,2,2,1,14,2,1,3,26,8,5,11,0,0,4,0
-15,12,3,4,1,9,1,1,3,26,8,6,0,0,0,4,0
-19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
-34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
-37,5,2,3,1,56,1,1,0,3,1,15,1,0,0,4,1
-41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
-15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
-13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
-35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
-19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
-31,5,2,2,1,31,1,1,2,27,10,7,0,0,0,4,1
-39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
-14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
-16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
-42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
-27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
-17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
-8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
-14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
-41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
-35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
-21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
-15,5,2,3,1,24,1,1,0,4,1,2,11,0,0,4,1
-25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
-11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
-37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+16,1,2,1,1,41,2,1,0,13,10,0,0,0,0,4,1
+33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
+13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
 8,11,3,2,1,12,1,1,0,30,5,11,0,0,0,4,1
-17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
-21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
-35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
-12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
-28,0,2,2,1,14,1,1,3,9,6,3,0,0,0,4,1
-33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
-38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
-15,1,3,3,1,62,1,1,0,30,3,3,0,546,1,3,1
-32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
-18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
-28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
-36,10,2,3,1,32,1,1,3,26,8,8,33,0,0,4,0
-37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
-17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
-42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
-25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
-24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
-12,7,2,3,1,22,1,1,3,8,11,7,0,0,0,4,1
-29,1,2,2,1,67,1,1,0,29,1,13,11,0,0,4,1
-19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
-18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
-27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
-23,1,0,1,1,61,1,2,0,6,5,15,38,0,0,4,1
+39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
+17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
+33,2,2,3,1,54,2,1,3,15,11,3,0,0,0,4,1
+14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
+17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
+42,6,2,1,1,58,2,1,3,26,8,7,0,0,0,4,0
+12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
+28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
+19,11,3,2,1,44,2,1,3,29,8,16,11,0,0,4,1
+34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
+33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
+23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
+15,8,3,2,1,21,1,1,0,28,5,13,0,0,0,4,1
+15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
+7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
+17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
+31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
+17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
+22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
+17,1,3,2,1,45,2,1,3,30,8,12,33,0,0,4,1
+14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
+39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+7,8,3,2,1,40,1,2,0,6,5,1,11,0,0,4,1
+35,11,0,2,1,57,1,1,0,10,10,11,0,0,0,4,1
+38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
+35,10,2,3,1,71,1,1,0,12,1,4,38,0,0,4,1
+14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
+34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
+8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
+12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
 16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
-31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
-12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
-15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
-14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
-25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
-13,5,2,3,1,61,1,1,0,28,1,2,0,0,0,4,1
-30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
-10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
-17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
-10,1,3,2,1,2,2,1,3,30,8,6,11,0,0,4,1
-41,5,0,3,1,32,2,1,2,21,11,7,0,0,0,4,1
-33,7,2,2,1,70,2,1,0,15,5,3,33,0,0,4,1
-37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
-35,3,2,1,1,10,1,2,3,26,6,12,0,0,0,4,1
-23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
-35,1,2,1,1,64,2,1,0,22,3,4,11,0,0,4,1
-41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
-16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
-32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
-28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
-31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
 26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
-22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
-29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
-39,1,2,4,1,42,1,1,2,5,10,5,0,0,0,4,1
-6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
-18,10,3,2,1,33,2,2,3,26,8,8,0,0,0,4,0
-13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
-17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
-11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-17,5,0,3,1,9,2,1,2,21,11,5,0,0,0,4,1
-14,5,2,3,1,9,2,1,3,26,8,6,0,0,0,4,0
-7,10,3,2,1,10,1,2,0,29,5,11,11,0,0,4,1
-7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
-29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
-24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
-40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
-13,11,3,1,1,20,1,1,0,23,4,13,11,110,1,1,1
+31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
+11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
+19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
+14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
+38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
+12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
+12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
+20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
+41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
+16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
+20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
+31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
+24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
+27,11,0,2,1,40,2,1,3,21,8,13,0,0,0,4,1
+21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
+24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
+36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
+17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
+9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
 38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
-17,2,3,3,1,18,2,1,0,9,5,14,11,0,0,4,1
-25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
-8,9,3,2,1,9,2,1,3,26,8,11,11,0,0,4,0
-17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
-17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
-37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
-28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
-34,3,2,1,1,44,2,1,0,8,5,2,0,0,0,4,1
-41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
-12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
-36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
-15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
-17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
-41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
-14,10,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
-19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
-30,1,2,2,1,17,2,1,3,5,8,12,11,0,0,4,1
-9,9,2,2,1,13,2,1,0,7,5,13,11,0,0,4,1
-22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
-14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
-32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
-39,10,0,2,1,37,1,1,0,5,1,13,11,0,0,4,1
-16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
-25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
-26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
-13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
-12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
-9,12,3,2,1,13,1,1,2,18,3,7,0,4,1,0,1
-31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
-14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
-28,10,2,2,1,13,2,1,0,13,10,5,11,0,0,4,1
-21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
-12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
-15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
-13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
-25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
-15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
-17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
+12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
+5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
+16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
+29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
+16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
 28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
-39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
-35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
-31,10,2,3,1,43,1,1,0,26,1,14,11,0,0,4,1
-15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
-44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
-24,1,3,1,1,20,2,1,0,17,5,11,46,0,0,4,1
-15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
-25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
-16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
-16,7,2,3,1,9,1,1,0,20,1,13,2,0,0,4,1
-31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
-23,1,3,2,2,11,2,2,0,28,5,11,0,0,0,4,1
-30,1,2,2,1,20,2,1,3,5,8,13,0,0,0,4,1
-31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
-9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
-25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
-42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
-27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
-9,5,3,3,1,19,2,1,0,7,5,10,0,0,0,4,1
-23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
-29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
-14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
+21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
+17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
+37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
+33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
+17,1,3,2,1,14,2,2,3,26,8,6,0,0,0,4,0
+41,5,2,3,1,36,1,2,0,6,5,14,22,0,0,4,1
+15,10,3,2,1,10,2,1,3,26,8,7,11,0,0,4,0
+12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
+9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
+10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
+19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
+21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
+14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
+16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
 20,5,2,3,1,59,1,1,0,22,3,7,0,0,0,4,1
-24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
-18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
-13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
-17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
-27,0,0,3,1,19,1,1,0,20,5,9,33,0,0,4,1
-29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
-24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
-21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
-25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
-22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
-13,5,0,3,1,43,1,1,0,1,3,3,43,0,0,4,1
-18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
-13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
-19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
-10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
-14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
-10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
-12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
-33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
-16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-13,5,2,3,1,66,1,1,0,12,1,13,5,0,0,4,1
-18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
-36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
+14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
+9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
+21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
+39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
+28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
+28,0,2,2,1,14,1,1,3,9,6,3,0,0,0,4,1
+38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
+31,2,0,4,2,7,2,1,0,23,5,16,11,0,0,4,1
+13,7,2,3,1,70,1,1,0,14,1,11,11,0,0,4,1
+42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
+21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
+37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
+22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
+35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
 22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
-14,10,0,3,1,54,1,1,0,14,1,12,11,0,0,4,1
-18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-6,10,3,2,1,46,2,1,3,7,8,15,0,0,0,4,1
-14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
-23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
-25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
-22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
-39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
-31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
-29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
-34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
-17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
-12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
-13,7,3,3,1,18,2,1,3,7,8,12,0,0,0,4,1
+12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
+12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
+16,7,2,3,1,9,1,1,0,20,1,13,2,0,0,4,1
+17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
+26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
+29,1,2,2,1,34,1,1,0,2,1,10,0,0,0,4,1
+11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
+15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
+37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
+24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
+14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
+37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
+20,5,2,3,1,22,2,1,0,1,5,10,0,0,0,4,1
+22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
+12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
+18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
+7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
+9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
+20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
+9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
+10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
+35,0,0,4,1,32,1,1,0,2,5,3,11,0,0,4,1
+16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
+18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
+9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
+31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
+31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
+10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
+10,1,3,2,1,65,2,1,3,30,8,13,0,0,0,4,1
+8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
+21,0,2,2,1,15,2,2,0,25,3,3,11,0,0,4,1
+10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
+27,0,2,2,1,18,2,1,3,15,8,15,22,0,0,4,1
+41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
+22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
+18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
+17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
+8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
+27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
+13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
+9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
+14,7,3,3,1,44,2,1,0,9,10,10,0,0,0,4,1
+36,8,2,2,1,27,2,1,3,26,8,10,11,0,0,4,0
+9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
+41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
+41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
+27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
+29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
+34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
+21,11,3,2,1,1,2,1,0,22,3,9,0,0,0,4,1
+40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
+19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
+34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
+12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
+28,10,2,2,1,13,2,1,0,13,10,5,11,0,0,4,1
+28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
+26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
+14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
+20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
+33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
+38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
+8,1,3,2,1,67,2,1,3,30,8,12,0,0,0,4,1
+11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
+42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
+22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
+14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
+18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
+25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+38,10,0,2,1,23,1,1,0,9,5,11,0,0,0,4,1
+12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
+6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
+30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
+26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
+15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
+26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
+7,10,3,2,1,10,1,2,0,29,5,11,11,0,0,4,1
+14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
+12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
+20,2,2,3,1,9,1,1,0,15,5,11,11,0,0,4,1
+35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
+17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
+23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
+15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
+34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
+39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
+42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
+20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
 38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
-30,5,2,3,1,25,2,1,3,4,8,12,11,0,0,4,1
-24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
-22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
-14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
-39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
-42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
-17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
-12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
-21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
-20,9,3,3,1,40,1,1,3,8,6,3,22,0,0,4,1
-44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
-13,1,3,2,1,63,1,1,0,28,5,13,11,0,0,4,1
-27,1,2,1,1,9,2,1,3,3,8,10,38,0,0,4,1
-15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
-42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
+10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
 13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
-21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
-11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
-20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
-12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
-35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
-15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
-38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
-22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
+16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
+9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
+36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
+42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
+28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
+37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
+15,5,2,3,1,24,1,1,0,4,1,2,11,0,0,4,1
+22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
+10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
+12,0,0,2,1,43,2,1,3,25,6,10,6,0,0,4,1
+7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
+14,8,2,1,1,29,2,1,0,13,5,0,43,0,0,4,1
 23,8,0,2,1,67,2,1,0,11,3,15,0,0,0,4,1
-23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
-24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
-22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
+16,0,2,2,1,19,1,1,0,26,3,12,11,0,0,4,1
+11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
+25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
+40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
+13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
+38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
+31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
+26,5,2,3,1,12,1,1,0,19,1,10,22,0,0,4,1
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+39,1,2,2,1,19,2,1,0,8,10,11,0,0,0,4,1
+41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
+40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
+27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
+18,5,3,3,1,26,1,2,0,12,10,13,0,0,0,4,1
+18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
+19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
+28,10,2,2,1,41,1,2,0,19,3,2,0,0,0,4,1
+29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
+24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
+25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
+33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
+33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
+40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
 40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
-28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
-33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
-31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
-11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
-13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
-29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
-10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
-41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
-41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
-41,6,0,2,1,61,1,1,0,23,5,13,33,0,0,4,1
-39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
-16,5,3,3,1,33,2,1,0,13,10,12,43,0,0,4,1
-38,5,2,3,1,59,1,1,0,27,3,5,0,0,0,4,1
-34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
-4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
-9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
-29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
-11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
-36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
-8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
-10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
-40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
-16,1,2,1,1,41,2,1,0,13,10,0,0,0,0,4,1
-13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
-40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
-13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
-42,1,2,4,1,10,2,1,3,26,8,7,0,0,0,4,0
-34,6,0,3,1,43,2,2,3,7,6,13,33,0,0,4,1
-8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
-29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
-42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
-8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
-12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
-33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
-16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
-32,11,2,1,1,63,1,1,3,26,6,10,0,0,0,4,1
-19,11,3,2,1,44,2,1,3,29,8,16,11,0,0,4,1
-11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
-42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
-27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
-12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
-15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
-12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
-14,10,3,2,1,9,1,1,0,9,1,11,33,0,0,4,1
-34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
-29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
-13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
-12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
-18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
-35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
-14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
-20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
-27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
-14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
-22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
-17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
-37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
-43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
-22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
+22,2,0,2,1,37,2,1,0,9,5,12,22,0,0,4,1
+31,5,2,2,1,31,1,1,2,27,10,7,0,0,0,4,1
 13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
-19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
-9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
-16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
-35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
-21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
+23,2,2,1,1,44,2,1,0,13,10,11,11,0,0,4,1
 29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
-42,6,2,1,1,58,2,1,3,26,8,7,0,0,0,4,0
-36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
-12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
-38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
-19,5,3,3,1,58,2,1,3,26,8,4,0,0,0,4,0
-28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
-27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
-14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
-18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
-33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
-30,2,2,3,2,4,1,1,0,24,5,13,33,0,0,4,1
+34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
+16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
 16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
-9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
+28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
+28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
+25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
+18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
+21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
+11,1,2,2,1,66,2,2,0,1,5,12,0,0,0,4,1
+39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
+31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
+24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
+7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
+39,6,2,2,1,27,2,1,3,26,8,7,11,0,0,4,0
+24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
+22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
+35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
+21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
+11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
+22,10,3,3,1,21,2,1,0,11,3,7,0,157,12,0,1
+29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
+15,1,3,1,1,15,2,1,3,21,8,1,11,0,0,4,1
+23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
+42,6,0,2,1,27,2,1,3,26,8,7,0,0,0,4,0
+13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
+11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
+8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
+14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
+31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
+13,5,2,3,1,61,1,1,0,28,1,2,0,0,0,4,1
+31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
+31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
+13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
+24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
+27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
+36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
+20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
+32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
diff --git a/DATA/Datasets/Bank/LR/DO_12.data b/DATA/Datasets/Bank/LR/DO_12.data
index 7dbfc30f..81bac70c 100644
--- a/DATA/Datasets/Bank/LR/DO_12.data
+++ b/DATA/Datasets/Bank/LR/DO_12.data
@@ -1,1200 +1,1200 @@
-42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
-7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
-18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
-17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
-36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
-34,5,2,3,1,34,2,1,3,26,8,16,0,0,0,4,0
-19,8,2,2,1,19,2,1,0,7,3,4,11,0,0,4,1
-10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
-38,1,2,2,1,31,2,1,3,21,8,13,11,0,0,4,1
-21,10,2,2,1,9,2,1,3,26,8,6,0,0,0,4,0
-31,8,2,2,1,44,1,1,2,24,5,0,33,0,0,4,1
-31,1,3,1,1,56,2,1,0,17,5,16,11,0,0,4,1
-20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-27,0,2,2,1,18,2,1,3,15,8,15,22,0,0,4,1
+29,1,2,4,2,20,1,1,0,17,1,9,22,0,0,4,1
+41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
+25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
+11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
+35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
+14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
+23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
+13,5,3,3,1,9,2,1,3,26,8,11,0,0,0,4,0
+33,7,2,2,1,70,2,1,0,15,5,3,33,0,0,4,1
+15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
+35,10,2,3,1,71,1,1,0,12,1,4,38,0,0,4,1
+10,1,3,2,1,2,2,1,3,30,8,6,11,0,0,4,1
+17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
+22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
+13,5,2,3,1,66,1,1,0,12,1,13,5,0,0,4,1
+8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
+23,8,0,2,1,67,2,1,0,11,3,15,0,0,0,4,1
+16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
+30,1,2,2,1,20,2,1,3,5,8,13,0,0,0,4,1
+31,8,2,2,1,15,1,1,0,5,1,14,5,0,0,4,1
+34,5,2,3,1,14,1,1,0,14,1,1,33,0,0,4,1
+39,1,2,2,1,19,2,1,0,8,10,11,0,0,0,4,1
+36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
+16,5,3,3,1,33,2,1,0,13,10,12,43,0,0,4,1
+16,7,2,3,1,9,1,1,0,20,1,13,2,0,0,4,1
+15,5,3,3,1,37,2,1,0,14,5,1,0,0,0,4,1
+29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
+19,1,2,1,1,9,2,1,3,26,8,13,0,0,0,4,0
+32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
 25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
-21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
-35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
+20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
+21,10,2,2,1,9,2,1,3,26,8,6,0,0,0,4,0
+28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
+19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
+16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
+7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+40,6,2,1,1,14,1,1,0,9,1,6,11,0,0,4,1
+13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
+11,8,3,2,1,3,2,1,3,25,6,11,0,0,0,4,1
+32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
+31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
+37,1,2,2,1,44,1,1,3,26,8,8,0,0,0,4,0
+14,8,2,1,1,29,2,1,0,13,5,0,43,0,0,4,1
+31,8,2,2,1,50,1,1,3,26,8,7,11,0,0,4,0
+28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
+13,1,2,2,1,19,2,2,0,29,5,14,0,0,0,4,1
+8,5,3,3,1,49,1,1,0,1,5,2,22,0,0,4,1
+38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
+13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
+17,2,3,3,1,18,2,1,0,9,5,14,11,0,0,4,1
+27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
 14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
-5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
-35,11,0,2,1,57,1,1,0,10,10,11,0,0,0,4,1
-20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
-12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
-34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
-13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
+19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
+38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
+57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
+12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
+29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
+27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
+13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
+24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
 42,5,2,3,1,29,1,1,0,26,3,7,11,0,0,4,1
-36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
-33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
-17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
-54,6,2,3,1,9,1,1,0,4,3,16,0,0,0,4,1
-29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
-18,5,2,3,1,9,2,1,2,15,11,4,0,49,24,0,1
-19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
-41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
-19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
+32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
+22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
+18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
+57,6,2,1,1,42,1,1,0,8,3,9,2,0,0,4,1
+19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
+40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
+16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
+34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
+37,1,2,4,1,69,1,1,0,14,1,3,11,0,0,4,1
+13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
 14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
-16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
-7,10,3,2,1,51,1,1,0,16,5,13,0,0,0,4,1
-21,11,3,2,1,1,2,1,0,22,3,9,0,0,0,4,1
-24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
-12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
+32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
+14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
+12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
 14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
-6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
-14,7,3,3,1,44,2,1,0,9,10,10,0,0,0,4,1
-25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
-19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
-15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
-24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-8,8,3,2,1,18,1,1,2,15,11,5,0,0,0,4,1
-12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
-20,10,2,2,1,28,2,1,3,23,8,13,22,0,0,4,1
-35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
-39,6,0,3,1,64,1,1,0,27,1,3,33,0,0,4,1
-19,1,2,1,1,9,2,1,3,26,8,13,0,0,0,4,0
-35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
-10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
-25,1,3,2,1,37,2,1,3,30,8,15,22,0,0,4,1
-20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
-33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
-17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
-18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
-28,8,2,2,1,36,1,1,0,13,10,15,0,0,0,4,1
-35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
-8,0,3,3,1,38,1,2,0,18,3,7,11,0,0,4,1
-17,1,3,2,1,45,2,1,3,30,8,12,33,0,0,4,1
-13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
-10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
-29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
-14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
-35,0,0,4,1,32,1,1,0,2,5,3,11,0,0,4,1
-15,10,2,3,1,62,1,1,0,12,10,13,0,3,2,1,1
-13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
-22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
+21,1,2,1,1,13,1,1,0,22,3,15,0,0,0,4,1
+13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
 35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
-21,0,2,2,1,15,2,2,0,25,3,3,11,0,0,4,1
-15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
-28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
-23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
-18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
-31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
-36,6,0,3,1,9,1,1,3,4,8,12,0,0,0,4,1
-23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
-35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
-34,5,3,3,1,67,1,1,0,18,1,2,43,0,0,4,1
-39,1,2,2,1,19,2,1,0,8,10,11,0,0,0,4,1
-33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
-49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
-19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
-37,5,2,3,1,56,1,1,0,3,1,15,1,0,0,4,1
-18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
-10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
-27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
-29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
-17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
-43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
-23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
-28,10,2,2,1,41,1,2,0,19,3,2,0,0,0,4,1
-35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
-34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
-7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
-26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
-41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
+28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
+14,10,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
+33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
+23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
+25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
+7,1,2,2,1,7,2,1,3,26,8,9,0,0,0,4,0
+41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
+21,9,3,3,1,27,1,1,0,11,3,11,0,0,0,4,1
+20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
+26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
 18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
-30,5,2,3,1,9,1,1,2,1,10,7,0,0,0,4,1
-19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
-18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
-38,5,2,3,1,59,1,1,0,27,3,5,0,0,0,4,1
-18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
-26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
-32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
-36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
-35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
-13,7,3,3,1,18,2,1,3,7,8,12,0,0,0,4,1
-44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
-25,1,2,2,1,23,1,2,0,7,5,0,2,0,0,4,1
-22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
-22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
-31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
-32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
-41,6,0,2,1,61,1,1,0,23,5,13,33,0,0,4,1
-15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
-41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
-28,3,2,1,1,71,1,1,3,26,8,6,0,0,0,4,0
-23,1,0,2,1,54,2,1,3,5,8,4,22,0,0,4,1
-22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
-22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
-30,5,2,3,1,25,2,1,3,4,8,12,11,0,0,4,1
-41,8,2,2,1,2,2,1,3,18,8,13,22,0,0,4,1
-35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
 10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
-40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
-37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
-23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
-10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
-15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
-21,5,2,3,1,44,2,2,3,26,8,3,11,0,0,4,0
-23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
-37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
-13,5,3,3,1,9,2,1,3,26,8,11,0,0,0,4,0
-41,5,2,2,1,16,1,1,3,30,6,9,22,0,0,4,1
-14,5,2,3,1,9,2,1,3,26,8,6,0,0,0,4,0
-33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
-20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
-35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
-27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
-23,0,3,2,1,67,1,2,3,2,6,11,33,0,0,4,1
-27,11,0,2,1,40,2,1,3,21,8,13,0,0,0,4,1
-20,8,0,2,1,58,1,1,3,26,6,12,0,0,0,4,1
-20,0,0,2,1,24,2,1,0,26,3,1,22,167,12,3,1
-39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
-4,9,3,2,1,9,1,1,0,27,3,7,43,0,0,4,1
-13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
-33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
-31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
-8,9,3,2,1,9,2,1,3,26,8,11,11,0,0,4,0
-29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
-14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
-23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
-18,10,2,2,1,31,1,1,0,20,1,15,33,0,0,4,1
-16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
-13,1,3,2,1,63,1,1,0,28,5,13,11,0,0,4,1
-36,10,3,3,1,50,2,1,0,9,5,12,22,0,0,4,1
-14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
-13,0,3,2,1,64,2,1,3,18,8,11,11,0,0,4,1
-32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
-8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
-23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
-57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
-23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
-23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
-41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
-17,10,3,3,1,54,1,1,0,13,10,15,11,0,0,4,1
-15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
-13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
-38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
-41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
-14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
-42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
-12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
-27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
-33,11,0,3,1,9,1,1,0,24,5,11,11,0,0,4,1
-42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
-17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
-25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
-30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
-13,10,3,3,1,35,1,1,3,29,10,5,0,0,0,4,1
-13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
-12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
-20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
-15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
-20,10,3,2,1,21,2,1,3,26,8,6,0,0,0,4,0
-42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
-12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
-19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
-28,0,2,2,1,14,1,1,3,9,6,3,0,0,0,4,1
-16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
-34,6,0,3,1,43,2,2,3,7,6,13,33,0,0,4,1
-17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
-13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
-19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
-31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
-32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
-18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
-35,10,2,3,1,71,1,1,0,12,1,4,38,0,0,4,1
-9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
-38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
-26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
-15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
-20,1,2,2,1,20,1,1,3,7,6,3,47,0,0,4,1
-9,9,2,2,1,13,2,1,0,7,5,13,11,0,0,4,1
-17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
+11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
+17,1,0,1,1,37,2,1,3,4,8,15,11,0,0,4,1
+35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
 19,8,3,2,1,34,2,1,3,22,6,0,22,0,0,4,1
-16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
-36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
-24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
-10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
-32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
-7,9,3,2,1,30,1,1,0,26,3,7,45,0,0,4,1
+28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
+22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
+33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
+29,1,2,2,1,12,2,1,0,21,4,1,0,0,0,4,1
+36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+29,1,2,2,1,67,1,1,0,29,1,13,11,0,0,4,1
+14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
+12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
+28,3,2,1,1,71,1,1,3,26,8,6,0,0,0,4,0
+18,5,0,3,2,42,1,1,0,27,1,14,33,0,0,4,1
+29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
+24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
+7,10,3,2,1,51,1,1,0,16,5,13,0,0,0,4,1
+34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
+9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
+12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
+23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
+33,10,2,2,1,27,1,1,0,28,5,11,11,0,0,4,1
+29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
+40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
+35,10,0,1,1,18,2,1,3,5,8,10,0,0,0,4,1
+12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
+41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
+12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
+12,11,3,3,1,37,1,1,0,2,3,11,22,0,0,4,1
+15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
+39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
+15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
+23,8,2,4,2,9,1,2,0,23,5,2,33,0,0,4,1
+28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
+17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
+31,8,2,2,1,44,1,1,2,24,5,0,33,0,0,4,1
+40,2,2,3,1,65,2,1,2,30,5,16,0,0,0,4,1
+10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
+19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
+30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
+19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
+40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
+18,7,3,3,1,14,1,1,0,24,5,14,22,0,0,4,1
+37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
+14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
+38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
+13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
+21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
+30,5,2,3,1,23,2,1,0,18,3,7,0,0,0,4,1
+24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
+17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
+30,5,2,3,1,9,1,1,2,1,10,7,0,0,0,4,1
+14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
+39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
+15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
+7,5,3,3,1,31,1,1,0,8,3,10,0,0,0,4,1
+23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
+35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
+16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
+33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
+19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
+8,11,3,2,1,12,1,1,0,30,5,11,0,0,0,4,1
+8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
+42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
+27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
+16,1,2,2,1,23,1,1,0,27,1,15,11,0,0,4,1
+29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
+6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
+18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
+13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
+7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
+41,6,0,2,1,61,1,1,0,23,5,13,33,0,0,4,1
+14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
+17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
+11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
+12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
+31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
+41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
 12,10,3,3,1,22,1,1,0,8,5,12,22,0,0,4,1
-23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
-14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
-35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
+9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
+14,5,3,3,1,65,1,1,0,21,1,12,11,0,0,4,1
+27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
+5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
+17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
+24,8,2,2,1,65,1,1,0,20,4,16,0,0,0,4,1
+18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
+18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
+26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
+38,10,0,2,1,23,1,1,0,9,5,11,0,0,0,4,1
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+22,0,2,1,1,63,2,2,0,13,10,14,0,0,0,4,1
+40,5,0,3,1,56,1,1,0,11,3,10,0,0,0,4,1
+14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
+22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
+6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
+35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
+23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
+31,0,0,2,1,21,2,2,3,29,8,10,0,0,0,4,1
+23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
 11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
-27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
-19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
-15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
-15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
-18,5,2,3,1,71,1,1,0,23,5,13,33,0,0,4,1
-10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
-27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
-35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
-17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
-12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
-21,9,3,3,1,27,1,1,0,11,3,11,0,0,0,4,1
-14,10,3,2,1,9,1,1,0,9,1,11,33,0,0,4,1
-14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
-32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
-32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
-26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
-12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
-14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
-16,1,2,2,1,23,1,1,0,27,1,15,11,0,0,4,1
-20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
-31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
-16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
-24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
-27,10,3,3,1,9,1,1,0,9,1,13,33,0,0,4,1
-32,5,2,4,1,67,1,1,0,19,3,6,0,178,1,0,1
-29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
-16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
-30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
-33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
+10,0,3,2,1,7,1,2,3,18,6,8,11,0,0,4,1
+31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
+35,3,2,1,1,10,1,2,3,26,6,12,0,0,0,4,1
+6,10,3,2,1,46,2,1,3,7,8,15,0,0,0,4,1
+32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
+10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
+22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
+29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
+19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
+19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
+26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
+7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
+34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
+17,9,3,2,1,24,2,1,0,7,3,13,22,112,33,0,1
+44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
+18,7,2,3,1,24,1,1,3,26,8,6,11,0,0,4,0
+15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
+7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
+14,5,3,3,1,50,1,1,0,13,1,13,43,0,0,4,1
+41,5,2,3,1,36,1,2,0,6,5,14,22,0,0,4,1
+37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
+7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
+7,8,3,2,1,40,1,2,0,6,5,1,11,0,0,4,1
+16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
+39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+15,11,2,2,1,1,1,1,0,23,5,10,22,0,0,4,1
+10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+22,10,3,3,1,21,2,1,0,11,3,7,0,157,12,0,1
+43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
 15,12,3,4,1,9,1,1,3,26,8,6,0,0,0,4,0
-33,10,2,2,1,27,1,1,0,28,5,11,11,0,0,4,1
-24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
-36,8,2,2,1,27,2,1,3,26,8,10,11,0,0,4,0
-22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
+11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+8,0,3,3,1,38,1,2,0,18,3,7,11,0,0,4,1
+32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
+39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
+15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
+21,5,2,3,1,44,2,2,3,26,8,3,11,0,0,4,0
+19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
+24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
 13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
-13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
-72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
-29,1,2,2,1,12,2,1,0,21,4,1,0,0,0,4,1
-21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
-23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
-30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
-10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
-19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
-25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
-24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
-16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
-13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
-30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
-18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
-35,5,0,2,1,9,1,2,2,14,2,2,0,0,0,4,1
-14,0,0,2,1,3,1,2,3,19,6,14,11,0,0,4,1
-4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
-16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
-34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
-18,5,2,3,1,16,1,1,3,10,6,6,0,0,0,4,1
-41,5,0,3,1,32,2,1,2,21,11,7,0,0,0,4,1
-23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
-16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
-14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
-17,5,2,3,1,22,1,1,0,24,5,9,33,0,0,4,1
+9,5,3,3,1,19,2,1,0,7,5,10,0,0,0,4,1
+16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
 23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
-17,9,3,2,1,24,2,1,0,7,3,13,22,112,33,0,1
-39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+7,10,3,2,1,14,2,1,0,19,3,9,38,0,0,4,1
+19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
+21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
 29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
-36,0,0,2,1,24,1,1,0,4,3,10,38,0,0,4,1
-37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
-40,5,2,4,1,11,2,1,3,26,8,7,22,0,0,4,0
-19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
-13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
-20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
-25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
-19,11,3,2,1,44,2,1,3,29,8,16,11,0,0,4,1
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
-13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
-12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
+29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
+31,2,0,4,2,7,2,1,0,23,5,16,11,0,0,4,1
+33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
+10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
+36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
+25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
+17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
+29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
+11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
+41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
+9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
+20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
+17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
+14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
+13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
+14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
+30,5,2,2,1,33,2,1,0,20,5,10,45,0,0,4,1
+24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
+22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
+11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
+8,9,3,2,1,9,2,1,3,26,8,11,11,0,0,4,0
+15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
+10,10,3,2,1,69,1,2,0,28,5,11,0,0,0,4,1
+13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
+25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
+14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
+10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
+35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
+31,1,3,1,1,56,2,1,0,17,5,16,11,0,0,4,1
+16,10,3,3,1,72,2,1,0,26,3,13,11,0,0,4,1
+31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
+37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
+28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
+14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
+14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
+33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
+39,5,2,3,1,70,1,2,3,12,6,1,11,0,0,4,1
+11,1,3,2,1,51,1,2,0,1,5,1,22,0,0,4,1
+15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
+13,1,3,2,1,63,1,1,0,28,5,13,11,0,0,4,1
+51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
+17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
+15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
+23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
 11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
-20,10,2,3,1,25,1,1,0,26,1,3,11,0,0,4,1
-7,10,3,2,1,14,2,1,0,19,3,9,38,0,0,4,1
-22,8,3,2,1,19,2,1,0,12,10,9,0,0,0,4,1
-43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
-13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
-34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
-29,1,2,2,1,34,1,1,0,2,1,10,0,0,0,4,1
-18,5,0,3,2,42,1,1,0,27,1,14,33,0,0,4,1
-13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
-26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
-16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
-22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
-13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
-20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
+32,5,3,3,1,36,2,1,3,26,8,2,0,0,0,4,0
+12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
+17,5,2,3,1,22,1,1,0,24,5,9,33,0,0,4,1
+15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
+40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
+21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
+27,1,2,2,1,12,2,1,3,14,11,12,0,0,0,4,1
+36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
+17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
+30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
+22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
+21,1,3,2,1,9,1,1,0,14,5,14,33,0,0,4,1
+21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
+41,6,3,2,1,37,2,1,3,26,8,10,0,0,0,4,0
+24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
+18,5,2,3,1,9,2,2,3,26,8,9,0,0,0,4,0
+15,10,3,2,1,10,2,1,3,26,8,7,11,0,0,4,0
+14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
+18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
+16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
+36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
+36,0,0,2,1,24,1,1,0,4,3,10,38,0,0,4,1
+23,1,2,2,1,17,2,1,3,6,8,2,33,0,0,4,1
+31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
+24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
+22,0,2,2,1,40,1,1,0,24,5,2,38,0,0,4,1
+31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
+28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
 21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
-38,10,0,2,1,23,1,1,0,9,5,11,0,0,0,4,1
-13,5,2,3,1,61,1,1,0,28,1,2,0,0,0,4,1
-13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
-11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
-28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
-14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
+17,5,2,3,1,68,2,1,3,11,6,7,22,0,0,4,1
+12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
+22,2,0,2,1,37,2,1,0,9,5,12,22,0,0,4,1
+29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
 33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
-17,5,0,3,1,9,2,1,2,21,11,5,0,0,0,4,1
-8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
-33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
-38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
+15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
+21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
+31,10,2,3,1,43,1,1,0,26,1,14,11,0,0,4,1
+19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
+25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
+30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
+42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
+20,5,2,3,1,44,2,1,2,20,11,5,0,0,0,4,1
+26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
+55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
+20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
+23,0,3,2,1,67,1,2,3,2,6,11,33,0,0,4,1
+12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
+12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
+21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
 17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
-10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
-15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
-9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
-29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
-17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
-35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
-34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
-24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
-23,1,2,2,1,17,2,1,3,6,8,2,33,0,0,4,1
-31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
-41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
-24,1,3,1,1,20,2,1,0,17,5,11,46,0,0,4,1
-20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
-14,5,3,3,1,25,1,1,0,5,1,2,11,0,0,4,1
-46,6,2,1,1,48,1,1,0,27,3,10,0,0,0,4,1
-18,10,3,2,1,33,2,2,3,26,8,8,0,0,0,4,0
-19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
-13,5,2,3,1,66,1,1,0,12,1,13,5,0,0,4,1
-37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
-16,0,2,2,1,19,1,1,0,26,3,12,11,0,0,4,1
-22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
-17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
-21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
-9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
-40,5,0,3,1,56,1,1,0,11,3,10,0,0,0,4,1
-33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
-28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
-12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-24,2,0,3,2,25,2,1,3,26,8,9,0,0,0,4,0
-16,8,2,2,1,2,2,2,3,26,8,13,0,0,0,4,0
+37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
+39,1,2,2,1,58,2,2,3,26,8,7,0,0,0,4,0
+35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
+17,2,0,2,1,7,2,1,3,26,8,8,0,0,0,4,0
+12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
+33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
+12,5,2,2,1,68,1,1,0,3,1,10,11,0,0,4,1
+24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
+38,5,2,3,1,59,1,1,0,27,3,5,0,0,0,4,1
+39,6,2,3,1,9,2,2,3,20,8,12,0,0,0,4,1
+15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
+17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
+15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
 15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
-15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
+28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
+13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
+24,2,0,3,2,25,2,1,3,26,8,9,0,0,0,4,0
+25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
+20,5,2,3,1,22,2,1,0,1,5,10,0,0,0,4,1
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
+10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
+35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
+15,1,3,1,1,15,2,1,3,21,8,1,11,0,0,4,1
+9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
+11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
+39,1,2,4,1,42,1,1,2,5,10,5,0,0,0,4,1
+9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
+13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
+37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
+36,5,2,3,1,9,1,1,3,26,8,2,11,0,0,4,0
+13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
 26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
-42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
-38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
-7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
-7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
-25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
-10,0,3,2,1,7,1,2,3,18,6,8,11,0,0,4,1
-17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
-22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
-39,1,2,2,1,58,2,2,3,26,8,7,0,0,0,4,0
-11,1,3,2,1,51,1,2,0,1,5,1,22,0,0,4,1
-14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
-16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
-14,5,3,3,1,24,1,1,0,17,1,10,38,0,0,4,1
-12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
-13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
+42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
+8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
+4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
+13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
+42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
+43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
+38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
+12,7,2,3,1,22,1,1,3,8,11,7,0,0,0,4,1
+12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
+9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
+22,10,0,2,1,38,1,1,0,27,1,13,11,0,0,4,1
+20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
+20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
+33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
+13,0,3,2,1,64,2,1,3,18,8,11,11,0,0,4,1
+15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
+23,1,2,1,1,31,2,1,3,6,8,1,0,0,0,4,1
+32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
+27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
+7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
+31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
+8,10,3,3,1,19,1,1,0,11,3,8,0,0,0,4,1
+4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
+35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
+38,1,2,2,1,31,2,1,3,21,8,13,11,0,0,4,1
+35,1,2,1,1,56,1,1,0,20,1,7,43,0,0,4,1
+7,10,3,2,1,10,1,2,0,29,5,11,11,0,0,4,1
+12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
+23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
+29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
+36,10,3,3,1,50,2,1,0,9,5,12,22,0,0,4,1
+35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
+30,1,2,1,1,63,1,2,0,2,1,9,38,0,0,4,1
+23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
+67,6,0,1,1,65,1,1,0,9,3,9,22,0,0,4,1
 29,11,2,1,1,39,1,1,0,13,10,10,11,0,0,4,1
-18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
-41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
-27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
-26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
-28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
-40,5,2,3,1,47,2,1,2,5,10,5,0,0,0,4,1
-32,10,2,2,1,47,2,1,3,26,6,10,38,0,0,4,1
-20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
-28,1,2,1,1,68,1,1,0,27,1,16,0,0,0,4,1
-10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
-17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
-21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
-12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
-40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
-67,6,0,1,1,65,1,1,0,9,3,9,22,0,0,4,1
-17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
-15,5,2,3,1,24,1,1,0,4,1,2,11,0,0,4,1
-15,10,3,3,1,17,2,1,0,9,5,1,22,0,0,4,1
-16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
-31,5,2,2,1,31,1,1,2,27,10,7,0,0,0,4,1
+18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
+19,8,2,2,1,19,2,1,0,7,3,4,11,0,0,4,1
+12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
+26,1,2,2,1,18,2,1,3,26,8,7,11,0,0,4,0
+27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
 5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
-23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
-26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-38,1,3,2,1,61,1,2,0,29,5,14,22,0,0,4,1
-14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
-27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
-32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
-14,8,2,1,1,29,2,1,0,13,5,0,43,0,0,4,1
-12,0,0,2,1,43,2,1,3,25,6,10,6,0,0,4,1
-26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
-28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
-13,8,2,2,1,31,2,2,3,26,8,5,0,0,0,4,0
-23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
-38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
-14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
-21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
-14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
-30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
-16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
-15,8,3,2,1,21,1,1,0,28,5,13,0,0,0,4,1
-41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
-18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
-10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
-20,9,3,3,1,40,1,1,3,8,6,3,22,0,0,4,1
-12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
-9,1,3,2,1,31,2,1,3,21,8,13,0,0,0,4,1
-11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
-37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
-29,3,3,3,1,43,1,1,3,3,6,16,43,0,0,4,1
-41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
-32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
-40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-27,10,2,3,1,43,2,1,3,10,6,14,22,0,0,4,1
-12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
-21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
-16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
-17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
-31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
-27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
-39,5,2,3,1,70,1,2,3,12,6,1,11,0,0,4,1
-14,10,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
-12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
-23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
-32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
-33,2,2,4,1,58,2,1,3,20,8,11,47,0,0,4,1
-27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
-42,1,2,4,1,10,2,1,3,26,8,7,0,0,0,4,0
-8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
-21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
-30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
-17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
-18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
-27,1,2,1,1,31,2,1,3,26,8,9,0,0,0,4,0
-37,10,2,3,1,21,1,2,0,26,1,12,11,0,0,4,1
+14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
+28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
+13,5,2,3,1,61,1,1,0,28,1,2,0,0,0,4,1
+16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
+21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
 15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
-10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
+40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
+25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
+29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
+12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
+24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
+19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
+22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
+6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
+43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
+33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
+13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
+16,0,2,2,1,19,1,1,0,26,3,12,11,0,0,4,1
+21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
 15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
-15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
-14,5,3,3,1,65,1,1,0,21,1,12,11,0,0,4,1
-31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
-18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
-9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
-4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-20,2,2,3,1,9,1,1,0,15,5,11,11,0,0,4,1
-28,0,2,2,1,61,2,1,2,21,5,1,2,0,0,4,1
-14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
-25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
-37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
-26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
-10,8,3,2,1,53,2,1,3,27,8,3,22,0,0,4,1
-11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
-28,10,3,2,1,68,1,1,0,10,10,14,22,0,0,4,1
-42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
-42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
-40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
-15,5,3,3,1,37,2,1,0,14,5,1,0,0,0,4,1
-9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
-25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
-11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
-21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
+17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
+14,7,3,3,1,44,2,1,0,9,10,10,0,0,0,4,1
+9,1,3,2,1,31,2,1,3,21,8,13,0,0,0,4,1
+10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
+33,1,2,2,1,63,2,1,3,5,8,15,0,0,0,4,1
+13,8,2,2,1,31,2,2,3,26,8,5,0,0,0,4,0
+17,6,3,1,1,48,1,1,3,26,8,4,0,0,0,4,0
+21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
+13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
+39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
+14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
+31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
+23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
+21,11,3,2,1,1,2,1,0,22,3,9,0,0,0,4,1
+12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
+24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
+39,10,2,2,1,64,1,1,2,20,11,4,0,0,0,4,1
+19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
+29,1,2,2,1,34,1,1,0,2,1,10,0,0,0,4,1
+14,10,0,3,1,54,1,1,0,14,1,12,11,0,0,4,1
+42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
+29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
+19,5,2,3,1,46,2,1,0,11,3,8,11,82,30,1,1
+10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
+35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
 14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
-33,7,2,3,1,55,2,2,0,24,5,11,33,0,0,4,1
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
-28,7,2,3,1,30,1,1,0,10,10,1,0,3,30,0,1
-25,1,3,2,1,64,2,1,3,12,6,11,11,0,0,4,1
-33,1,2,2,1,32,2,1,3,26,8,13,0,0,0,4,0
-16,7,2,3,1,9,1,1,0,20,1,13,2,0,0,4,1
-29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
-25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
-43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
-39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
-13,7,2,3,1,70,1,1,0,14,1,11,11,0,0,4,1
-30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
-8,0,3,2,1,32,1,1,0,30,3,6,0,0,0,4,1
-31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
-20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
-38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
-22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
-10,10,3,2,1,69,1,2,0,28,5,11,0,0,0,4,1
-7,1,2,2,1,9,1,2,0,29,5,10,22,0,0,4,1
-34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
-26,5,2,3,1,12,1,1,0,19,1,10,22,0,0,4,1
-8,10,3,3,1,19,1,1,0,11,3,8,0,0,0,4,1
-7,8,3,2,1,40,1,2,0,6,5,1,11,0,0,4,1
-22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
-23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
-18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-37,1,2,2,1,44,1,1,3,26,8,8,0,0,0,4,0
-33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
-14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
-6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
-33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
-20,5,2,3,1,22,2,1,0,1,5,10,0,0,0,4,1
-22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
-25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
-20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
-42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
+12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
+15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
+21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
 17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
-39,1,2,4,1,42,1,1,2,5,10,5,0,0,0,4,1
-21,8,3,4,1,32,2,1,3,26,8,9,0,0,0,4,0
-8,5,3,3,1,62,2,1,3,20,8,5,11,0,0,4,1
+16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
+37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
+27,1,2,1,1,31,2,1,3,26,8,9,0,0,0,4,0
+36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
+12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
 8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
-18,2,0,3,1,65,1,2,0,28,5,13,22,0,0,4,1
-40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
-8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
-10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
-9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
-13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
-23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
-16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
-22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
-7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
-22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
-40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
-19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-53,6,2,1,1,50,1,1,0,7,3,15,38,0,0,4,1
-31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
-19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
-40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-18,5,3,3,1,26,1,2,0,12,10,13,0,0,0,4,1
-25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
-42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
-40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
-36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
-19,5,2,3,1,46,2,1,0,11,3,8,11,82,30,1,1
-24,11,0,2,1,22,2,1,3,23,8,14,11,0,0,4,1
-26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
-7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
-24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
-36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
-16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
-42,6,2,1,1,58,2,1,3,26,8,7,0,0,0,4,0
-16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
-17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
-42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
-16,8,3,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
-39,8,2,2,1,20,2,1,3,26,8,5,0,0,0,4,0
-31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
-40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
-17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
-29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
-30,5,2,2,1,33,2,1,0,20,5,10,45,0,0,4,1
-35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
+35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
+32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
+28,8,2,2,1,36,1,1,0,13,10,15,0,0,0,4,1
+35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
 29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
-8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
-23,1,2,2,1,55,2,1,0,1,5,11,0,0,0,4,1
-12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
-18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
-40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
 9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
-37,10,0,2,2,45,1,1,0,20,4,1,0,0,0,4,1
-13,5,0,3,1,36,2,1,0,8,5,11,38,0,0,4,1
-37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
-27,0,0,3,1,19,1,1,0,20,5,9,33,0,0,4,1
-19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
-11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
-8,5,3,3,1,49,1,1,0,1,5,2,22,0,0,4,1
-25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
-37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
+18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
 18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
-39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
-21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
-31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
-43,5,2,2,1,71,1,1,0,9,1,16,43,0,0,4,1
-18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
-17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
-14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
+23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
+29,1,2,1,1,1,2,1,3,26,8,6,0,0,0,4,0
 31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
-28,10,2,2,1,13,2,1,0,13,10,5,11,0,0,4,1
-14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
-18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
-18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
-23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
-10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
-18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
-14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
-39,6,2,2,1,27,2,1,3,26,8,7,11,0,0,4,0
-16,5,3,3,1,33,2,1,0,13,10,12,43,0,0,4,1
-36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
-40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
-28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
-26,1,2,2,1,57,2,1,3,26,8,10,0,0,0,4,0
-10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
-13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-9,12,3,2,1,13,1,1,2,18,3,7,0,4,1,0,1
-36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
-39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
-17,2,0,2,1,7,2,1,3,26,8,8,0,0,0,4,0
-19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
-26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
-14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
+28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
+42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
+14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
 28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
-10,1,3,2,1,2,2,1,3,30,8,6,11,0,0,4,1
-18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
-21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
-41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
+20,10,3,2,1,21,2,1,3,26,8,6,0,0,0,4,0
+21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
+31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
+20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
+16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
+25,6,2,2,1,68,1,1,2,23,11,3,0,0,0,4,1
+25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
+35,1,2,2,1,59,1,1,0,22,3,7,0,0,0,4,1
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
+14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
+19,2,0,2,1,22,2,2,3,4,8,13,43,0,0,4,1
+32,11,2,1,1,63,1,1,3,26,6,10,0,0,0,4,1
+23,8,2,2,1,9,2,1,3,26,8,1,11,0,0,4,0
+13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
+24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
+17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
+12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
+6,9,3,2,1,67,2,1,3,26,8,6,11,0,0,4,0
+40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
+14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
+23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
+37,10,2,3,1,21,1,2,0,26,1,12,11,0,0,4,1
+18,5,2,3,1,71,1,1,0,23,5,13,33,0,0,4,1
+20,1,2,2,1,20,1,1,3,7,6,3,47,0,0,4,1
+13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
+28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
+8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
+9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
+13,10,3,3,1,12,1,1,0,26,3,12,0,74,12,0,1
+5,8,3,2,1,61,2,1,3,20,8,2,0,0,0,4,1
+18,10,3,2,1,33,2,2,3,26,8,8,0,0,0,4,0
+34,6,0,3,1,43,2,2,3,7,6,13,33,0,0,4,1
+34,3,2,1,1,44,2,1,0,8,5,2,0,0,0,4,1
+21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
+13,10,3,3,1,35,1,1,3,29,10,5,0,0,0,4,1
 36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
-17,5,2,3,1,68,2,1,3,11,6,7,22,0,0,4,1
-34,3,2,2,1,45,2,1,3,5,8,15,22,0,0,4,1
-37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
-24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
-28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
-35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
-16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
-33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
-17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
-12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
-36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
-26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
-28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
-28,5,3,3,1,9,1,1,0,14,1,12,11,0,0,4,1
-31,2,0,4,2,7,2,1,0,23,5,16,11,0,0,4,1
-35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
-41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
-14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
-34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
-28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
-13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
+26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
 10,1,3,2,1,65,2,1,3,30,8,13,0,0,0,4,1
-28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
-27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
-29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
-37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
-28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
-30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
-16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
-34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
-9,5,3,3,1,19,2,1,0,7,5,10,0,0,0,4,1
-15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
-35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
-44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
-28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
-29,0,0,2,1,28,1,1,0,20,1,1,33,0,0,4,1
-11,10,3,3,1,29,1,1,0,11,3,3,0,0,0,4,1
-20,5,2,3,1,59,1,1,0,22,3,7,0,0,0,4,1
-23,1,3,2,2,4,1,2,0,12,10,10,0,0,0,4,1
-33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
-15,5,3,3,1,63,1,1,0,19,1,10,46,0,0,4,1
-18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
-14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
-24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
-28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
-25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
-35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
-12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
-12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
-17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
-42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
-29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
-24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
-12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
-21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
-25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
-13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
-17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
-38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
-13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
-41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
-36,5,2,3,1,9,1,1,3,26,8,2,11,0,0,4,0
-40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
-24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
+38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
+10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
+40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
+19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
+14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
+31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
+18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
 13,10,2,2,2,4,2,1,0,9,5,10,11,0,0,4,1
-29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
-16,10,3,3,1,72,2,1,0,26,3,13,11,0,0,4,1
-24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
-5,8,3,2,1,61,2,1,3,20,8,2,0,0,0,4,1
-12,8,3,2,2,4,2,1,0,9,5,10,0,0,0,4,1
+28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
+9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
+40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
+43,6,2,2,1,65,1,1,0,27,1,10,33,0,0,4,1
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
+9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
+19,10,2,3,1,15,2,1,0,4,3,13,0,0,0,4,1
+16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
+25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
+40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
+15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
+24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
+37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
+34,3,2,2,1,45,2,1,3,5,8,15,22,0,0,4,1
+14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
+38,1,2,2,1,14,1,1,3,2,6,15,0,0,0,4,1
+33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
+17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
+20,8,0,2,1,58,1,1,3,26,6,12,0,0,0,4,1
+19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
+8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
+40,5,2,3,1,47,2,1,2,5,10,5,0,0,0,4,1
+27,5,2,3,1,61,1,1,3,12,6,12,22,0,0,4,1
+16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
+37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
+16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
+40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
+21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
+13,7,3,3,1,18,2,1,3,7,8,12,0,0,0,4,1
+30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
+18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
+39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
+19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
+18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
+41,5,0,3,1,32,2,1,2,21,11,7,0,0,0,4,1
+11,0,0,3,2,9,1,2,0,30,5,9,22,0,0,4,1
+24,11,0,2,1,22,2,1,3,23,8,14,11,0,0,4,1
+14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
+18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
+13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
+19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
+33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
 22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
-33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
-29,1,2,1,1,1,2,1,3,26,8,6,0,0,0,4,0
-12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
+36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
+33,2,2,3,1,54,2,1,3,15,11,3,0,0,0,4,1
+31,5,2,2,1,31,1,1,2,27,10,7,0,0,0,4,1
+13,5,0,3,1,36,2,1,0,8,5,11,38,0,0,4,1
+12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
+15,8,3,2,1,21,1,1,0,28,5,13,0,0,0,4,1
+42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
+29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
+37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
+23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
 20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
-9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
-34,3,2,1,1,44,2,1,0,8,5,2,0,0,0,4,1
-7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
+27,5,2,3,1,54,2,1,3,26,8,14,11,0,0,4,0
+32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
+8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
+23,1,3,2,2,11,2,2,0,28,5,11,0,0,0,4,1
+12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
+11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
+9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
+36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
+25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
+34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
+23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
+40,5,2,4,1,11,2,1,3,26,8,7,22,0,0,4,0
+40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
+26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
+39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
+35,1,2,1,1,64,2,1,0,22,3,4,11,0,0,4,1
+12,0,0,2,1,43,2,1,3,25,6,10,6,0,0,4,1
+18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
+35,5,0,2,1,9,1,2,2,14,2,2,0,0,0,4,1
+24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
 15,1,3,3,1,62,1,1,0,30,3,3,0,546,1,3,1
-6,10,3,2,1,46,2,1,3,7,8,15,0,0,0,4,1
-13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
-24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
-12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
-22,0,2,2,1,40,1,1,0,24,5,2,38,0,0,4,1
+17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
+36,10,2,3,1,32,1,1,3,26,8,8,33,0,0,4,0
+25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+35,11,0,2,1,57,1,1,0,10,10,11,0,0,0,4,1
+36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
+21,0,2,2,1,15,2,2,0,25,3,3,11,0,0,4,1
+8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
+27,2,2,3,1,25,2,1,0,12,10,14,38,0,0,4,1
+31,8,2,2,1,67,1,1,0,29,1,13,33,0,0,4,1
+42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
+25,1,3,2,1,37,2,1,3,30,8,15,22,0,0,4,1
+10,0,3,4,1,34,1,1,0,29,5,12,0,0,0,4,1
+35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
+37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
+8,0,3,2,1,31,1,1,0,10,3,12,22,0,0,4,1
+17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
 34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
-10,8,2,2,1,53,2,2,0,29,5,6,11,0,0,4,1
-22,0,2,1,1,63,2,2,0,13,10,14,0,0,0,4,1
-33,2,2,3,1,54,2,1,3,15,11,3,0,0,0,4,1
-40,2,2,3,1,68,1,1,3,26,6,2,11,0,0,4,1
-12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
-15,10,3,2,1,10,2,1,3,26,8,7,11,0,0,4,0
-21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
-39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
-35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
-23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
-14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
-34,1,2,2,1,63,1,2,2,12,10,14,22,0,0,4,1
-9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
-24,8,2,2,1,65,1,1,0,20,4,16,0,0,0,4,1
+39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
+13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
+23,1,3,2,2,4,1,2,0,12,10,10,0,0,0,4,1
+41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
+26,5,2,3,1,12,1,1,0,19,1,10,22,0,0,4,1
+41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
+36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
+19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
+35,1,2,2,1,9,2,2,3,26,8,6,0,0,0,4,0
+7,9,3,2,1,30,1,1,0,26,3,7,45,0,0,4,1
 17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
-24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
-39,10,2,2,1,64,1,1,2,20,11,4,0,0,0,4,1
-40,2,2,3,1,65,2,1,2,30,5,16,0,0,0,4,1
-13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
-18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
-32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
-13,10,3,3,1,12,1,1,0,26,3,12,0,74,12,0,1
-10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
-4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
-17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
-32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
-56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
-20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
-32,5,3,3,1,36,2,1,3,26,8,2,0,0,0,4,0
-31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
-29,1,2,4,2,20,1,1,0,17,1,9,22,0,0,4,1
-22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
-17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
-18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
-26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
-37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
-37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
-31,8,2,2,1,50,1,1,3,26,8,7,11,0,0,4,0
-21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
-38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
-37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
-42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
+13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+20,10,2,3,1,25,1,1,0,26,1,3,11,0,0,4,1
+29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
+41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
+33,2,2,4,1,58,2,1,3,20,8,11,47,0,0,4,1
+26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+23,1,0,1,1,61,1,2,0,6,5,15,38,0,0,4,1
 32,1,2,1,1,46,2,1,0,28,1,10,11,0,0,4,1
-16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
-8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
-26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
-15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
-14,8,3,2,1,2,2,1,3,13,8,12,22,0,0,4,1
-41,0,2,2,1,9,2,1,0,1,5,16,0,0,0,4,1
-21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
-29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
-27,5,2,3,1,54,2,1,3,26,8,14,11,0,0,4,0
-15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
-12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
-41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
-35,1,2,1,1,56,1,1,0,20,1,7,43,0,0,4,1
-10,0,3,4,1,30,2,1,0,9,5,9,11,0,0,4,1
-42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
-28,5,3,3,1,35,2,1,3,23,8,16,11,0,0,4,1
+29,1,2,2,1,36,1,1,0,1,3,8,0,0,0,4,1
+14,5,2,3,1,9,2,1,3,26,8,6,0,0,0,4,0
+41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
+33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
+23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
+27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
+23,1,0,2,1,54,2,1,3,5,8,4,22,0,0,4,1
+42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+12,0,3,2,1,38,2,1,0,25,3,1,11,0,0,4,1
+19,11,3,2,1,44,2,1,3,29,8,16,11,0,0,4,1
+34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
+31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
+11,10,3,3,1,29,1,1,0,11,3,3,0,0,0,4,1
+20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
+17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
+23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
 11,5,2,3,1,38,1,1,3,20,8,15,11,0,0,4,1
-11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
-9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
-19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
-11,5,3,3,1,71,2,1,0,2,5,15,11,0,0,4,1
-27,1,2,2,1,12,2,1,3,14,11,12,0,0,0,4,1
-14,8,3,2,1,65,2,1,3,6,8,12,22,0,0,4,1
-44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
-35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
-26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
-26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
-8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
-25,6,2,2,1,68,1,1,2,23,11,3,0,0,0,4,1
-27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
-18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
-35,1,2,2,1,59,1,1,0,22,3,7,0,0,0,4,1
-33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
-23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
-38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
-13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-8,11,3,2,1,12,1,1,0,30,5,11,0,0,0,4,1
-19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
-12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
-23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
-33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
-11,8,3,2,1,3,2,1,3,25,6,11,0,0,0,4,1
-39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
-19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
-16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
-20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
-13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
-26,1,2,2,1,18,2,1,3,26,8,7,11,0,0,4,0
-12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
-25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
-18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
+26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
+18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
+22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
+18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
+12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
+42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
+28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
+26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
+24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
+28,10,2,2,1,13,2,1,0,13,10,5,11,0,0,4,1
+32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
+22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
+16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
+6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
+10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
+10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
+31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
+33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
+18,5,3,3,1,26,1,2,0,12,10,13,0,0,0,4,1
+8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
+42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
+13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
+42,6,2,1,1,58,2,1,3,26,8,7,0,0,0,4,0
 16,1,2,1,1,41,2,1,0,13,10,0,0,0,0,4,1
-16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
-18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
-19,2,0,2,1,22,2,2,3,4,8,13,43,0,0,4,1
-32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
-12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
-24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
-13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
-37,10,2,2,1,14,2,1,3,26,8,5,11,0,0,4,0
-8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
-28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
-10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
-22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
-40,6,2,1,1,14,1,1,0,9,1,6,11,0,0,4,1
-28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
-22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
+40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
+24,1,3,1,1,20,2,1,0,17,5,11,46,0,0,4,1
+24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
+7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
+17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
+15,5,2,3,1,24,1,1,0,4,1,2,11,0,0,4,1
+7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
+15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
+38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
+10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
+16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
+15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
+38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
+12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
+20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
+14,10,3,2,1,9,1,1,0,9,1,11,33,0,0,4,1
+32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
+54,6,2,3,1,9,1,1,0,4,3,16,0,0,0,4,1
+8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
+33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
+35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
+14,5,3,3,1,25,1,1,0,5,1,2,11,0,0,4,1
 14,1,3,3,1,62,1,1,3,4,10,15,0,0,0,4,1
-13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
-11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
-32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
-13,11,3,1,1,20,1,1,0,23,4,13,11,110,1,1,1
-40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
-31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
-37,1,2,4,1,69,1,1,0,14,1,3,11,0,0,4,1
-28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
-30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
-30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
-13,1,2,2,1,19,2,2,0,29,5,14,0,0,0,4,1
-19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
-42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
-38,1,2,2,1,14,1,1,3,2,6,15,0,0,0,4,1
-39,6,2,3,1,9,2,2,3,20,8,12,0,0,0,4,1
-8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
-25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
-17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
-35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
-12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
-22,10,0,2,1,38,1,1,0,27,1,13,11,0,0,4,1
-33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
-31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
-12,5,2,2,1,68,1,1,0,3,1,10,11,0,0,4,1
-29,1,2,2,1,36,1,1,0,1,3,8,0,0,0,4,1
-9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
-15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
-41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
-40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
-23,1,2,1,1,31,2,1,3,6,8,1,0,0,0,4,1
-9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
-14,5,3,3,1,50,1,1,0,13,1,13,43,0,0,4,1
+12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
 30,1,2,2,1,17,2,1,3,5,8,12,11,0,0,4,1
-15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
-19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
-17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
-51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
-29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
-20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
-18,5,2,3,1,9,2,2,3,26,8,9,0,0,0,4,0
-36,5,2,2,1,12,2,1,0,17,5,3,22,0,0,4,1
-10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
-12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
-34,5,2,3,1,14,1,1,0,14,1,1,33,0,0,4,1
-32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
-18,0,2,3,1,27,2,1,3,26,8,4,11,0,0,4,0
-10,10,3,2,1,16,1,1,0,19,3,13,0,0,0,4,1
-8,0,3,2,1,31,1,1,0,10,3,12,22,0,0,4,1
-35,1,2,2,1,9,2,2,3,26,8,6,0,0,0,4,0
-8,1,3,2,1,67,2,1,3,30,8,12,0,0,0,4,1
-21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
-29,1,2,2,1,67,1,1,0,29,1,13,11,0,0,4,1
+34,5,2,3,1,34,2,1,3,26,8,16,0,0,0,4,0
+24,0,2,2,1,10,1,1,3,2,6,2,33,0,0,4,1
+32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
+19,5,3,3,1,58,2,1,3,26,8,4,0,0,0,4,0
+37,10,2,2,2,4,1,1,0,11,3,13,0,0,0,4,1
+21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
+17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
+24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
+39,5,2,3,1,9,2,2,3,12,6,5,0,0,0,4,1
+31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
+40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
+11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
+32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
+27,11,0,2,1,40,2,1,3,21,8,13,0,0,0,4,1
+37,10,2,2,1,14,2,1,3,26,8,5,11,0,0,4,0
+29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
+40,2,2,3,1,68,1,1,3,26,6,2,11,0,0,4,1
+28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
+27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
+18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
+36,6,0,3,1,9,1,1,3,4,8,12,0,0,0,4,1
+35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
+16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
+41,8,2,2,1,2,2,1,3,18,8,13,22,0,0,4,1
+42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
+16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
+41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
+28,0,2,2,1,61,2,1,2,21,5,1,2,0,0,4,1
+9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
+20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
+30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
+12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
+22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
+39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
+14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+8,1,2,2,1,0,2,2,0,8,5,2,22,0,0,4,1
+23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
+16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+20,9,3,3,1,40,1,1,3,8,6,3,22,0,0,4,1
+40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
+26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
+13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
+11,5,3,3,1,71,2,1,0,2,5,15,11,0,0,4,1
+32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
+26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
+13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
+29,3,3,3,1,43,1,1,3,3,6,16,43,0,0,4,1
+17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
+32,5,2,4,1,67,1,1,0,19,3,6,0,178,1,0,1
 8,10,2,2,1,1,1,2,0,30,5,9,38,0,0,4,1
-41,6,2,1,1,20,2,2,0,26,1,14,0,0,0,4,1
-12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
-35,11,2,4,1,15,1,1,3,26,8,9,22,0,0,4,0
-13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
-17,1,3,2,1,14,2,2,3,26,8,6,0,0,0,4,0
-14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
-20,5,2,3,1,44,2,1,2,20,11,5,0,0,0,4,1
-31,8,2,2,1,67,1,1,0,29,1,13,33,0,0,4,1
-9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
-19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
-19,5,3,3,1,49,2,1,0,4,1,15,43,0,0,4,1
-39,10,0,2,1,37,1,1,0,5,1,13,11,0,0,4,1
-11,1,2,2,1,66,2,2,0,1,5,12,0,0,0,4,1
-24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
-31,10,2,3,1,43,1,1,0,26,1,14,11,0,0,4,1
-22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
-31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
-39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
-40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
-13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
-25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
-11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
-11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
-31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
-6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
-17,1,0,1,1,37,2,1,3,4,8,15,11,0,0,4,1
-34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
-28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
-22,10,3,3,1,21,2,1,0,11,3,7,0,157,12,0,1
-43,6,2,2,1,65,1,1,0,27,1,10,33,0,0,4,1
-41,6,3,2,1,37,2,1,3,26,8,10,0,0,0,4,0
-14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
-21,1,3,2,1,9,1,1,0,14,5,14,33,0,0,4,1
-13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
-11,7,3,3,1,14,2,1,3,23,8,4,11,0,0,4,1
-27,5,2,3,1,61,1,1,3,12,6,12,22,0,0,4,1
-34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
-12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
-16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
-12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
-27,2,2,3,1,25,2,1,0,12,10,14,38,0,0,4,1
-20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
-12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
-24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
-18,1,2,2,1,39,2,2,0,7,5,14,0,0,0,4,1
-25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
-17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
-19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
-7,5,3,3,1,31,1,1,0,8,3,10,0,0,0,4,1
-10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
-31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
-19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
-33,1,2,2,1,63,2,1,3,5,8,15,0,0,0,4,1
-24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
-32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
-23,1,0,1,1,61,1,2,0,6,5,15,38,0,0,4,1
-7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
-24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
-6,9,3,2,1,67,2,1,3,26,8,6,11,0,0,4,0
-20,8,3,2,1,56,2,1,3,26,8,13,11,0,0,4,0
-51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
+24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
+30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
 15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
-28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
-16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
-13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
-22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
-38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
-9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
-30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
-21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
-30,1,2,2,1,20,2,1,3,5,8,13,0,0,0,4,1
-41,5,2,3,1,36,1,2,0,6,5,14,22,0,0,4,1
+41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
+16,10,2,2,1,10,1,1,0,17,1,4,1,0,0,4,1
+37,5,2,3,1,56,1,1,0,3,1,15,1,0,0,4,1
+25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
 11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
-33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
-20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
-23,1,3,2,2,11,2,2,0,28,5,11,0,0,0,4,1
-21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
-16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
-18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
-12,11,3,3,1,37,1,1,0,2,3,11,22,0,0,4,1
-26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
-15,1,3,1,1,15,2,1,3,21,8,1,11,0,0,4,1
-28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
-34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
-14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
-17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
-37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
-39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
-5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
-11,0,0,3,2,9,1,2,0,30,5,9,22,0,0,4,1
-7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
-16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
-55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
-14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
-19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
-37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
-12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
-15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
-11,8,3,2,1,67,1,2,3,22,5,11,22,0,0,4,1
-14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
-12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
-19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
-28,10,2,2,1,55,2,1,3,7,6,13,11,0,0,4,1
-20,1,0,2,1,23,2,1,0,20,5,1,33,0,0,4,1
-14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
+28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
+31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
+49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
 30,2,2,3,2,4,1,1,0,24,5,13,33,0,0,4,1
-23,2,2,1,1,44,2,1,0,13,10,11,11,0,0,4,1
-24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
-16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
-24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
-19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
-37,10,2,2,2,4,1,1,0,11,3,13,0,0,0,4,1
-9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
-9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
+35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
+12,8,3,2,2,4,2,1,0,9,5,10,0,0,0,4,1
+15,10,3,3,1,17,2,1,0,9,5,1,22,0,0,4,1
+18,5,2,3,1,9,2,1,2,15,11,4,0,49,24,0,1
+30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
+9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
+33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
+13,7,2,3,1,70,1,1,0,14,1,11,11,0,0,4,1
+14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
+13,11,3,1,1,20,1,1,0,23,4,13,11,110,1,1,1
+38,1,3,2,1,61,1,2,0,29,5,14,22,0,0,4,1
+35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
+33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
 34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
-10,7,3,2,1,56,2,1,0,30,3,12,33,0,0,4,1
-29,0,2,2,1,35,2,1,0,14,5,3,11,0,0,4,1
-11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
-14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
-17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
-32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
-22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
-22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
-7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
-42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
-20,10,0,3,1,23,1,1,3,30,6,15,11,0,0,4,1
-15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
-22,1,2,2,1,9,2,1,3,30,8,5,11,0,0,4,1
-30,1,2,1,1,63,1,2,0,2,1,9,38,0,0,4,1
-27,1,2,1,1,9,2,1,3,3,8,10,38,0,0,4,1
-30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
-36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
-36,10,2,3,1,32,1,1,3,26,8,8,33,0,0,4,0
-35,3,2,1,1,10,1,2,3,26,6,12,0,0,0,4,1
-21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
-19,5,3,3,1,58,2,1,3,26,8,4,0,0,0,4,0
-12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
-15,11,2,2,1,1,1,1,0,23,5,10,22,0,0,4,1
-21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
-13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
-37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
+27,0,2,2,1,18,2,1,3,15,8,15,22,0,0,4,1
+14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
+18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
+18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
+22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
+39,10,0,2,1,37,1,1,0,5,1,13,11,0,0,4,1
+26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
+15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
+19,5,3,3,1,49,2,1,0,4,1,15,43,0,0,4,1
+18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
+33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
+9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
+17,1,3,2,1,14,2,2,3,26,8,6,0,0,0,4,0
+34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
+23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
+32,10,2,2,1,47,2,1,3,26,6,10,38,0,0,4,1
+12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
+16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
+12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
+16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
+26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
+30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
+22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
+24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
+25,1,3,2,1,64,2,1,3,12,6,11,11,0,0,4,1
+20,10,2,2,1,28,2,1,3,23,8,13,22,0,0,4,1
+33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
+13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
+19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
+21,10,3,3,1,50,2,1,3,26,8,6,0,0,0,4,0
+21,8,3,4,1,32,2,1,3,26,8,9,0,0,0,4,0
+15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
+12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
+17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
+35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
+17,5,0,3,1,9,2,1,2,21,11,5,0,0,0,4,1
+23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
+7,1,2,2,1,9,1,2,0,29,5,10,22,0,0,4,1
+40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
+14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
+27,10,2,3,1,43,2,1,3,10,6,14,22,0,0,4,1
+12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
+13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
+26,1,2,2,1,57,2,1,3,26,8,10,0,0,0,4,0
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
 24,8,2,2,1,17,2,1,0,11,7,13,33,0,0,4,1
-23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
+22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
+10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
+7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
 31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
-13,5,0,3,1,43,1,1,0,1,3,3,43,0,0,4,1
-13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
-12,0,3,2,1,38,2,1,0,25,3,1,11,0,0,4,1
-15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
+10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
+29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
+17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
+56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
 12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
-23,8,0,2,1,67,2,1,0,11,3,15,0,0,0,4,1
-31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
-15,5,2,3,1,22,1,1,0,3,3,9,0,0,0,4,1
-21,10,3,3,1,50,2,1,3,26,8,6,0,0,0,4,0
-25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
-41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
-10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
-12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
-7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
-31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
-11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
-15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
+53,6,2,1,1,50,1,1,0,7,3,15,38,0,0,4,1
+41,5,2,2,1,16,1,1,3,30,6,9,22,0,0,4,1
+12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
+21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
+21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
+20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
+22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
+31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
+23,2,2,1,1,44,2,1,0,13,10,11,11,0,0,4,1
+15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
+25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
+41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
+72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
+34,5,3,3,1,67,1,1,0,18,1,2,43,0,0,4,1
+18,2,0,3,1,65,1,2,0,28,5,13,22,0,0,4,1
+22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
 22,1,2,2,1,9,2,2,3,12,6,0,38,0,0,4,1
-21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
-18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
-8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
-8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
-17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
-12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
-19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
-26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
-9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
-30,5,2,3,1,23,2,1,0,18,3,7,0,0,0,4,1
-10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
-33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
+14,8,3,2,1,2,2,1,3,13,8,12,22,0,0,4,1
+19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
+11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
+20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
+13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
+15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
+29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
+22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
+33,1,2,2,1,32,2,1,3,26,8,13,0,0,0,4,0
+18,5,2,3,1,16,1,1,3,10,6,6,0,0,0,4,1
+33,11,0,3,1,9,1,1,0,24,5,11,11,0,0,4,1
+27,0,0,3,1,19,1,1,0,20,5,9,33,0,0,4,1
+8,5,3,3,1,9,2,1,3,23,8,7,11,0,0,4,1
+31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
+14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
+34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
+12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
+17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
+12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
+9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
+10,8,3,2,1,53,2,1,3,27,8,3,22,0,0,4,1
+14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
+25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
 28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
-29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
-12,7,2,3,1,22,1,1,3,8,11,7,0,0,0,4,1
-27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
-41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
-14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
-19,10,2,3,1,15,2,1,0,4,3,13,0,0,0,4,1
-7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
-34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
-35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
-17,2,3,3,1,18,2,1,0,9,5,14,11,0,0,4,1
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
-6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
-40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
-18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
-33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
-33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
-29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-22,2,0,2,1,37,2,1,0,9,5,12,22,0,0,4,1
-21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
-26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
+10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
+34,1,2,2,1,63,1,2,2,12,10,14,22,0,0,4,1
+12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
+39,6,2,2,1,27,2,1,3,26,8,7,11,0,0,4,0
+16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
+13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
+17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
+26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
+18,10,2,2,1,31,1,1,0,20,1,15,33,0,0,4,1
+20,1,0,2,1,23,2,1,0,20,5,1,33,0,0,4,1
 23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
-42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
+26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
+13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
+10,8,2,2,1,53,2,2,0,29,5,6,11,0,0,4,1
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
 15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
-13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
-25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
-15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
-14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
-28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
-12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
-16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
-7,10,3,2,1,10,1,2,0,29,5,11,11,0,0,4,1
-19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
-40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
-20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
-31,0,0,2,1,21,2,2,3,29,8,10,0,0,0,4,1
-40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
-14,10,0,3,1,54,1,1,0,14,1,12,11,0,0,4,1
-33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
-23,8,2,2,1,9,2,1,3,26,8,1,11,0,0,4,0
-8,5,3,3,1,9,2,1,3,23,8,7,11,0,0,4,1
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
-39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
-41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
-21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
-29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
-18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
-33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
-14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
-29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
-18,7,3,3,1,14,1,1,0,24,5,14,22,0,0,4,1
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
-10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
-42,6,0,2,1,27,2,1,3,26,8,7,0,0,0,4,0
-15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
-17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
-23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
-23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
-17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
-31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
-23,8,2,4,2,9,1,2,0,23,5,2,33,0,0,4,1
-15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
-14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
-16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
-21,1,2,1,1,13,1,1,0,22,3,15,0,0,0,4,1
-18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
-7,1,2,2,1,7,2,1,3,26,8,9,0,0,0,4,0
-17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
-16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
-14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
-16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
-35,10,0,1,1,18,2,1,3,5,8,10,0,0,0,4,1
-37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
-31,8,2,2,1,15,1,1,0,5,1,14,5,0,0,4,1
-8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
-39,5,2,3,1,9,2,2,3,12,6,5,0,0,0,4,1
-35,1,2,1,1,64,2,1,0,22,3,4,11,0,0,4,1
-39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
-8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
-12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
-25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
-12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
-13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
-13,11,3,1,1,46,1,1,0,25,3,13,0,0,0,4,1
+12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
+7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
+27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
+16,8,3,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
+4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
+37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+39,6,0,3,1,64,1,1,0,27,1,3,33,0,0,4,1
+14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
+14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
+32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
+31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
+28,1,2,1,1,68,1,1,0,27,1,16,0,0,0,4,1
+28,10,2,2,1,41,1,2,0,19,3,2,0,0,0,4,1
+25,1,2,2,1,23,1,2,0,7,5,0,2,0,0,4,1
+41,0,2,2,1,9,2,1,0,1,5,16,0,0,0,4,1
+15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
+27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
+31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
+43,5,2,2,1,71,1,1,0,9,1,16,43,0,0,4,1
+22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
+10,7,3,2,1,56,2,1,0,30,3,12,33,0,0,4,1
+37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
+22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
+17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
+20,5,2,3,1,59,1,1,0,22,3,7,0,0,0,4,1
+28,10,3,2,1,68,1,1,0,10,10,14,22,0,0,4,1
+15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
+34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
+20,2,2,3,1,9,1,1,0,15,5,11,11,0,0,4,1
+16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
 28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
-10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
-35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
-27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
-34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
-57,6,2,1,1,42,1,1,0,8,3,9,2,0,0,4,1
+12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
+38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
+14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
+35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
+21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
 41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
-36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
-30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
+9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
+16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
+17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
+28,10,2,2,1,55,2,1,3,7,6,13,11,0,0,4,1
+27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
+42,1,2,4,1,10,2,1,3,26,8,7,0,0,0,4,0
+8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
+19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
+25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
+17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
+9,9,2,2,1,13,2,1,0,7,5,13,11,0,0,4,1
+22,8,3,2,1,19,2,1,0,12,10,9,0,0,0,4,1
+19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
+35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
+18,1,2,2,1,39,2,2,0,7,5,14,0,0,0,4,1
+10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
+36,5,2,2,1,12,2,1,0,17,5,3,22,0,0,4,1
+30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
+24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
+28,5,3,3,1,9,1,1,0,14,1,12,11,0,0,4,1
+18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
+41,6,2,1,1,20,2,2,0,26,1,14,0,0,0,4,1
+36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
+38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
+22,1,2,2,1,9,2,1,3,30,8,5,11,0,0,4,1
+28,7,2,3,1,30,1,1,0,10,10,1,0,3,30,0,1
+15,10,2,3,1,62,1,1,0,12,10,13,0,3,2,1,1
+12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
+28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
+18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
+33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
+11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
+28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
+39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
+17,10,3,3,1,54,1,1,0,13,10,15,11,0,0,4,1
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
+32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
+29,0,0,2,1,28,1,1,0,20,1,1,33,0,0,4,1
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
+31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
 19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
+15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+15,5,2,3,1,22,1,1,0,3,3,9,0,0,0,4,1
+28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
+41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
+21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
+35,0,0,4,1,32,1,1,0,2,5,3,11,0,0,4,1
+10,10,3,2,1,16,1,1,0,19,3,13,0,0,0,4,1
+18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
+18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
+24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
+37,10,0,2,2,45,1,1,0,20,4,1,0,0,0,4,1
+37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
+11,8,3,2,1,67,1,2,3,22,5,11,22,0,0,4,1
+10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
+13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
+18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
+34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
+25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
+24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
+26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
+12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
+10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
 26,8,0,2,1,53,2,2,3,19,8,8,11,0,0,4,1
-24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
+8,1,3,2,1,67,2,1,3,30,8,12,0,0,0,4,1
+25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
+22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
+7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
+29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
+25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
+17,1,3,2,1,45,2,1,3,30,8,12,33,0,0,4,1
+28,0,2,2,1,14,1,1,3,9,6,3,0,0,0,4,1
+20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
+8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
+21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
+21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
+38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
+38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
+42,6,0,2,1,27,2,1,3,26,8,7,0,0,0,4,0
+44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
+27,1,2,1,1,9,2,1,3,3,8,10,38,0,0,4,1
+17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
+37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
+17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
+22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
+15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
+23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
+29,0,2,2,1,35,2,1,0,14,5,3,11,0,0,4,1
+31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
+9,12,3,2,1,13,1,1,2,18,3,7,0,4,1,0,1
+30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
+23,1,2,2,1,55,2,1,0,1,5,11,0,0,0,4,1
+11,7,3,3,1,14,2,1,3,23,8,4,11,0,0,4,1
+14,0,0,2,1,3,1,2,3,19,6,14,11,0,0,4,1
+28,5,3,3,1,35,2,1,3,23,8,16,11,0,0,4,1
+39,8,2,2,1,20,2,1,3,26,8,5,0,0,0,4,0
+41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
+38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
+29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
+30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
+15,5,3,3,1,63,1,1,0,19,1,10,46,0,0,4,1
+19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
+8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
+10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
+34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
+34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
+20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
+42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
+13,5,0,3,1,43,1,1,0,1,3,3,43,0,0,4,1
+40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+46,6,2,1,1,48,1,1,0,27,3,10,0,0,0,4,1
+31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
+32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
+18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
+18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
+14,8,3,2,1,65,2,1,3,6,8,12,22,0,0,4,1
+23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
+20,8,3,2,1,56,2,1,3,26,8,13,11,0,0,4,0
+41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
+10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
+30,5,2,3,1,25,2,1,3,4,8,12,11,0,0,4,1
+17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
+12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
+16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
+30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
+8,5,3,3,1,62,2,1,3,20,8,5,11,0,0,4,1
+20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
+37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
+21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
+24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
+27,10,3,3,1,9,1,1,0,9,1,13,33,0,0,4,1
+22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
+37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
+41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
+34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
+21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
 30,0,2,1,1,42,2,2,2,24,5,0,47,0,0,4,1
-22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
-29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
-10,0,3,4,1,34,1,1,0,29,5,12,0,0,0,4,1
+25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
+20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
+20,0,0,2,1,24,2,1,0,26,3,1,22,167,12,3,1
+16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
+28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
+32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
+10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
+12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
+12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
+14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
+35,11,2,4,1,15,1,1,3,26,8,9,22,0,0,4,0
+18,0,2,3,1,27,2,1,3,26,8,4,11,0,0,4,0
+34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
+25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
+26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
+17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
+42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
+36,8,2,2,1,27,2,1,3,26,8,10,11,0,0,4,0
+20,10,0,3,1,23,1,1,3,30,6,15,11,0,0,4,1
+14,5,3,3,1,24,1,1,0,17,1,10,38,0,0,4,1
+33,7,2,3,1,55,2,2,0,24,5,11,33,0,0,4,1
+19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
+13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
+31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
+18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
+13,11,3,1,1,46,1,1,0,25,3,13,0,0,0,4,1
+10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
+27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
+27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
+16,8,2,2,1,2,2,2,3,26,8,13,0,0,0,4,0
+28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
+51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
+18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
+17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
+10,0,3,4,1,30,2,1,0,9,5,9,11,0,0,4,1
+18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
+16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
+39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
+21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
 26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
-42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
-40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
-24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
-36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
-32,11,2,1,1,63,1,1,3,26,6,10,0,0,0,4,1
-17,6,3,1,1,48,1,1,3,26,8,4,0,0,0,4,0
-12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
-8,1,2,2,1,0,2,2,0,8,5,2,22,0,0,4,1
-28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
-29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
-25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
-15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
-33,7,2,2,1,70,2,1,0,15,5,3,33,0,0,4,1
-17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
-16,10,2,2,1,10,1,1,0,17,1,4,1,0,0,4,1
-38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
-38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
-18,7,2,3,1,24,1,1,3,26,8,6,11,0,0,4,0
-24,0,2,2,1,10,1,1,3,2,6,2,33,0,0,4,1
+35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
+5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
+4,9,3,2,1,9,1,1,0,27,3,7,43,0,0,4,1
+25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
+26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
+25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
+21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
+23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
+8,0,3,2,1,32,1,1,0,30,3,6,0,0,0,4,1
+16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
+33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
+33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
+36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
+44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
+19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
+11,1,2,2,1,66,2,2,0,1,5,12,0,0,0,4,1
+14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
+8,8,3,2,1,18,1,1,2,15,11,5,0,0,0,4,1
+10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
+13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
+17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
diff --git a/DATA/Datasets/Bank/LR/DO_13.data b/DATA/Datasets/Bank/LR/DO_13.data
index 07aa06b9..e0d8f3f0 100644
--- a/DATA/Datasets/Bank/LR/DO_13.data
+++ b/DATA/Datasets/Bank/LR/DO_13.data
@@ -1,1300 +1,1300 @@
-15,1,3,1,1,15,2,1,3,21,8,1,11,0,0,4,1
-16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
-14,8,3,2,1,65,2,1,3,6,8,12,22,0,0,4,1
-33,2,2,4,1,58,2,1,3,20,8,11,47,0,0,4,1
-16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
-23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
-36,8,2,2,1,27,2,1,3,26,8,10,11,0,0,4,0
-42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
-35,3,2,1,1,10,1,2,3,26,6,12,0,0,0,4,1
-15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
-12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
-17,6,3,1,1,48,1,1,3,26,8,4,0,0,0,4,0
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
-21,1,2,1,1,13,1,1,0,22,3,15,0,0,0,4,1
-10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
-42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
-23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
-22,2,0,2,1,37,2,1,0,9,5,12,22,0,0,4,1
-26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
-21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
-18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
-12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
-36,10,3,3,1,50,2,1,0,9,5,12,22,0,0,4,1
-28,7,2,3,1,30,1,1,0,10,10,1,0,3,30,0,1
-14,10,0,3,1,54,1,1,0,14,1,12,11,0,0,4,1
-15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
-32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
-39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
+31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
+10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
+17,5,2,3,1,22,1,1,0,24,5,9,33,0,0,4,1
+36,5,2,2,1,12,2,1,0,17,5,3,22,0,0,4,1
+21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
+19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
+8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
+9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
+13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
+24,1,3,1,1,20,2,1,0,17,5,11,46,0,0,4,1
+38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
+29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
+28,10,3,2,1,68,1,1,0,10,10,14,22,0,0,4,1
+19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
+40,2,2,3,1,65,2,1,2,30,5,16,0,0,0,4,1
+18,7,2,2,1,14,2,1,3,27,6,4,47,0,0,4,1
+15,5,2,3,1,20,1,1,0,27,3,6,11,0,0,4,1
+36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
+35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
+40,2,2,3,1,68,1,1,3,26,6,2,11,0,0,4,1
+33,7,2,2,1,70,2,1,0,15,5,3,33,0,0,4,1
+5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+23,0,3,2,1,67,1,2,3,2,6,11,33,0,0,4,1
+21,8,2,3,1,18,1,1,0,30,3,15,22,0,0,4,1
+35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
 39,10,0,2,1,37,1,1,0,5,1,13,11,0,0,4,1
-18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
-14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
-13,10,3,3,1,35,1,1,3,29,10,5,0,0,0,4,1
-25,1,3,2,1,64,2,1,3,12,6,11,11,0,0,4,1
-19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
-19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
+23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
+10,10,3,2,1,16,1,1,0,19,3,13,0,0,0,4,1
+32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
+11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
+7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
+18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
+42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
+13,7,3,3,1,18,2,1,3,7,8,12,0,0,0,4,1
+12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
+20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
+15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
+38,1,2,2,1,14,1,1,3,2,6,15,0,0,0,4,1
+23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
+22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
+26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
+13,10,3,3,1,12,1,1,0,26,3,12,0,74,12,0,1
+10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
+18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
+16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
+13,5,2,3,1,66,1,1,0,12,1,13,5,0,0,4,1
 27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
-18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
-13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
-28,10,2,2,1,41,1,2,0,19,3,2,0,0,0,4,1
-11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
-28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
-10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
-35,0,0,4,1,32,1,1,0,2,5,3,11,0,0,4,1
-32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
-14,7,2,3,1,17,1,1,0,27,1,3,33,0,0,4,1
-35,11,2,4,1,15,1,1,3,26,8,9,22,0,0,4,0
-39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
-7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
-22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
-15,5,2,3,1,24,1,1,0,4,1,2,11,0,0,4,1
-24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
-7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
-18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
-11,10,3,3,1,29,1,1,0,11,3,3,0,0,0,4,1
-28,10,2,2,1,16,1,1,0,9,1,11,38,0,0,4,1
-10,1,3,2,1,65,2,1,3,30,8,13,0,0,0,4,1
-30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
-42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
-14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
-8,1,3,2,1,67,2,1,3,30,8,12,0,0,0,4,1
-17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
+29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
+23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
+36,10,2,3,1,32,1,1,3,26,8,8,33,0,0,4,0
+35,1,2,1,1,56,1,1,0,20,1,7,43,0,0,4,1
+15,5,3,3,1,63,1,1,0,19,1,10,46,0,0,4,1
+23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
+22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
+40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
+28,0,2,2,1,14,1,1,3,9,6,3,0,0,0,4,1
+37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
+21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
+41,8,2,2,1,2,2,1,3,18,8,13,22,0,0,4,1
+16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
+32,10,2,1,1,17,1,1,3,26,8,1,11,0,0,4,0
+9,0,2,3,1,63,1,1,0,1,3,5,0,0,0,4,1
+42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
+7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
+25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
+22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
+38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
+8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
+29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
+29,5,2,2,1,35,1,1,3,8,6,11,0,0,0,4,1
+36,5,2,3,1,9,1,1,3,26,8,2,11,0,0,4,0
+11,5,2,3,1,18,2,1,0,25,3,14,11,0,0,4,1
+33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
+17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
+29,1,2,1,1,1,2,1,3,26,8,6,0,0,0,4,0
+22,7,3,3,1,20,1,1,2,20,5,0,45,0,0,4,1
+15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
+7,10,3,2,1,51,1,1,0,16,5,13,0,0,0,4,1
+31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
+15,1,3,3,1,62,1,1,0,30,3,3,0,546,1,3,1
+25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
+25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
+24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
+13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
+21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
+16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
+33,7,2,3,1,55,2,2,0,24,5,11,33,0,0,4,1
 17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
-20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
-36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
-37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
-16,7,2,3,1,9,1,1,0,20,1,13,2,0,0,4,1
-35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
-37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-25,1,2,2,1,23,1,2,0,7,5,0,2,0,0,4,1
-8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
-28,1,2,2,1,49,1,2,0,9,1,12,43,0,0,4,1
-42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
-17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
 11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
-31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
-34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
-38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
-17,5,0,3,1,9,2,1,2,21,11,5,0,0,0,4,1
-40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
-20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
-22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
-31,8,2,2,1,44,1,1,2,24,5,0,33,0,0,4,1
-34,5,2,3,1,9,2,1,0,25,3,10,0,0,0,4,1
-33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
-41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
-40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
-26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
-35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
-9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
-8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
-30,5,2,3,1,23,2,1,0,18,3,7,0,0,0,4,1
-23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
-41,5,0,3,1,32,2,1,2,21,11,7,0,0,0,4,1
-25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+7,10,3,2,1,10,1,2,0,29,5,11,11,0,0,4,1
+19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
+13,1,3,2,1,63,1,1,0,28,5,13,11,0,0,4,1
+28,8,2,2,1,36,1,1,0,13,10,15,0,0,0,4,1
+16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
+18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
+19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
+33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
+26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
+37,8,0,2,2,9,2,1,3,26,8,6,0,0,0,4,0
+26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
+10,0,3,4,1,30,2,1,0,9,5,9,11,0,0,4,1
+11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
+22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
+14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
+28,11,2,2,1,32,1,1,0,3,1,12,11,0,0,4,1
+26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
+17,2,3,3,1,18,2,1,0,9,5,14,11,0,0,4,1
+16,8,3,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
+17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
+14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
+20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
+30,0,2,1,1,42,2,2,2,24,5,0,47,0,0,4,1
+31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
+12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
+23,8,0,2,1,67,2,1,0,11,3,15,0,0,0,4,1
+15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
+18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
+40,6,2,1,1,14,1,1,0,9,1,6,11,0,0,4,1
+12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
+14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
+40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
 17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
-12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
-31,5,2,3,1,9,1,1,2,8,11,7,0,0,0,4,1
-27,10,3,3,1,9,1,1,0,9,1,13,33,0,0,4,1
-16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
-17,1,2,4,1,51,2,1,3,12,8,14,11,0,0,4,1
-31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
-29,1,2,4,2,20,1,1,0,17,1,9,22,0,0,4,1
+16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
+42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
+7,9,3,2,1,30,1,1,0,26,3,7,45,0,0,4,1
+17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
 35,10,0,1,1,18,2,1,3,5,8,10,0,0,0,4,1
-42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
-17,1,3,2,1,14,2,2,3,26,8,6,0,0,0,4,0
-30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
-19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
-29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
-43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
-22,5,2,2,1,48,1,1,0,3,1,9,22,0,0,4,1
-14,8,3,2,1,57,2,1,0,12,10,4,11,0,0,4,1
-28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
-9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
-13,10,2,2,2,4,2,1,0,9,5,10,11,0,0,4,1
-13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
-28,10,3,2,1,68,1,1,0,10,10,14,22,0,0,4,1
-41,6,0,2,1,53,1,1,0,22,3,7,0,0,0,4,1
-18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
-21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
-36,8,2,4,1,44,1,2,3,12,6,14,0,0,0,4,1
-18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
-33,5,2,2,1,13,2,1,3,26,8,13,0,0,0,4,0
-30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
-26,11,2,2,1,9,2,1,0,11,3,12,0,190,1,0,1
-20,5,2,3,1,44,2,1,2,20,11,5,0,0,0,4,1
-14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
-27,1,2,1,1,9,2,1,3,3,8,10,38,0,0,4,1
-22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
-37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
-40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
-31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
-67,6,0,1,1,65,1,1,0,9,3,9,22,0,0,4,1
-6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
-13,7,3,3,1,18,2,1,3,7,8,12,0,0,0,4,1
-26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
-17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
-8,2,3,3,1,63,1,1,0,26,3,6,11,98,23,1,1
-29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
-28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
-24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
-22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
-41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
-38,1,3,2,1,61,1,2,0,29,5,14,22,0,0,4,1
-12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
-32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
-6,10,3,2,1,46,2,1,3,7,8,15,0,0,0,4,1
-16,10,2,2,1,10,1,1,0,17,1,4,1,0,0,4,1
-15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
-31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
-19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
-35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
-16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
-12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
-18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
-16,1,2,2,1,23,1,1,0,27,1,15,11,0,0,4,1
-13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
-20,0,0,2,1,24,2,1,0,26,3,1,22,167,12,3,1
-29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
-34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
-10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
-34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
-26,8,2,2,1,16,2,2,3,26,8,7,0,0,0,4,0
-14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
-34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
-16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
-15,11,2,2,1,1,1,1,0,23,5,10,22,0,0,4,1
-30,2,2,3,2,4,1,1,0,24,5,13,33,0,0,4,1
-29,11,2,1,1,39,1,1,0,13,10,10,11,0,0,4,1
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
-15,10,2,3,1,62,1,1,0,12,10,13,0,3,2,1,1
-23,1,2,2,1,55,2,1,0,1,5,11,0,0,0,4,1
-25,7,0,2,1,41,1,1,0,10,10,4,22,0,0,4,1
-28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
-34,5,2,3,1,14,1,1,0,14,1,1,33,0,0,4,1
-10,0,3,4,1,30,2,1,0,9,5,9,11,0,0,4,1
-13,10,3,3,1,12,1,1,0,26,3,12,0,74,12,0,1
-42,1,2,4,1,10,2,1,3,26,8,7,0,0,0,4,0
-16,0,2,2,1,19,1,1,0,26,3,12,11,0,0,4,1
-41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
-8,1,3,1,1,46,2,1,0,13,5,11,11,0,0,4,1
-39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
+14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
+41,1,0,1,1,15,1,2,0,28,5,14,0,0,0,4,1
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
+11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
+30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
+10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
+15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
+34,1,2,2,1,63,1,2,2,12,10,14,22,0,0,4,1
+24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
+8,11,3,2,1,12,1,1,0,30,5,11,0,0,0,4,1
+18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
+26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
+21,11,3,2,1,1,2,1,0,22,3,9,0,0,0,4,1
+15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
+14,5,2,3,1,9,2,1,3,26,8,6,0,0,0,4,0
+31,8,2,2,1,44,1,1,2,24,5,0,33,0,0,4,1
+27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
+27,5,2,3,1,54,2,1,3,26,8,14,11,0,0,4,0
+30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
 22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
-30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
-19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
-53,6,2,1,1,50,1,1,0,7,3,15,38,0,0,4,1
-33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
-17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
-22,8,2,1,1,11,2,1,3,23,8,14,11,0,0,4,1
-17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
-31,0,0,2,1,21,2,2,3,29,8,10,0,0,0,4,1
-34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
-31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
-28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
-36,10,2,3,1,32,1,1,3,26,8,8,33,0,0,4,0
-32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
-16,8,3,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
-4,9,3,2,1,9,1,1,0,27,3,7,43,0,0,4,1
-32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
-27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
-23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
-9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
-13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
-41,6,2,4,1,10,1,1,3,2,6,2,0,0,0,4,1
-12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
-16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
-23,10,3,2,1,60,2,1,0,12,10,7,22,0,0,4,1
+33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
+37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
+16,7,2,3,1,9,1,1,0,20,1,13,2,0,0,4,1
+12,8,3,2,2,4,2,1,0,9,5,10,0,0,0,4,1
+24,0,2,2,1,10,1,1,3,2,6,2,33,0,0,4,1
 17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
-13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
-7,8,3,2,1,40,1,2,0,6,5,1,11,0,0,4,1
-43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+32,5,2,4,1,67,1,1,0,19,3,6,0,178,1,0,1
+10,1,3,2,1,65,2,1,3,30,8,13,0,0,0,4,1
+25,1,3,2,1,64,2,1,3,12,6,11,11,0,0,4,1
+7,5,3,3,1,31,1,1,0,8,3,10,0,0,0,4,1
+36,0,0,2,1,24,1,1,0,4,3,10,38,0,0,4,1
 23,8,2,2,1,9,2,1,3,26,8,1,11,0,0,4,0
-29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
-18,5,3,3,1,26,1,2,0,12,10,13,0,0,0,4,1
-20,10,3,3,1,11,1,1,3,8,6,1,22,0,0,4,1
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
-12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
-19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
-33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
-19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
-25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
-42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
-30,11,3,3,1,39,1,1,3,7,6,1,0,0,0,4,1
-41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
-23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
-11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
-36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
-15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
-24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
-33,11,0,3,1,9,1,1,0,24,5,11,11,0,0,4,1
-32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
-17,1,3,2,1,45,2,1,3,30,8,12,33,0,0,4,1
-18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
-14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
-31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
-19,8,2,2,1,19,2,1,0,7,3,4,11,0,0,4,1
+34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
+41,6,3,2,1,37,2,1,3,26,8,10,0,0,0,4,0
+33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
+16,5,3,3,1,33,2,1,0,13,10,12,43,0,0,4,1
+14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
+33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
+4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
 34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
-20,2,2,3,1,9,1,1,0,15,5,11,11,0,0,4,1
-8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
-8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
-29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
-18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
-22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
-39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
-40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
-36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
+18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
+28,5,3,3,1,9,1,1,0,14,1,12,11,0,0,4,1
+12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
+39,11,2,3,1,47,1,1,3,26,8,10,0,0,0,4,0
+39,6,0,3,1,64,1,1,0,27,1,3,33,0,0,4,1
+30,2,2,3,2,4,1,1,0,24,5,13,33,0,0,4,1
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
+14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
+30,11,2,2,1,36,2,1,3,26,8,7,0,0,0,4,0
+28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
+12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
+14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
+13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
+8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
+26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+4,9,3,2,1,9,1,1,0,27,3,7,43,0,0,4,1
+34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
+35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
+32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
+23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
 10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
-26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
-33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
-35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
-26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
-7,9,3,2,1,30,1,1,0,26,3,7,45,0,0,4,1
-25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
+41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
 34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
-22,0,2,1,1,63,2,2,0,13,10,14,0,0,0,4,1
-23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
+36,1,2,1,1,41,2,1,3,26,8,11,11,0,0,4,0
+16,1,2,2,1,31,2,1,3,15,8,15,0,0,0,4,1
+28,1,2,1,1,68,1,1,0,27,1,16,0,0,0,4,1
+10,0,3,2,1,7,1,2,3,18,6,8,11,0,0,4,1
+25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+39,10,2,3,1,9,1,1,3,5,8,14,11,0,0,4,1
+25,7,0,2,1,41,1,1,0,10,10,4,22,0,0,4,1
 26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-43,6,2,2,1,65,1,1,0,27,1,10,33,0,0,4,1
-8,0,3,2,1,32,1,1,0,30,3,6,0,0,0,4,1
-41,0,2,2,1,9,2,1,0,1,5,16,0,0,0,4,1
-35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
-21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
-23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
-34,3,2,1,1,44,2,1,0,8,5,2,0,0,0,4,1
-12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
-23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
-17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
-8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
-12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
-9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
-12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
-31,10,2,3,1,43,1,1,0,26,1,14,11,0,0,4,1
-33,3,0,2,1,70,1,1,0,9,5,12,33,0,0,4,1
-41,6,3,2,1,37,2,1,3,26,8,10,0,0,0,4,0
-16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
-15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
-28,10,2,2,1,13,2,1,0,13,10,5,11,0,0,4,1
-28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
-28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
-21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
-37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
-15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
-13,11,3,1,1,46,1,1,0,25,3,13,0,0,0,4,1
-30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
-17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
-39,5,2,3,1,70,1,2,3,12,6,1,11,0,0,4,1
-18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
-39,1,2,2,1,19,2,1,0,8,10,11,0,0,0,4,1
-34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
-30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
-23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
-34,1,2,2,1,63,1,2,2,12,10,14,22,0,0,4,1
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
-28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
-26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
-16,10,3,3,1,72,2,1,0,26,3,13,11,0,0,4,1
-35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
-8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
-40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
-21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
-13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
-35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
-32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
-11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
-14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
-5,8,3,2,1,61,2,1,3,20,8,2,0,0,0,4,1
-38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
-31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
-15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
-33,2,2,3,1,54,2,1,3,15,11,3,0,0,0,4,1
-15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
-10,0,3,4,1,34,1,1,0,29,5,12,0,0,0,4,1
-20,1,2,2,1,59,2,1,3,13,8,11,11,0,0,4,1
-20,1,0,2,1,23,2,1,0,20,5,1,33,0,0,4,1
-42,6,2,1,1,58,2,1,3,26,8,7,0,0,0,4,0
-15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
-15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
-36,5,2,2,1,46,1,1,3,26,8,4,0,0,0,4,0
-21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
-28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
-9,10,3,3,1,70,2,1,0,25,3,1,0,0,0,4,1
-13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
-14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
-27,5,2,3,1,54,2,1,3,26,8,14,11,0,0,4,0
-39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
-7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
-15,10,3,3,1,17,2,1,0,9,5,1,22,0,0,4,1
-13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
-21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
-14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-35,1,2,1,1,47,2,1,0,12,10,12,0,0,0,4,1
-13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-37,10,2,2,1,14,2,1,3,26,8,5,11,0,0,4,0
-13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
-16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
-22,7,3,3,1,20,1,1,2,20,5,0,45,0,0,4,1
-7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
-14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
-38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
-7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
-18,5,2,3,1,71,1,1,0,23,5,13,33,0,0,4,1
-16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
-22,1,2,2,1,53,1,1,0,1,3,5,11,552,1,3,1
-24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
-39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
-18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
-16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
-14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
-20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
-55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
-21,10,2,2,1,9,2,1,3,26,8,6,0,0,0,4,0
-39,10,0,3,1,71,1,1,0,13,1,15,33,0,0,4,1
-20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
-23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
-26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
-13,1,2,2,1,19,2,2,0,29,5,14,0,0,0,4,1
-13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
-36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
-12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
-43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
-17,2,0,2,1,7,2,1,3,26,8,8,0,0,0,4,0
-26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
-10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
-20,10,2,2,1,28,2,1,3,23,8,13,22,0,0,4,1
-35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
-37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-26,1,2,2,1,57,2,1,3,26,8,10,0,0,0,4,0
-24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
-37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
-37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
-37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
-17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
-18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
-32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
-7,10,3,2,1,14,2,1,0,19,3,9,38,0,0,4,1
+16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
+36,8,2,2,1,27,2,1,3,26,8,10,11,0,0,4,0
+8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
+9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
+22,1,2,1,1,22,2,1,3,7,8,2,22,0,0,4,1
 13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
-12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
-12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
-31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
-24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
-11,5,2,3,1,38,1,1,3,20,8,15,11,0,0,4,1
-41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
-20,5,2,3,1,22,2,1,0,1,5,10,0,0,0,4,1
-12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
-8,11,3,2,1,12,1,1,0,30,5,11,0,0,0,4,1
-33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
-28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
-13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
-19,11,3,2,1,44,2,1,3,29,8,16,11,0,0,4,1
-16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
-24,2,0,3,2,25,2,1,3,26,8,9,0,0,0,4,0
-31,2,0,4,2,7,2,1,0,23,5,16,11,0,0,4,1
-8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
-36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
-21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
-14,10,3,2,1,9,1,1,0,9,1,11,33,0,0,4,1
-17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
-17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
-21,9,3,3,1,27,1,1,0,11,3,11,0,0,0,4,1
-18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
-14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
-18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
-19,5,3,3,1,49,2,1,0,4,1,15,43,0,0,4,1
-16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
-18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
-21,10,3,3,1,50,2,1,3,26,8,6,0,0,0,4,0
-24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
-18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
-40,2,2,3,1,65,2,1,2,30,5,16,0,0,0,4,1
-18,10,3,2,1,33,2,2,3,26,8,8,0,0,0,4,0
-18,7,3,3,1,14,1,1,0,24,5,14,22,0,0,4,1
-18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
-9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
-11,8,3,2,1,67,1,2,3,22,5,11,22,0,0,4,1
-36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
-17,1,0,1,1,37,2,1,3,4,8,15,11,0,0,4,1
-41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
-17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
-15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
-41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
-36,0,0,2,1,24,1,1,0,4,3,10,38,0,0,4,1
-31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
-16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
-21,8,2,3,1,18,1,1,0,30,3,15,22,0,0,4,1
+8,5,3,3,1,62,2,1,3,20,8,5,11,0,0,4,1
 10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
-24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
-21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
-15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
-18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
-20,10,3,2,1,21,2,1,3,26,8,6,0,0,0,4,0
-21,0,2,2,1,15,2,2,0,25,3,3,11,0,0,4,1
-6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
-22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
-23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
-28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
-32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
-29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
-31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
-10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
-17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
+34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
+42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
+32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
+17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
+19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
+13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
+19,10,3,2,1,71,1,1,0,29,1,3,38,0,0,4,1
+17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
+33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
+11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
+35,3,2,1,1,10,1,2,3,26,6,12,0,0,0,4,1
 17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
-40,5,0,3,1,56,1,1,0,11,3,10,0,0,0,4,1
-24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
-20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
+17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+29,1,2,2,1,36,1,1,0,1,3,8,0,0,0,4,1
+9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
+20,0,3,2,1,39,1,1,3,26,6,14,11,0,0,4,1
+19,10,2,3,1,15,2,1,0,4,3,13,0,0,0,4,1
+10,7,3,2,1,56,2,1,0,30,3,12,33,0,0,4,1
+42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
+31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
+18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
+12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
+20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
+25,1,3,2,1,37,2,1,3,30,8,15,22,0,0,4,1
+39,1,2,4,1,42,1,1,2,5,10,5,0,0,0,4,1
+32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
+33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
+35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
+13,7,2,3,1,70,1,1,0,14,1,11,11,0,0,4,1
+15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
+28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
+9,5,3,1,2,15,1,1,0,23,4,10,22,0,0,4,1
 13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
-18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
-9,0,2,3,1,63,1,1,0,1,3,5,0,0,0,4,1
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
-11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
-20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
-28,3,2,1,1,71,1,1,3,26,8,6,0,0,0,4,0
-40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
-14,10,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
-8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
-28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
-15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
-23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
-17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
-33,7,2,2,1,70,2,1,0,15,5,3,33,0,0,4,1
-13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
-24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
-31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
-15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
-27,11,0,2,1,40,2,1,3,21,8,13,0,0,0,4,1
-24,8,2,2,1,65,1,1,0,20,4,16,0,0,0,4,1
-12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
-37,8,0,2,2,9,2,1,3,26,8,6,0,0,0,4,0
-37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
-17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
-19,10,3,2,1,71,1,1,0,29,1,3,38,0,0,4,1
-13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
-14,1,3,3,1,62,1,1,3,4,10,15,0,0,0,4,1
-35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
-9,9,2,2,1,13,2,1,0,7,5,13,11,0,0,4,1
-20,5,2,3,1,59,1,1,0,22,3,7,0,0,0,4,1
-10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
-28,5,3,3,1,35,2,1,3,23,8,16,11,0,0,4,1
-36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
-29,5,2,2,1,35,1,1,3,8,6,11,0,0,0,4,1
-21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
-38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
-33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
-41,5,2,3,1,36,1,2,0,6,5,14,22,0,0,4,1
-10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
-11,1,2,2,1,66,2,2,0,1,5,12,0,0,0,4,1
-19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
-53,6,2,2,1,35,1,1,0,8,3,6,0,0,0,4,1
-17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
-14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
-39,10,2,3,1,9,1,1,3,5,8,14,11,0,0,4,1
-23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
-25,6,2,2,1,68,1,1,2,23,11,3,0,0,0,4,1
-41,8,2,2,1,2,2,1,3,18,8,13,22,0,0,4,1
-38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
-24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
-31,5,2,2,1,31,1,1,2,27,10,7,0,0,0,4,1
-40,6,2,1,1,14,1,1,0,9,1,6,11,0,0,4,1
-35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
-21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
-14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
-17,5,0,3,1,44,2,1,3,29,8,1,0,0,0,4,1
-32,5,2,4,1,67,1,1,0,19,3,6,0,178,1,0,1
-14,8,2,1,1,29,2,1,0,13,5,0,43,0,0,4,1
-23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
-33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
-20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
+35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
+10,0,3,4,1,34,1,1,0,29,5,12,0,0,0,4,1
+19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
+30,1,2,2,1,17,2,1,3,5,8,12,11,0,0,4,1
+14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
+27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
+15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
+17,1,2,4,1,51,2,1,3,12,8,14,11,0,0,4,1
+14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
+18,5,2,3,1,9,2,1,2,15,11,4,0,49,24,0,1
+37,10,0,2,2,45,1,1,0,20,4,1,0,0,0,4,1
+28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
+20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
+32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
 13,0,2,2,1,37,2,1,3,30,8,11,0,0,0,4,1
-29,0,0,2,1,28,1,1,0,20,1,1,33,0,0,4,1
-27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
-35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
-24,8,2,2,1,17,2,1,0,11,7,13,33,0,0,4,1
+30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
+36,6,0,3,1,9,1,1,3,4,8,12,0,0,0,4,1
 14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
-40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
-22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
-42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
-30,11,2,2,1,46,2,1,3,26,8,6,11,0,0,4,0
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
-10,10,3,2,1,16,1,1,0,19,3,13,0,0,0,4,1
-11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
-33,1,2,2,1,63,2,1,3,5,8,15,0,0,0,4,1
-32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
-15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
-29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
-8,5,3,3,1,9,2,1,3,23,8,7,11,0,0,4,1
-31,8,2,2,1,67,1,1,0,29,1,13,33,0,0,4,1
-15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
-13,0,3,2,1,64,2,1,3,18,8,11,11,0,0,4,1
-56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
-18,5,2,3,1,16,1,1,3,10,6,6,0,0,0,4,1
-37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
-18,7,3,3,1,0,2,2,2,8,11,8,0,0,0,4,1
-31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
-38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
-36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
-46,6,2,1,1,48,1,1,0,27,3,10,0,0,0,4,1
-6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
-35,10,2,3,1,71,1,1,0,12,1,4,38,0,0,4,1
-24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
-13,7,2,3,1,70,1,1,0,14,1,11,11,0,0,4,1
-19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
-15,1,3,3,1,62,1,1,0,30,3,3,0,546,1,3,1
-18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
-32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
-29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
-25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
-11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
-31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
-40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
-15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
+31,0,0,2,1,21,2,2,3,29,8,10,0,0,0,4,1
+18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
+39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
+21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
+28,1,2,2,1,49,1,2,0,9,1,12,43,0,0,4,1
+13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
+35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
+36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
+15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
+27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
+12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
+16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
+39,10,2,2,1,64,1,1,2,20,11,4,0,0,0,4,1
+41,6,0,2,1,61,1,1,0,23,5,13,33,0,0,4,1
+12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
+26,1,2,2,1,18,2,1,3,26,8,7,11,0,0,4,0
+10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
+8,1,3,2,1,67,2,1,3,30,8,12,0,0,0,4,1
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
+34,5,2,3,1,9,2,1,0,25,3,10,0,0,0,4,1
+8,1,2,2,1,0,2,2,0,8,5,2,22,0,0,4,1
+39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
+19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
+30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
+32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
+37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
+31,2,0,4,2,7,2,1,0,23,5,16,11,0,0,4,1
+18,5,2,3,1,71,1,1,0,23,5,13,33,0,0,4,1
+12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
+36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
+11,8,3,2,1,67,1,2,3,22,5,11,22,0,0,4,1
+12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
+14,8,3,2,1,2,2,1,3,13,8,12,22,0,0,4,1
+14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
+11,0,0,3,2,9,1,2,0,30,5,9,22,0,0,4,1
+16,0,2,2,1,19,1,1,0,26,3,12,11,0,0,4,1
+36,8,2,4,1,44,1,2,3,12,6,14,0,0,0,4,1
 10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
-30,5,2,2,1,33,2,1,0,20,5,10,45,0,0,4,1
-31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
-21,1,3,2,1,9,1,1,0,14,5,14,33,0,0,4,1
-37,1,2,1,1,59,2,1,3,26,8,7,0,0,0,4,0
-32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
-35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
-28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
-21,10,2,2,1,46,2,1,0,9,3,4,11,181,1,1,1
-39,1,2,4,1,42,1,1,2,5,10,5,0,0,0,4,1
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
-23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
-12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
-26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
-23,10,2,3,1,61,2,1,0,10,10,14,0,0,0,4,1
-9,12,3,2,1,13,1,1,2,18,3,7,0,4,1,0,1
-39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
-28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
-15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
-44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
-22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
-20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
+14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
+18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
+18,1,2,2,1,39,2,2,0,7,5,14,0,0,0,4,1
+25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
+12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
+18,1,2,1,1,46,2,2,3,12,8,1,11,0,0,4,1
+13,7,3,3,1,23,1,1,2,30,3,5,0,0,0,4,1
+9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
+22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
+17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
+19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
+9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
+26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
+25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
+26,1,2,2,1,57,2,1,3,26,8,10,0,0,0,4,0
+26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
+33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
+15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
+21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
+16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
+9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
 37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
-16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
-14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
-20,8,3,2,1,56,2,1,3,26,8,13,11,0,0,4,0
-26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
-10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
-23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
-19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
-10,7,3,2,1,56,2,1,0,30,3,12,33,0,0,4,1
-37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
+35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
 35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
-35,6,2,2,1,39,2,1,3,26,8,7,11,0,0,4,0
-13,5,0,3,1,43,1,1,0,1,3,3,43,0,0,4,1
-17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
-40,2,2,3,1,68,1,1,3,26,6,2,11,0,0,4,1
-13,5,3,3,1,9,2,1,3,26,8,11,0,0,0,4,0
-17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
-15,5,2,3,1,17,2,1,3,10,1,10,0,0,0,4,1
-8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
-14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
-9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
-9,5,3,1,2,15,1,1,0,23,4,10,22,0,0,4,1
-29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
-23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
+21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
+29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
 20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
-36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
-20,10,0,3,1,23,1,1,3,30,6,15,11,0,0,4,1
-31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
-24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
-22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
-13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
-9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
-17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
-18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
-11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+13,5,0,3,1,43,1,1,0,1,3,3,43,0,0,4,1
+21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
+56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
+41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
+5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
+12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
+17,2,0,2,1,7,2,1,3,26,8,8,0,0,0,4,0
+15,10,3,3,1,17,2,1,0,9,5,1,22,0,0,4,1
+13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
+40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
+13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
+30,11,2,2,1,46,2,1,3,26,8,6,11,0,0,4,0
+72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
+25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
+15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
+32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
+14,5,0,3,1,28,1,2,0,6,5,14,33,0,0,4,1
+20,1,0,2,1,23,2,1,0,20,5,1,33,0,0,4,1
 15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
-38,10,0,2,1,23,1,1,0,9,5,11,0,0,0,4,1
-18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
-12,0,0,2,1,43,2,1,3,25,6,10,6,0,0,4,1
-10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
-27,2,2,3,1,25,2,1,0,12,10,14,38,0,0,4,1
+40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
 7,1,2,2,1,9,1,2,0,29,5,10,22,0,0,4,1
-9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
-13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
-13,1,3,2,1,63,1,1,0,28,5,13,11,0,0,4,1
-33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
-19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
-18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
-17,2,3,3,1,18,2,1,0,9,5,14,11,0,0,4,1
-21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
-7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
-22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
-19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
-18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
-36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
+40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
+14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
+20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
+36,5,2,2,1,46,1,1,3,26,8,4,0,0,0,4,0
+9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
+38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
 17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
-13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
-15,5,2,3,1,22,1,1,0,3,3,9,0,0,0,4,1
-18,1,2,2,1,39,2,2,0,7,5,14,0,0,0,4,1
-39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
-27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
-18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
-19,8,2,2,1,25,2,1,2,26,10,7,0,0,0,4,1
-14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
-41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
-13,11,3,1,1,20,1,1,0,23,4,13,11,110,1,1,1
-19,3,2,2,1,64,1,2,0,26,3,12,22,0,0,4,1
-23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
-41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
-24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
-13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
-29,0,2,2,1,35,2,1,0,14,5,3,11,0,0,4,1
-16,1,2,2,1,31,2,1,3,15,8,15,0,0,0,4,1
-23,8,0,2,1,67,2,1,0,11,3,15,0,0,0,4,1
-29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
-40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
-34,5,3,3,1,67,1,1,0,18,1,2,43,0,0,4,1
-13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
-22,8,3,2,1,19,2,1,0,12,10,9,0,0,0,4,1
+11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
+23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
+34,5,2,3,1,14,1,1,0,14,1,1,33,0,0,4,1
+35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
+13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
+27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
+9,12,3,2,1,13,1,1,2,18,3,7,0,4,1,0,1
+21,9,3,3,1,27,1,1,0,11,3,11,0,0,0,4,1
+37,3,2,1,1,27,1,1,3,10,6,15,11,0,0,4,1
+18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
+23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
+14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
+9,1,3,2,1,31,2,1,3,21,8,13,0,0,0,4,1
+30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
+17,1,3,2,1,45,2,1,3,30,8,12,33,0,0,4,1
+23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
+40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
+27,8,3,1,1,24,2,1,3,22,6,3,43,0,0,4,1
+13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
+8,0,3,2,1,32,1,1,0,30,3,6,0,0,0,4,1
+35,6,2,2,1,39,2,1,3,26,8,7,11,0,0,4,0
+17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
+23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
+22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
+34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
 23,1,3,2,2,4,1,2,0,12,10,10,0,0,0,4,1
-12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
-10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
-14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
-18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
-15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
-22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
-13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
-10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
-38,5,2,3,1,59,1,1,0,27,3,5,0,0,0,4,1
-14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
-14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
-4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
-41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
-20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
-17,5,2,3,1,68,2,1,3,11,6,7,22,0,0,4,1
-14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
-12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
-25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
-11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
-14,5,3,3,1,65,1,1,0,21,1,12,11,0,0,4,1
-12,0,3,2,1,38,2,1,0,25,3,1,11,0,0,4,1
-41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
-16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
-20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
-31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
-14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
-37,6,0,2,1,3,1,2,0,16,5,4,0,0,0,4,1
-23,1,0,2,1,54,2,1,3,5,8,4,22,0,0,4,1
-12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
-43,5,2,2,1,71,1,1,0,9,1,16,43,0,0,4,1
-28,1,2,1,1,68,1,1,0,27,1,16,0,0,0,4,1
-24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
-22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
-38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
-27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
-7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
+20,2,2,3,1,9,1,1,0,15,5,11,11,0,0,4,1
+18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
+33,10,2,2,1,27,1,1,0,28,5,11,11,0,0,4,1
+23,1,2,2,1,17,2,1,3,6,8,2,33,0,0,4,1
+12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
+8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
+42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
+31,5,2,3,1,9,1,1,2,8,11,7,0,0,0,4,1
+13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+29,11,2,1,1,39,1,1,0,13,10,10,11,0,0,4,1
+21,10,3,3,1,50,2,1,3,26,8,6,0,0,0,4,0
+16,10,3,3,1,72,2,1,0,26,3,13,11,0,0,4,1
+14,10,0,3,1,54,1,1,0,14,1,12,11,0,0,4,1
+10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
+35,5,0,2,1,9,1,2,2,14,2,2,0,0,0,4,1
+32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
+24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
 11,7,3,3,1,14,2,1,3,23,8,4,11,0,0,4,1
-16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
-12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
-16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
-9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
-12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
-22,10,3,3,1,21,2,1,0,11,3,7,0,157,12,0,1
-21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
-25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
-13,1,2,2,1,64,2,1,3,10,8,0,33,0,0,4,1
-34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
-12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
-10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
-7,5,3,3,1,31,1,1,0,8,3,10,0,0,0,4,1
-16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
-19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
-20,8,0,2,1,58,1,1,3,26,6,12,0,0,0,4,1
-19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
-13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
-19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
-13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
-20,1,2,2,1,20,1,1,3,7,6,3,47,0,0,4,1
-19,10,3,2,1,3,2,1,0,4,1,2,43,0,0,4,1
-27,0,0,3,1,19,1,1,0,20,5,9,33,0,0,4,1
-42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
-35,1,2,2,1,9,2,2,3,26,8,6,0,0,0,4,0
-49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
-25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
-15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
-30,1,2,1,1,63,1,2,0,2,1,9,38,0,0,4,1
-16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
-14,0,0,2,1,3,1,2,3,19,6,14,11,0,0,4,1
-20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
-24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
-21,5,2,3,1,44,2,2,3,26,8,3,11,0,0,4,0
-37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
-12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
-27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
-10,0,3,2,1,2,1,2,0,1,5,13,11,0,0,4,1
+24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
+14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
+29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
 34,3,2,2,1,45,2,1,3,5,8,15,22,0,0,4,1
+14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
+27,5,2,3,1,61,1,1,3,12,6,12,22,0,0,4,1
+13,10,3,3,1,35,1,1,3,29,10,5,0,0,0,4,1
+41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
+16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
+19,5,3,3,1,58,2,1,3,26,8,4,0,0,0,4,0
+24,8,2,2,1,65,1,1,0,20,4,16,0,0,0,4,1
+23,1,0,1,1,61,1,2,0,6,5,15,38,0,0,4,1
+30,5,2,2,1,33,2,1,0,20,5,10,45,0,0,4,1
+20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
+21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
+12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
+31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
+36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
+40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
+42,1,2,4,1,10,2,1,3,26,8,7,0,0,0,4,0
+39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+39,5,2,3,1,43,1,1,0,13,10,11,22,0,0,4,1
+37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
+30,5,2,3,1,25,2,1,3,4,8,12,11,0,0,4,1
+26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
+12,11,3,3,1,37,1,1,0,2,3,11,22,0,0,4,1
+33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
+30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
+28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
+11,10,3,3,1,29,1,1,0,11,3,3,0,0,0,4,1
+8,0,3,2,1,31,1,1,0,10,3,12,22,0,0,4,1
+29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
+38,1,3,2,1,61,1,2,0,29,5,14,22,0,0,4,1
+46,6,2,1,1,48,1,1,0,27,3,10,0,0,0,4,1
 18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
-39,11,2,3,1,47,1,1,3,26,8,10,0,0,0,4,0
-8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
-36,10,0,2,1,68,1,2,0,13,5,13,0,0,0,4,1
+14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
 41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
-27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
-31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
-33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
-11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-16,1,2,1,1,41,2,1,0,13,10,0,0,0,0,4,1
-25,1,3,2,1,37,2,1,3,30,8,15,22,0,0,4,1
-14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
-39,10,2,2,1,64,1,1,2,20,11,4,0,0,0,4,1
-10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
-22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
+17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
+23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
 4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
-27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
-15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
-15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
-12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
-33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
-32,11,2,1,1,63,1,1,3,26,6,10,0,0,0,4,1
-54,6,2,3,1,9,1,1,0,4,3,16,0,0,0,4,1
-57,6,2,1,1,42,1,1,0,8,3,9,2,0,0,4,1
-40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
-11,5,2,3,1,18,2,1,0,25,3,14,11,0,0,4,1
-11,5,3,3,1,71,2,1,0,2,5,15,11,0,0,4,1
-10,10,3,2,1,69,1,2,0,28,5,11,0,0,0,4,1
-42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
-37,10,2,2,2,4,1,1,0,11,3,13,0,0,0,4,1
-14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
-25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
-27,5,2,3,1,61,1,1,3,12,6,12,22,0,0,4,1
-25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
-25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
-12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
-42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
-40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
-8,0,3,3,1,38,1,2,0,18,3,7,11,0,0,4,1
-24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
-32,1,2,1,1,46,2,1,0,28,1,10,11,0,0,4,1
-22,1,2,1,1,22,2,1,3,7,8,2,22,0,0,4,1
-35,5,0,2,1,9,1,2,2,14,2,2,0,0,0,4,1
-31,8,2,2,1,15,1,1,0,5,1,14,5,0,0,4,1
-16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
-17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
-12,10,3,2,1,68,2,1,3,7,8,2,38,0,0,4,1
-39,5,2,3,1,9,2,2,3,12,6,5,0,0,0,4,1
-21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
-24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
-37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
-32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
-8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
-16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
-26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
-16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
+36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
 35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
-21,11,3,2,1,1,2,1,0,22,3,9,0,0,0,4,1
-15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
-13,7,3,3,1,23,1,1,2,30,3,5,0,0,0,4,1
-33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
-16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
-41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
-42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
-57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
-12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
-41,6,0,2,1,61,1,1,0,23,5,13,33,0,0,4,1
-28,8,2,2,1,36,1,1,0,13,10,15,0,0,0,4,1
-14,5,3,3,1,24,1,1,0,17,1,10,38,0,0,4,1
-28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
-40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
-18,5,0,3,2,42,1,1,0,27,1,14,33,0,0,4,1
-19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
-19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
-30,5,2,3,1,54,2,1,3,12,6,13,0,0,0,4,1
-11,0,3,2,1,67,2,2,3,26,8,11,0,0,0,4,0
-24,5,2,4,1,34,1,1,3,26,8,9,11,0,0,4,0
-16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
-13,5,2,3,1,66,1,1,0,12,1,13,5,0,0,4,1
-25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
-18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
-10,1,3,2,1,2,2,1,3,30,8,6,11,0,0,4,1
-21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
-35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
-10,8,3,2,1,53,2,1,3,27,8,3,22,0,0,4,1
-13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
-22,2,2,3,2,9,1,1,3,10,6,15,33,0,0,4,1
-28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
-13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
-15,10,3,2,1,10,2,1,3,26,8,7,11,0,0,4,0
-9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
-13,5,2,3,1,61,1,1,0,28,1,2,0,0,0,4,1
-42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
-14,5,3,3,1,25,1,1,0,5,1,2,11,0,0,4,1
-17,10,3,3,1,54,1,1,0,13,10,15,11,0,0,4,1
-18,1,2,1,1,46,2,2,3,12,8,1,11,0,0,4,1
-33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
-15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
-19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
-42,6,0,2,1,27,2,1,3,26,8,7,0,0,0,4,0
-29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
+17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
+20,1,2,2,1,59,2,1,3,13,8,11,11,0,0,4,1
+20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
+27,1,2,1,1,9,2,1,3,3,8,10,38,0,0,4,1
+14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
+14,7,3,3,1,44,2,1,0,9,10,10,0,0,0,4,1
 17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
-41,1,0,1,1,15,1,2,0,28,5,14,0,0,0,4,1
-25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
-28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
-15,5,2,3,1,20,1,1,0,27,3,6,11,0,0,4,1
-12,0,3,3,1,9,2,1,0,25,3,13,11,0,0,4,1
-33,7,2,3,1,55,2,2,0,24,5,11,33,0,0,4,1
-37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
-29,1,2,1,1,1,2,1,3,26,8,6,0,0,0,4,0
+29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
+13,1,2,2,1,64,2,1,3,10,8,0,33,0,0,4,1
+28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
+32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
 15,12,3,4,1,9,1,1,3,26,8,6,0,0,0,4,0
-19,1,2,1,1,9,2,1,3,26,8,13,0,0,0,4,0
-36,5,2,2,1,12,2,1,0,17,5,3,22,0,0,4,1
-37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
-30,5,2,3,1,9,1,1,2,1,10,7,0,0,0,4,1
-23,1,2,1,1,31,2,1,3,6,8,1,0,0,0,4,1
-32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
-38,1,2,2,1,14,1,1,3,2,6,15,0,0,0,4,1
-36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
-19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
-39,8,2,2,1,20,2,1,3,26,8,5,0,0,0,4,0
-42,5,2,3,1,29,1,1,0,26,3,7,11,0,0,4,1
-22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
-11,0,0,3,2,9,1,2,0,30,5,9,22,0,0,4,1
+43,5,2,2,1,71,1,1,0,9,1,16,43,0,0,4,1
+20,0,0,2,1,24,2,1,0,26,3,1,22,167,12,3,1
+11,5,2,3,1,38,1,1,3,20,8,15,11,0,0,4,1
+6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
+39,5,2,3,1,70,1,2,3,12,6,1,11,0,0,4,1
+33,1,2,2,1,32,2,1,3,26,8,13,0,0,0,4,0
+18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
+35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
+37,1,2,2,1,44,1,1,3,26,8,8,0,0,0,4,0
+19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
+28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
+26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
+28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
+38,5,2,3,1,59,1,1,0,27,3,5,0,0,0,4,1
+16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
+16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
+22,10,3,3,1,21,2,1,0,11,3,7,0,157,12,0,1
+40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
+18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
+15,1,3,1,1,15,2,1,3,21,8,1,11,0,0,4,1
+12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
+19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
+19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
+41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
+18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
+11,8,3,2,1,3,2,1,3,25,6,11,0,0,0,4,1
+9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
+13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
+8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
+13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
+23,10,2,3,1,53,1,1,0,26,1,14,11,0,0,4,1
+41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
+18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
+40,5,2,3,1,47,2,1,2,5,10,5,0,0,0,4,1
+23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
+29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
+12,5,2,2,1,68,1,1,0,3,1,10,11,0,0,4,1
+20,10,3,3,1,11,1,1,3,8,6,1,22,0,0,4,1
+33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
+27,1,2,1,1,31,2,1,3,26,8,9,0,0,0,4,0
+28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
+38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
+23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
+37,1,2,1,1,59,2,1,3,26,8,7,0,0,0,4,0
+14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
+10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
+19,2,0,2,1,22,2,2,3,4,8,13,43,0,0,4,1
+42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
+33,2,2,3,1,54,2,1,3,15,11,3,0,0,0,4,1
+31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
+23,1,0,2,1,54,2,1,3,5,8,4,22,0,0,4,1
+21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
+18,2,0,3,1,65,1,2,0,28,5,13,22,0,0,4,1
+18,0,2,3,1,27,2,1,3,26,8,4,11,0,0,4,0
+36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
+31,10,2,3,1,43,1,1,0,26,1,14,11,0,0,4,1
 27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
-8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
-12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
-14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
-11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
-34,5,2,3,1,34,2,1,3,26,8,16,0,0,0,4,0
-7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
-12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
-12,0,2,2,1,68,2,1,3,21,8,13,22,0,0,4,1
-34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
-34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
-30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
-30,11,2,2,1,36,2,1,3,26,8,7,0,0,0,4,0
-8,0,3,2,1,31,1,1,0,10,3,12,22,0,0,4,1
-16,8,2,2,1,2,2,2,3,26,8,13,0,0,0,4,0
-9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
-25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+13,1,2,2,1,19,2,2,0,29,5,14,0,0,0,4,1
+37,6,0,2,1,3,1,2,0,16,5,4,0,0,0,4,1
+39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
+38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
+28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
+17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
+19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
+27,2,2,3,1,25,2,1,0,12,10,14,38,0,0,4,1
+43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
+26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
+42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
+12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
+17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
+34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
 25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
-19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
-42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
-40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
-21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
-10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
-12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
-41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
-28,0,2,2,1,61,2,1,2,21,5,1,2,0,0,4,1
-39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
-36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
-28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
-21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
-23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
-33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
-42,12,2,4,1,22,1,1,0,18,1,12,2,0,0,4,1
+33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
+43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
+28,10,3,3,1,48,1,1,0,9,1,10,45,0,0,4,1
+37,1,2,4,1,69,1,1,0,14,1,3,11,0,0,4,1
 18,7,2,3,1,24,1,1,3,26,8,6,11,0,0,4,0
-22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
-8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
-32,10,2,2,1,47,2,1,3,26,6,10,38,0,0,4,1
-35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
-13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
+33,5,2,2,1,13,2,1,3,26,8,13,0,0,0,4,0
+15,10,2,3,1,62,1,1,0,12,10,13,0,3,2,1,1
+11,5,3,3,1,71,2,1,0,2,5,15,11,0,0,4,1
+32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
+39,6,2,3,1,9,2,2,3,20,8,12,0,0,0,4,1
+18,5,2,3,1,16,1,1,3,10,6,6,0,0,0,4,1
+28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
+7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
+22,10,0,2,1,38,1,1,0,27,1,13,11,0,0,4,1
+18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
+6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
+14,5,3,3,1,32,2,1,0,13,5,12,22,0,0,4,1
+33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
+41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
+9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
+19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
+15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
+10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
+10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
+11,1,2,2,1,66,2,2,0,1,5,12,0,0,0,4,1
+30,11,3,3,1,39,1,1,3,7,6,1,0,0,0,4,1
+34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
+13,5,2,3,1,61,1,1,0,28,1,2,0,0,0,4,1
+40,5,0,3,1,56,1,1,0,11,3,10,0,0,0,4,1
+34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
+41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
+21,1,2,1,1,13,1,1,0,22,3,15,0,0,0,4,1
+31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
+42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
+14,7,2,3,1,17,1,1,0,27,1,3,33,0,0,4,1
+24,11,0,2,1,22,2,1,3,23,8,14,11,0,0,4,1
+14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
+40,5,2,4,1,11,2,1,3,26,8,7,22,0,0,4,0
+12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
+41,5,0,3,1,32,2,1,2,21,11,7,0,0,0,4,1
+18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
+23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
+67,6,0,1,1,65,1,1,0,9,3,9,22,0,0,4,1
+42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
+57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
+26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
+22,1,2,2,1,9,2,2,3,12,6,0,38,0,0,4,1
+23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
+15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
+14,8,3,2,1,65,2,1,3,6,8,12,22,0,0,4,1
+8,2,3,3,1,63,1,1,0,26,3,6,11,98,23,1,1
+25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
 19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
-9,1,3,2,1,31,2,1,3,21,8,13,0,0,0,4,1
-15,5,3,3,1,63,1,1,0,19,1,10,46,0,0,4,1
-20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
-6,9,3,2,1,67,2,1,3,26,8,6,11,0,0,4,0
-31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
-20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
+41,6,0,2,1,53,1,1,0,22,3,7,0,0,0,4,1
+39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
+29,0,0,2,1,28,1,1,0,20,1,1,33,0,0,4,1
+32,1,2,1,1,46,2,1,0,28,1,10,11,0,0,4,1
+16,1,2,2,1,23,1,1,0,27,1,15,11,0,0,4,1
+12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
+21,0,2,2,1,15,2,2,0,25,3,3,11,0,0,4,1
 12,7,2,3,1,22,1,1,3,8,11,7,0,0,0,4,1
-19,5,2,3,1,46,2,1,0,11,3,8,11,82,30,1,1
-14,7,3,3,1,44,2,1,0,9,10,10,0,0,0,4,1
-14,5,3,3,1,50,1,1,0,13,1,13,43,0,0,4,1
-14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
-30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
-40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
-16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
-41,6,2,1,1,20,2,2,0,26,1,14,0,0,0,4,1
-33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
-29,1,2,2,1,36,1,1,0,1,3,8,0,0,0,4,1
-14,8,3,2,1,2,2,1,3,13,8,12,22,0,0,4,1
-42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
-14,5,2,3,1,9,2,1,3,26,8,6,0,0,0,4,0
-8,0,3,2,1,10,1,2,0,29,5,12,11,0,0,4,1
-17,5,2,3,1,22,1,1,0,24,5,9,33,0,0,4,1
-32,5,3,3,1,36,2,1,3,26,8,2,0,0,0,4,0
-22,10,0,2,1,38,1,1,0,27,1,13,11,0,0,4,1
-9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
-33,1,2,2,1,32,2,1,3,26,8,13,0,0,0,4,0
-5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
-13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
-19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
-51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
-27,1,2,1,1,31,2,1,3,26,8,9,0,0,0,4,0
-13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
-26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
-9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
-12,10,3,3,1,22,1,1,0,8,5,12,22,0,0,4,1
-4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
-20,0,3,2,1,39,1,1,3,26,6,14,11,0,0,4,1
-13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
-36,1,2,1,1,41,2,1,3,26,8,11,11,0,0,4,0
-23,0,3,2,1,67,1,2,3,2,6,11,33,0,0,4,1
-16,2,2,3,1,11,2,1,0,26,3,3,1,0,0,4,1
-8,9,3,2,1,9,2,1,3,26,8,11,11,0,0,4,0
-16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
-14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
-17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
-15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
-35,1,2,1,1,64,2,1,0,22,3,4,11,0,0,4,1
-19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
-23,1,3,2,2,11,2,2,0,28,5,11,0,0,0,4,1
-18,10,2,2,1,31,1,1,0,20,1,15,33,0,0,4,1
-28,0,2,2,1,14,1,1,3,9,6,3,0,0,0,4,1
-22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
-18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
-29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
-33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
-20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
+12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
+17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
+18,7,3,3,1,14,1,1,0,24,5,14,22,0,0,4,1
+22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
+38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
 31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
-12,1,3,2,1,71,2,1,3,11,6,13,11,0,0,4,1
-13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
-21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
-41,5,2,2,1,16,1,1,3,30,6,9,22,0,0,4,1
-12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
-14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
-8,10,3,3,1,19,1,1,0,11,3,8,0,0,0,4,1
-26,1,2,2,1,18,2,1,3,26,8,7,11,0,0,4,0
-31,8,2,2,1,50,1,1,3,26,8,7,11,0,0,4,0
-40,5,2,4,1,11,2,1,3,26,8,7,22,0,0,4,0
-33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
-30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
+32,5,3,3,1,36,2,1,3,26,8,2,0,0,0,4,0
+8,8,3,2,1,18,1,1,2,15,11,5,0,0,0,4,1
 13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
-26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
-19,5,3,3,1,58,2,1,3,26,8,4,0,0,0,4,0
-37,10,0,2,2,45,1,1,0,20,4,1,0,0,0,4,1
-19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
-28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
-15,5,3,3,1,37,2,1,0,14,5,1,0,0,0,4,1
-11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
-24,0,2,2,1,10,1,1,3,2,6,2,33,0,0,4,1
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
-51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
-10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
-36,6,2,2,1,54,2,1,3,26,8,4,0,0,0,4,0
-15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
-39,1,2,2,1,58,2,2,3,26,8,7,0,0,0,4,0
-19,10,3,3,1,58,1,1,0,27,3,4,0,0,0,4,1
-18,5,2,3,1,9,2,1,2,15,11,4,0,49,24,0,1
-23,1,0,1,1,61,1,2,0,6,5,15,38,0,0,4,1
-15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
-32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
-26,8,0,2,1,53,2,2,3,19,8,8,11,0,0,4,1
-13,5,0,3,1,36,2,1,0,8,5,11,38,0,0,4,1
-19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
-40,5,2,3,1,47,2,1,2,5,10,5,0,0,0,4,1
-39,6,0,3,1,64,1,1,0,27,1,3,33,0,0,4,1
-72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
-30,1,2,2,1,20,2,1,3,5,8,13,0,0,0,4,1
-13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
+14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
+10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
+33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
+14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
+21,8,3,4,1,32,2,1,3,26,8,9,0,0,0,4,0
+34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
+24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
+21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
+35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
+8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
+42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
+27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
+41,5,2,3,1,36,1,2,0,6,5,14,22,0,0,4,1
+12,10,3,2,1,68,2,1,3,7,8,2,38,0,0,4,1
+12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
+14,10,3,2,1,9,1,1,0,9,1,11,33,0,0,4,1
+35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
+8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
+28,10,2,2,1,41,1,2,0,19,3,2,0,0,0,4,1
+13,11,3,1,1,20,1,1,0,23,4,13,11,110,1,1,1
+25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
+19,10,3,2,1,3,2,1,0,4,1,2,43,0,0,4,1
+17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
+14,8,2,1,1,29,2,1,0,13,5,0,43,0,0,4,1
+18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
+20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
+18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
+17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
+30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
+39,8,2,2,1,20,2,1,3,26,8,5,0,0,0,4,0
 13,8,2,2,1,31,2,2,3,26,8,5,0,0,0,4,0
-29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
-14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
-31,10,3,2,1,2,2,2,0,8,10,10,0,0,0,4,1
-12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
-36,6,0,3,1,9,1,1,3,4,8,12,0,0,0,4,1
-19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
-25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
-39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
-38,6,0,3,1,20,1,2,0,13,5,14,0,0,0,4,1
-13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
+12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
+22,2,2,3,2,9,1,1,3,10,6,15,33,0,0,4,1
+12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
+23,1,2,1,1,31,2,1,3,6,8,1,0,0,0,4,1
+42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
+18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
+31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
+16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
 26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
-15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
-40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
-24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
-27,1,2,2,1,12,2,1,3,14,11,12,0,0,0,4,1
-14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
-29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
-41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
-17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
-29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
-35,1,2,2,1,59,1,1,0,22,3,7,0,0,0,4,1
-24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
-33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
-34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
-12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
-37,3,2,1,1,27,1,1,3,10,6,15,11,0,0,4,1
-12,5,2,2,1,68,1,1,0,3,1,10,11,0,0,4,1
-20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
-39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
-31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
-28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
-23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
-42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
-30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
-39,6,2,2,1,27,2,1,3,26,8,7,11,0,0,4,0
-38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
-10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
-26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
-38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
-9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
-17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
-11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
-21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
-14,5,3,3,1,32,2,1,0,13,5,12,22,0,0,4,1
-7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
-22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
+37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
+28,0,2,2,1,61,2,1,2,21,5,1,2,0,0,4,1
+28,10,0,2,1,9,1,2,2,8,11,7,0,0,0,4,1
+35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
+24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
+14,5,3,3,1,50,1,1,0,13,1,13,43,0,0,4,1
+24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
+31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
+17,1,0,1,1,37,2,1,3,4,8,15,11,0,0,4,1
+27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
+21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
+8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
+19,3,2,2,1,64,1,2,0,26,3,12,22,0,0,4,1
+8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
+37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
+49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
+9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
+23,1,3,2,2,11,2,2,0,28,5,11,0,0,0,4,1
+11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
+13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
+8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
+32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
+35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
+40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
+23,2,2,1,1,44,2,1,0,13,10,11,11,0,0,4,1
+39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
+22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
+28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
+14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
 29,1,2,2,1,67,1,1,0,29,1,13,11,0,0,4,1
-8,1,2,2,1,0,2,2,0,8,5,2,22,0,0,4,1
-38,1,2,2,1,31,2,1,3,21,8,13,11,0,0,4,1
-27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
-22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
-9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
-42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
-23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
-17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
-42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
-36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
-18,1,2,2,1,22,1,1,3,26,6,6,0,0,0,4,1
-31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
-28,11,2,2,1,32,1,1,0,3,1,12,11,0,0,4,1
-25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
-39,5,2,3,1,43,1,1,0,13,10,11,22,0,0,4,1
-6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
-30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
-35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
-37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
-17,9,3,2,1,24,2,1,0,7,3,13,22,112,33,0,1
-37,10,2,3,1,21,1,2,0,26,1,12,11,0,0,4,1
-8,5,3,3,1,49,1,1,0,1,5,2,22,0,0,4,1
-23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
-31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
-12,11,3,3,1,37,1,1,0,2,3,11,22,0,0,4,1
-32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
-38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
-14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
+27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
+25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
+34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
+37,10,2,2,1,14,2,1,3,26,8,5,11,0,0,4,0
+14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
+14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
+19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
+16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
+17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
 22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
-28,10,3,3,1,48,1,1,0,9,1,10,45,0,0,4,1
-9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
-30,1,2,2,1,17,2,1,3,5,8,12,11,0,0,4,1
+38,10,0,2,1,23,1,1,0,9,5,11,0,0,0,4,1
+22,0,2,1,1,63,2,2,0,13,10,14,0,0,0,4,1
+30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
+9,10,3,3,1,70,2,1,0,25,3,1,0,0,0,4,1
+17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
 10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
-28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
-19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
-35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
-27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
-33,10,2,2,1,27,1,1,0,28,5,11,11,0,0,4,1
-7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
-44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
+28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
+28,7,2,3,1,30,1,1,0,10,10,1,0,3,30,0,1
+11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
+30,1,2,2,1,20,2,1,3,5,8,13,0,0,0,4,1
+39,5,2,3,1,9,2,2,3,12,6,5,0,0,0,4,1
+25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
+24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
+31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
 40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
-12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
-21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
-19,2,0,2,1,22,2,2,3,4,8,13,43,0,0,4,1
-14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
-32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
-25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
-21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
-25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
-44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
-22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
-7,1,2,2,1,7,2,1,3,26,8,9,0,0,0,4,0
-23,2,2,1,1,44,2,1,0,13,10,11,11,0,0,4,1
-16,5,3,3,1,33,2,1,0,13,10,12,43,0,0,4,1
-24,11,0,2,1,22,2,1,3,23,8,14,11,0,0,4,1
-11,1,3,2,1,51,1,2,0,1,5,1,22,0,0,4,1
-19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
-12,8,3,2,2,4,2,1,0,9,5,10,0,0,0,4,1
-16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
-23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
-24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
-29,3,3,3,1,43,1,1,3,3,6,16,43,0,0,4,1
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-41,3,2,1,1,9,1,1,0,26,1,1,0,0,0,4,1
-8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
-35,1,2,1,1,56,1,1,0,20,1,7,43,0,0,4,1
-18,7,2,2,1,14,2,1,3,27,6,4,47,0,0,4,1
-17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
-22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
-33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
-29,1,2,2,1,34,1,1,0,2,1,10,0,0,0,4,1
-17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
-15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
-7,10,3,2,1,51,1,1,0,16,5,13,0,0,0,4,1
-12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
-20,9,3,3,1,40,1,1,3,8,6,3,22,0,0,4,1
-14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
-20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
-20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
-18,2,0,3,1,65,1,2,0,28,5,13,22,0,0,4,1
-16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
-27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
-26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
-28,10,0,2,1,9,1,2,2,8,11,7,0,0,0,4,1
-9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
-11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
-21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
-14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
-33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
-12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
-12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
-34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
-15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
-22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
-13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
-41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
-8,5,3,3,1,62,2,1,3,20,8,5,11,0,0,4,1
-27,8,3,1,1,24,2,1,3,22,6,3,43,0,0,4,1
-26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
-35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
-12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
-10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
-18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
-34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
-37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
-12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-22,0,2,2,1,40,1,1,0,24,5,2,38,0,0,4,1
-24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
-22,1,2,2,1,9,2,1,3,30,8,5,11,0,0,4,1
-17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
-8,8,3,2,1,18,1,1,2,15,11,5,0,0,0,4,1
-29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
-27,0,2,2,1,18,2,1,3,15,8,15,22,0,0,4,1
-38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
-31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
-10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
-22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
-13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
-14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
-27,1,0,1,1,2,1,1,0,6,5,14,11,0,0,4,1
-22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
+40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
+31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
+9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
+27,0,0,3,1,19,1,1,0,20,5,9,33,0,0,4,1
 5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
-25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
-30,0,2,1,1,42,2,2,2,24,5,0,47,0,0,4,1
-29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
-31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
-22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
-23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
-40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
-14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
-33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
-5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
-10,0,3,2,1,7,1,2,3,18,6,8,11,0,0,4,1
-10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
-26,5,2,3,1,12,1,1,0,19,1,10,22,0,0,4,1
-33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
-35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
-7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
-14,5,0,3,1,28,1,2,0,6,5,14,33,0,0,4,1
-23,10,2,3,1,53,1,1,0,26,1,14,11,0,0,4,1
-18,0,2,3,1,27,2,1,3,26,8,4,11,0,0,4,0
-35,11,0,2,1,57,1,1,0,10,10,11,0,0,0,4,1
-16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
-10,8,2,2,1,53,2,2,0,29,5,6,11,0,0,4,1
-24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
+14,5,3,3,1,24,1,1,0,17,1,10,38,0,0,4,1
+24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
+15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
+28,5,3,3,1,35,2,1,3,23,8,16,11,0,0,4,1
+24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
 31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
-31,1,3,1,1,56,2,1,0,17,5,16,11,0,0,4,1
-28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
-39,6,2,3,1,9,2,2,3,20,8,12,0,0,0,4,1
-14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
-30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
-18,5,2,3,1,9,2,2,3,26,8,9,0,0,0,4,0
-19,10,2,3,1,15,2,1,0,4,3,13,0,0,0,4,1
-39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
-28,5,3,3,1,9,1,1,0,14,1,12,11,0,0,4,1
-18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-7,10,3,2,1,10,1,2,0,29,5,11,11,0,0,4,1
-26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
-37,1,2,2,1,44,1,1,3,26,8,8,0,0,0,4,0
-23,8,2,4,2,9,1,2,0,23,5,2,33,0,0,4,1
-40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
-21,8,3,4,1,32,2,1,3,26,8,9,0,0,0,4,0
-37,1,2,4,1,69,1,1,0,14,1,3,11,0,0,4,1
+12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
+14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
+10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
+7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
+15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
+23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
+37,10,2,2,2,4,1,1,0,11,3,13,0,0,0,4,1
+17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
+29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
+21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
+19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
+17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
+36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
+33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
+25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
+29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
+28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
+10,8,2,2,1,53,2,2,0,29,5,6,11,0,0,4,1
+31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
+33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
+14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
+8,5,3,3,1,49,1,1,0,1,5,2,22,0,0,4,1
+32,11,2,1,1,63,1,1,3,26,6,10,0,0,0,4,1
+39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
+14,0,0,2,1,3,1,2,3,19,6,14,11,0,0,4,1
+22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
+42,12,2,4,1,22,1,1,0,18,1,12,2,0,0,4,1
+8,5,3,3,1,9,2,1,3,23,8,7,11,0,0,4,1
 9,5,3,3,1,19,2,1,0,7,5,10,0,0,0,4,1
-29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
-25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
-36,5,2,3,1,9,1,1,3,26,8,2,11,0,0,4,0
-11,1,3,2,1,2,2,1,3,21,8,14,11,0,0,4,1
-29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
-33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
-22,5,3,3,1,9,1,1,0,27,1,12,43,0,0,4,1
-26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
-33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
-16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
-21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
-22,1,2,2,1,9,2,2,3,12,6,0,38,0,0,4,1
-10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
-29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
-17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
-23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
-40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
+8,9,3,2,1,9,2,1,3,26,8,11,11,0,0,4,0
+10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
+6,9,3,2,1,67,2,1,3,26,8,6,11,0,0,4,0
+22,8,2,1,1,11,2,1,3,23,8,14,11,0,0,4,1
+16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
+10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+27,10,2,3,1,43,2,1,3,10,6,14,22,0,0,4,1
+36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
+19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
+43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
+11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
+10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
+27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
 19,8,3,2,1,34,2,1,3,22,6,0,22,0,0,4,1
-30,5,2,3,1,25,2,1,3,4,8,12,11,0,0,4,1
-14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
-12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
-22,5,2,3,1,61,1,1,0,4,1,13,33,0,0,4,1
-32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
-8,0,2,2,1,63,2,2,3,27,6,3,11,0,0,4,1
-23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
+39,1,2,2,1,58,2,2,3,26,8,7,0,0,0,4,0
+44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
+32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
+7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
+41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
+12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
+26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
+35,1,2,1,1,64,2,1,0,22,3,4,11,0,0,4,1
+19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
+21,10,2,2,1,9,2,1,3,26,8,6,0,0,0,4,0
+13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
+23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+15,10,3,2,1,10,2,1,3,26,8,7,11,0,0,4,0
+29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
+19,8,2,2,1,19,2,1,0,7,3,4,11,0,0,4,1
+25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
+29,0,2,2,1,35,2,1,0,14,5,3,11,0,0,4,1
+31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+33,2,2,4,1,58,2,1,3,20,8,11,47,0,0,4,1
+27,11,0,2,1,40,2,1,3,21,8,13,0,0,0,4,1
+13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
+20,10,2,2,1,28,2,1,3,23,8,13,22,0,0,4,1
+12,0,0,2,1,43,2,1,3,25,6,10,6,0,0,4,1
+17,9,3,2,1,24,2,1,0,7,3,13,22,112,33,0,1
+7,8,3,2,1,40,1,2,0,6,5,1,11,0,0,4,1
+12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
+30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
+18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
+23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
+35,10,2,3,1,71,1,1,0,12,1,4,38,0,0,4,1
+28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
+13,5,0,3,1,36,2,1,0,8,5,11,38,0,0,4,1
+21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
+20,5,2,3,1,59,1,1,0,22,3,7,0,0,0,4,1
+12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
+22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
+36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
+4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
+24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
+20,10,0,3,1,23,1,1,3,30,6,15,11,0,0,4,1
+37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
 7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
-29,1,2,2,1,12,2,1,0,21,4,1,0,0,0,4,1
-24,1,3,1,1,20,2,1,0,17,5,11,46,0,0,4,1
-11,5,3,3,1,70,1,1,0,11,7,6,38,0,0,4,1
-27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
-23,1,2,2,1,17,2,1,3,6,8,2,33,0,0,4,1
+14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
+14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
+19,5,2,3,1,46,2,1,0,11,3,8,11,82,30,1,1
+23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
+21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
+26,8,0,2,1,53,2,2,3,19,8,8,11,0,0,4,1
+31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
+29,1,2,4,2,20,1,1,0,17,1,9,22,0,0,4,1
+36,6,2,2,1,54,2,1,3,26,8,4,0,0,0,4,0
+16,10,2,2,1,10,1,1,0,17,1,4,1,0,0,4,1
+36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
+18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
+23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
+7,10,3,2,1,14,2,1,0,19,3,9,38,0,0,4,1
+12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
+34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
+36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
+14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
+44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
 26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
-41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
-34,6,0,3,1,43,2,2,3,7,6,13,33,0,0,4,1
-18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
-28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
-8,10,2,2,1,1,1,2,0,30,5,9,38,0,0,4,1
-9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
-27,10,2,3,1,43,2,1,3,10,6,14,22,0,0,4,1
-28,10,2,2,1,55,2,1,3,7,6,13,11,0,0,4,1
-12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
-11,8,3,2,1,3,2,1,3,25,6,11,0,0,0,4,1
-11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
-37,5,2,3,1,56,1,1,0,3,1,15,1,0,0,4,1
-15,8,3,2,1,21,1,1,0,28,5,13,0,0,0,4,1
-32,10,2,1,1,17,1,1,3,26,8,1,11,0,0,4,0
-28,5,0,3,1,15,1,1,0,2,1,13,22,0,0,4,1
-18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
-41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
-12,10,3,2,1,34,1,1,0,13,10,10,22,0,0,4,1
-8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
-12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
-20,10,2,3,1,25,1,1,0,26,1,3,11,0,0,4,1
-17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
-16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
+16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
+18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
+15,11,2,2,1,1,1,1,0,23,5,10,22,0,0,4,1
+34,5,3,3,1,67,1,1,0,18,1,2,43,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
+28,10,2,2,1,16,1,1,0,9,1,11,38,0,0,4,1
+30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+15,5,2,3,1,17,2,1,3,10,1,10,0,0,0,4,1
+35,1,2,2,1,9,2,2,3,26,8,6,0,0,0,4,0
+41,5,2,2,1,16,1,1,3,30,6,9,22,0,0,4,1
+12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
+32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
+24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
+33,3,0,2,1,70,1,1,0,9,5,12,33,0,0,4,1
+11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+16,1,2,1,1,41,2,1,0,13,10,0,0,0,0,4,1
+32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
+26,11,2,2,1,9,2,1,0,11,3,12,0,190,1,0,1
+20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
+22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
+17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
+12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
+19,1,2,1,1,9,2,1,3,26,8,13,0,0,0,4,0
+32,10,2,2,1,47,2,1,3,26,6,10,38,0,0,4,1
+18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
+12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
+38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
+21,5,2,3,1,44,2,2,3,26,8,3,11,0,0,4,0
+29,1,2,2,1,12,2,1,0,21,4,1,0,0,0,4,1
+16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
+10,8,3,2,1,53,2,1,3,27,8,3,22,0,0,4,1
+13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
+9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
+21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
+22,1,2,2,1,9,2,1,3,30,8,5,11,0,0,4,1
+10,1,3,2,1,2,2,1,3,30,8,6,11,0,0,4,1
+22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
+17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
+41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
+21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
+11,0,3,2,1,67,2,2,3,26,8,11,0,0,0,4,0
+7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
+21,10,2,2,1,46,2,1,0,9,3,4,11,181,1,1,1
+15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
+28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
+27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
+15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
+18,1,2,2,1,22,1,1,3,26,6,6,0,0,0,4,1
+19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
+30,5,2,3,1,9,1,1,2,1,10,7,0,0,0,4,1
+15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
+41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
+37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
+16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
+18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
+31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
+20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
+37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
+28,10,2,2,1,13,2,1,0,13,10,5,11,0,0,4,1
+20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
+23,10,3,2,1,60,2,1,0,12,10,7,22,0,0,4,1
+11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
+31,5,2,2,1,31,1,1,2,27,10,7,0,0,0,4,1
+26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
+22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
+10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
+22,5,2,3,1,61,1,1,0,4,1,13,33,0,0,4,1
+14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
+34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
+8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
+12,1,3,2,1,71,2,1,3,11,6,13,11,0,0,4,1
+26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
+25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
+41,3,2,1,1,9,1,1,0,26,1,1,0,0,0,4,1
+22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
+15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
+17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
+15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
+41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
+9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
+22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
+33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
+14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
+22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
+24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
+31,8,2,2,1,50,1,1,3,26,8,7,11,0,0,4,0
+35,11,0,2,1,57,1,1,0,10,10,11,0,0,0,4,1
+30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
+30,5,2,3,1,23,2,1,0,18,3,7,0,0,0,4,1
+35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
+39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
+8,1,3,1,1,46,2,1,0,13,5,11,11,0,0,4,1
+30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
+5,8,3,2,1,61,2,1,3,20,8,2,0,0,0,4,1
+38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
+13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+20,9,3,3,1,40,1,1,3,8,6,3,22,0,0,4,1
+15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
+15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
+26,8,2,2,1,16,2,2,3,26,8,7,0,0,0,4,0
+15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
+53,6,2,2,1,35,1,1,0,8,3,6,0,0,0,4,1
+18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
+43,6,2,2,1,65,1,1,0,27,1,10,33,0,0,4,1
+11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
+14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
+17,6,3,1,1,48,1,1,3,26,8,4,0,0,0,4,0
+41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
+42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
+17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
+22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
+44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
+18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
+22,2,0,2,1,37,2,1,0,9,5,12,22,0,0,4,1
+34,3,2,1,1,44,2,1,0,8,5,2,0,0,0,4,1
+28,10,2,2,1,55,2,1,3,7,6,13,11,0,0,4,1
+22,1,2,2,1,53,1,1,0,1,3,5,11,552,1,3,1
+14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
+35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+15,5,3,3,1,37,2,1,0,14,5,1,0,0,0,4,1
+33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
+9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
+13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
+14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
+7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
+24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
+19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
+26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
+12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
+35,0,0,4,1,32,1,1,0,2,5,3,11,0,0,4,1
+15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
+17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+23,8,2,4,2,9,1,2,0,23,5,2,33,0,0,4,1
+26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
+18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
+12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
+41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
+26,5,2,3,1,12,1,1,0,19,1,10,22,0,0,4,1
+37,5,2,3,1,56,1,1,0,3,1,15,1,0,0,4,1
+11,1,3,2,1,51,1,2,0,1,5,1,22,0,0,4,1
+16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
+53,6,2,1,1,50,1,1,0,7,3,15,38,0,0,4,1
+31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
+37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
+13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
+23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
+13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
+40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
+18,10,3,2,1,33,2,2,3,26,8,8,0,0,0,4,0
+35,11,2,4,1,15,1,1,3,26,8,9,22,0,0,4,0
+29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
+57,6,2,1,1,42,1,1,0,8,3,9,2,0,0,4,1
+29,3,3,3,1,43,1,1,3,3,6,16,43,0,0,4,1
+21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
+35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
+13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
+8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
+31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
+41,6,2,1,1,20,2,2,0,26,1,14,0,0,0,4,1
+42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
+13,0,3,2,1,64,2,1,3,18,8,11,11,0,0,4,1
+16,2,2,3,1,11,2,1,0,26,3,3,1,0,0,4,1
+13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
+16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
+25,1,2,2,1,23,1,2,0,7,5,0,2,0,0,4,1
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
+13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
+25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
+21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
+16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
+14,5,3,3,1,65,1,1,0,21,1,12,11,0,0,4,1
+12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
+36,10,3,3,1,50,2,1,0,9,5,12,22,0,0,4,1
+28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
+30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
+14,5,3,3,1,25,1,1,0,5,1,2,11,0,0,4,1
+20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
+12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+37,10,2,3,1,21,1,2,0,26,1,12,11,0,0,4,1
+15,5,2,3,1,24,1,1,0,4,1,2,11,0,0,4,1
+13,5,3,3,1,9,2,1,3,26,8,11,0,0,0,4,0
+40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
+51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
+37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
+19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
+39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+18,10,2,2,1,31,1,1,0,20,1,15,33,0,0,4,1
+11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
+25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
+16,8,2,2,1,2,2,2,3,26,8,13,0,0,0,4,0
+12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
+35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
+19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
+42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
+11,5,3,3,1,70,1,1,0,11,7,6,38,0,0,4,1
+34,6,0,3,1,43,2,2,3,7,6,13,33,0,0,4,1
+13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
+28,5,0,3,1,15,1,1,0,2,1,13,22,0,0,4,1
+9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
+29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
+6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
+27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
+16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+20,5,2,3,1,44,2,1,2,20,11,5,0,0,0,4,1
+22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
+13,10,2,2,2,4,2,1,0,9,5,10,11,0,0,4,1
+21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
+42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
+29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
+29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
+39,10,0,3,1,71,1,1,0,13,1,15,33,0,0,4,1
+31,8,2,2,1,67,1,1,0,29,1,13,33,0,0,4,1
+33,11,0,3,1,9,1,1,0,24,5,11,11,0,0,4,1
+18,5,0,3,2,42,1,1,0,27,1,14,33,0,0,4,1
+19,8,2,2,1,25,2,1,2,26,10,7,0,0,0,4,1
+39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
+36,10,0,2,1,68,1,2,0,13,5,13,0,0,0,4,1
+39,6,2,2,1,27,2,1,3,26,8,7,11,0,0,4,0
+18,5,3,3,1,26,1,2,0,12,10,13,0,0,0,4,1
+25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
+16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
+19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
+39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
+20,10,3,2,1,21,2,1,3,26,8,6,0,0,0,4,0
+38,1,2,2,1,31,2,1,3,21,8,13,11,0,0,4,1
+34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
+10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
+8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
+15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
+29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
+29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
+8,10,2,2,1,1,1,2,0,30,5,9,38,0,0,4,1
+24,2,0,3,2,25,2,1,3,26,8,9,0,0,0,4,0
+28,3,2,1,1,71,1,1,3,26,8,6,0,0,0,4,0
+12,10,3,3,1,22,1,1,0,8,5,12,22,0,0,4,1
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
+17,10,3,3,1,54,1,1,0,13,10,15,11,0,0,4,1
+36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
+37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
+20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
+16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
+15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
+33,1,2,2,1,63,2,1,3,5,8,15,0,0,0,4,1
+41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
+13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
+54,6,2,3,1,9,1,1,0,4,3,16,0,0,0,4,1
+29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
+22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
+17,5,0,3,1,44,2,1,3,29,8,1,0,0,0,4,1
+12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
+39,1,2,2,1,19,2,1,0,8,10,11,0,0,0,4,1
+34,5,2,3,1,34,2,1,3,26,8,16,0,0,0,4,0
+29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
+32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
+40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
+24,8,2,2,1,17,2,1,0,11,7,13,33,0,0,4,1
+23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
+17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
+14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
+14,10,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
+22,8,3,2,1,19,2,1,0,12,10,9,0,0,0,4,1
+42,6,2,1,1,58,2,1,3,26,8,7,0,0,0,4,0
+19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
+7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
+34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
+20,10,2,3,1,25,1,1,0,26,1,3,11,0,0,4,1
+36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
+13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
+35,1,2,2,1,59,1,1,0,22,3,7,0,0,0,4,1
+22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+31,1,3,1,1,56,2,1,0,17,5,16,11,0,0,4,1
+41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
+22,0,2,2,1,40,1,1,0,24,5,2,38,0,0,4,1
+22,5,2,2,1,48,1,1,0,3,1,9,22,0,0,4,1
+12,10,3,2,1,34,1,1,0,13,10,10,22,0,0,4,1
+32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
+31,10,3,2,1,2,2,2,0,8,10,10,0,0,0,4,1
+32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
+37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
+18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
+28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
+33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
+12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
+31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
+19,5,3,3,1,49,2,1,0,4,1,15,43,0,0,4,1
+35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
+13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
+18,5,2,3,1,9,2,2,3,26,8,9,0,0,0,4,0
+16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
+30,1,2,1,1,63,1,2,0,2,1,9,38,0,0,4,1
+21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
+39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
+38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
+29,1,2,2,1,34,1,1,0,2,1,10,0,0,0,4,1
+31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
+7,1,2,2,1,7,2,1,3,26,8,9,0,0,0,4,0
+42,6,0,2,1,27,2,1,3,26,8,7,0,0,0,4,0
+17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
+17,1,3,2,1,14,2,2,3,26,8,6,0,0,0,4,0
+28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
+10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
+24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
+12,0,3,3,1,9,2,1,0,25,3,13,11,0,0,4,1
+14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
+13,11,3,1,1,46,1,1,0,25,3,13,0,0,0,4,1
+30,5,2,3,1,54,2,1,3,12,6,13,0,0,0,4,1
+41,0,2,2,1,9,2,1,0,1,5,16,0,0,0,4,1
+25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
+33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
+23,10,2,3,1,61,2,1,0,10,10,14,0,0,0,4,1
+22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
+51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
+19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
+13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
+37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
+24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
+24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
+25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
+25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
+41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
+19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
+16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
+38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
+8,0,3,2,1,10,1,2,0,29,5,12,11,0,0,4,1
+11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
+11,1,3,2,1,2,2,1,3,21,8,14,11,0,0,4,1
+27,1,0,1,1,2,1,1,0,6,5,14,11,0,0,4,1
+28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
+17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
+8,10,3,3,1,19,1,1,0,11,3,8,0,0,0,4,1
+12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
+28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
+37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
+20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
+19,10,3,3,1,58,1,1,0,27,3,4,0,0,0,4,1
+39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
+38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
+12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
+18,7,3,3,1,0,2,2,2,8,11,8,0,0,0,4,1
+40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
+10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
+15,5,2,3,1,22,1,1,0,3,3,9,0,0,0,4,1
+23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
+24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
+9,9,2,2,1,13,2,1,0,7,5,13,11,0,0,4,1
+25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
+40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
+27,10,3,3,1,9,1,1,0,9,1,13,33,0,0,4,1
+15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
+15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
+31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
+42,5,2,3,1,29,1,1,0,26,3,7,11,0,0,4,1
+21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
+23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
+10,10,3,2,1,69,1,2,0,28,5,11,0,0,0,4,1
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
+28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
+21,1,3,2,1,9,1,1,0,14,5,14,33,0,0,4,1
+15,8,3,2,1,21,1,1,0,28,5,13,0,0,0,4,1
+13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
+20,8,0,2,1,58,1,1,3,26,6,12,0,0,0,4,1
+14,1,3,3,1,62,1,1,3,4,10,15,0,0,0,4,1
+12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
+20,1,2,2,1,20,1,1,3,7,6,3,47,0,0,4,1
+24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
+10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
+21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
+12,0,3,2,1,38,2,1,0,25,3,1,11,0,0,4,1
+8,0,2,2,1,63,2,2,3,27,6,3,11,0,0,4,1
+27,0,2,2,1,18,2,1,3,15,8,15,22,0,0,4,1
+12,0,2,2,1,68,2,1,3,21,8,13,22,0,0,4,1
+35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
+35,1,2,1,1,47,2,1,0,12,10,12,0,0,0,4,1
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
+13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
+19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
+15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
+15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
+15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
+19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
+19,11,3,2,1,44,2,1,3,29,8,16,11,0,0,4,1
+38,6,0,3,1,20,1,2,0,13,5,14,0,0,0,4,1
+20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
+20,5,2,3,1,22,2,1,0,1,5,10,0,0,0,4,1
+25,6,2,2,1,68,1,1,2,23,11,3,0,0,0,4,1
+22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
+16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+14,8,3,2,1,57,2,1,0,12,10,4,11,0,0,4,1
+13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
+40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
+12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
+21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
+12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
+24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
+18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
+12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
+33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
+23,1,2,2,1,55,2,1,0,1,5,11,0,0,0,4,1
+10,0,3,2,1,2,1,2,0,1,5,13,11,0,0,4,1
+20,8,3,2,1,56,2,1,3,26,8,13,11,0,0,4,0
+17,5,2,3,1,68,2,1,3,11,6,7,22,0,0,4,1
+27,1,2,2,1,12,2,1,3,14,11,12,0,0,0,4,1
+40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
+7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
+38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
+29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
+42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
+8,0,3,3,1,38,1,2,0,18,3,7,11,0,0,4,1
+41,6,2,4,1,10,1,1,3,2,6,2,0,0,0,4,1
+31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
+41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
+9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
+6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
+17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
+18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
+22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
+17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
+17,5,0,3,1,9,2,1,2,21,11,5,0,0,0,4,1
+10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
+6,10,3,2,1,46,2,1,3,7,8,15,0,0,0,4,1
+33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
+16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
+24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
+22,5,3,3,1,9,1,1,0,27,1,12,43,0,0,4,1
+24,5,2,4,1,34,1,1,3,26,8,9,11,0,0,4,0
+17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
+20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
+31,8,2,2,1,15,1,1,0,5,1,14,5,0,0,4,1
+16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
diff --git a/DATA/Datasets/Bank/LR/DO_14.data b/DATA/Datasets/Bank/LR/DO_14.data
index ace5f0e6..eb90ef79 100644
--- a/DATA/Datasets/Bank/LR/DO_14.data
+++ b/DATA/Datasets/Bank/LR/DO_14.data
@@ -1,1400 +1,1400 @@
-37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
-42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
-9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
-19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
-17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
-17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
-15,7,3,3,1,58,1,1,0,10,1,14,22,0,0,4,1
-23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
-27,1,2,1,1,31,2,1,3,26,8,9,0,0,0,4,0
-20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
+13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
+37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
+32,10,2,1,1,17,1,1,3,26,8,1,11,0,0,4,0
+17,1,2,4,1,51,2,1,3,12,8,14,11,0,0,4,1
+23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
+19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
 10,8,3,2,1,53,2,1,3,27,8,3,22,0,0,4,1
-44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
-16,1,2,2,1,31,2,1,3,15,8,15,0,0,0,4,1
-20,10,3,2,1,21,2,1,3,26,8,6,0,0,0,4,0
-30,1,2,2,1,17,2,1,3,5,8,12,11,0,0,4,1
-21,10,2,2,1,46,2,1,0,9,3,4,11,181,1,1,1
-18,1,2,1,1,58,2,1,3,13,8,12,11,0,0,4,1
-7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
-16,10,2,2,1,10,1,1,0,17,1,4,1,0,0,4,1
-9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
-23,1,2,1,1,31,2,1,3,6,8,1,0,0,0,4,1
-16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
-27,0,2,2,1,18,2,1,3,15,8,15,22,0,0,4,1
-29,3,3,3,1,43,1,1,3,3,6,16,43,0,0,4,1
-29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
-15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
-14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
-13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
+14,8,2,2,1,71,2,1,0,12,10,10,11,38,1,0,1
+41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
+17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
+26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
+32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
+39,10,2,2,1,64,1,1,2,20,11,4,0,0,0,4,1
+33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
+21,10,2,2,1,29,1,1,0,9,3,6,33,0,0,4,1
+40,6,2,4,1,71,2,1,3,26,8,12,0,0,0,4,0
+25,1,3,2,1,64,2,1,3,12,6,11,11,0,0,4,1
+23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
+39,10,0,2,1,37,1,1,0,5,1,13,11,0,0,4,1
+9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
+21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
+38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+4,9,3,2,1,9,1,1,0,27,3,7,43,0,0,4,1
+11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
+25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
+8,11,3,2,1,12,1,1,0,30,5,11,0,0,0,4,1
+22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
+14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
+25,7,2,2,1,17,2,1,0,13,10,10,0,0,0,4,1
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
+12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
+8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
+25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
 34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
-26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
-23,0,3,2,1,67,1,2,3,2,6,11,33,0,0,4,1
+37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
 41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
-18,5,3,3,1,26,1,2,0,12,10,13,0,0,0,4,1
-27,5,2,3,1,54,2,1,3,26,8,14,11,0,0,4,0
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-13,7,3,3,1,18,2,1,3,7,8,12,0,0,0,4,1
-8,8,3,2,1,18,1,1,2,15,11,5,0,0,0,4,1
-27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
-11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
-10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
-17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
-25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
-37,5,2,3,1,56,1,1,0,3,1,15,1,0,0,4,1
-34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
-28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
-33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
-19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
-40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
-15,8,3,2,1,21,1,1,0,28,5,13,0,0,0,4,1
-25,1,2,1,1,37,2,1,0,12,10,7,11,0,0,4,1
-33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
-32,5,2,4,1,67,1,1,0,19,3,6,0,178,1,0,1
-21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
-31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
-12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
-32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
-34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
-8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
-38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
-4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
-5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
-44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
-42,5,2,3,1,29,1,1,0,26,3,7,11,0,0,4,1
-41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
-24,0,2,2,1,10,1,1,3,2,6,2,33,0,0,4,1
-36,6,0,3,1,9,1,1,3,4,8,12,0,0,0,4,1
-42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
-7,8,3,2,1,40,1,2,0,6,5,1,11,0,0,4,1
-24,5,2,4,1,34,1,1,3,26,8,9,11,0,0,4,0
-4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
-14,8,2,1,1,29,2,1,0,13,5,0,43,0,0,4,1
-33,5,2,2,1,13,2,1,3,26,8,13,0,0,0,4,0
-18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
-16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
+10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
+17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
+21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
+20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
 20,2,3,3,1,30,1,2,3,26,8,5,0,0,0,4,0
-31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
-12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
-41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
-22,1,2,2,1,9,2,1,3,30,8,5,11,0,0,4,1
-17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
+19,10,3,3,1,9,1,1,3,0,5,1,11,0,0,4,1
+24,0,2,2,1,10,1,1,3,2,6,2,33,0,0,4,1
+22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
+28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
+10,1,3,2,1,65,2,1,3,30,8,13,0,0,0,4,1
+11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
+19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
+17,5,0,3,1,9,2,1,2,21,11,5,0,0,0,4,1
+11,8,3,2,1,3,2,1,3,25,6,11,0,0,0,4,1
+37,1,2,4,1,69,1,1,0,14,1,3,11,0,0,4,1
+7,5,2,2,1,28,2,1,0,15,5,13,0,0,0,4,1
+12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
+16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
+12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
+8,0,3,2,1,31,1,1,0,10,3,12,22,0,0,4,1
+31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
+28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
+35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
+34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
+29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
+25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
+32,7,2,2,1,9,1,1,0,4,1,12,11,0,0,4,1
+49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
+21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
+25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
+22,5,2,2,1,48,1,1,0,3,1,9,22,0,0,4,1
+39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
+35,10,0,1,1,18,2,1,3,5,8,10,0,0,0,4,1
+21,10,2,2,1,46,2,1,0,9,3,4,11,181,1,1,1
+20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
+40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
+17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
+15,5,3,3,1,63,1,1,0,19,1,10,46,0,0,4,1
+28,5,3,3,1,9,1,1,0,14,1,12,11,0,0,4,1
+19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
+18,5,2,3,1,16,1,1,3,10,6,6,0,0,0,4,1
+18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
+36,10,2,3,1,32,1,1,3,26,8,8,33,0,0,4,0
 22,2,0,2,1,37,2,1,0,9,5,12,22,0,0,4,1
-35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
-37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
-29,0,2,2,1,35,2,1,0,14,5,3,11,0,0,4,1
-22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
-20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
+34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
+23,2,2,1,1,44,2,1,0,13,10,11,11,0,0,4,1
+11,1,2,2,1,66,2,2,0,1,5,12,0,0,0,4,1
+23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
+12,7,2,3,1,22,1,1,3,8,11,7,0,0,0,4,1
+11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
+22,10,3,3,1,21,2,1,0,11,3,7,0,157,12,0,1
+41,6,0,2,1,61,1,1,0,23,5,13,33,0,0,4,1
+15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
+12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
+28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
+13,1,2,2,1,64,2,1,3,10,8,0,33,0,0,4,1
+9,1,3,2,1,31,2,1,3,21,8,13,0,0,0,4,1
+17,1,0,1,1,37,2,1,3,4,8,15,11,0,0,4,1
+28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
+28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
+26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
+28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
+14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
+40,5,2,3,1,47,2,1,2,5,10,5,0,0,0,4,1
+18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
+18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
+21,1,2,1,1,13,1,1,0,22,3,15,0,0,0,4,1
+36,0,0,2,1,24,1,1,0,4,3,10,38,0,0,4,1
+18,1,2,2,1,39,2,2,0,7,5,14,0,0,0,4,1
+5,8,3,2,1,61,2,1,3,20,8,2,0,0,0,4,1
+28,3,2,1,1,71,1,1,3,26,8,6,0,0,0,4,0
+27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
+25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
+37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
+13,5,0,3,1,36,2,1,0,8,5,11,38,0,0,4,1
+24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
+22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
+18,5,2,3,1,9,2,2,3,26,8,9,0,0,0,4,0
+8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
+12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
+33,3,0,2,1,70,1,1,0,9,5,12,33,0,0,4,1
+25,1,2,2,1,23,1,2,0,7,5,0,2,0,0,4,1
 14,10,0,3,1,54,1,1,0,14,1,12,11,0,0,4,1
-53,6,2,1,1,50,1,1,0,7,3,15,38,0,0,4,1
+8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
+23,10,3,2,1,60,2,1,0,12,10,7,22,0,0,4,1
+19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
+44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
+18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
+14,10,3,2,1,9,1,1,0,9,1,11,33,0,0,4,1
+15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
+23,8,0,2,1,67,2,1,0,11,3,15,0,0,0,4,1
+20,5,2,3,1,22,2,1,0,1,5,10,0,0,0,4,1
+17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
+24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
+28,10,0,2,1,9,1,2,2,8,11,7,0,0,0,4,1
+38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
+38,1,3,2,1,61,1,2,0,29,5,14,22,0,0,4,1
+15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
+10,10,3,2,1,69,1,2,0,28,5,11,0,0,0,4,1
+28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
+21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
+28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
+42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
+26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
+32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
+12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
+39,11,2,3,1,47,1,1,3,26,8,10,0,0,0,4,0
+40,6,2,1,1,14,1,1,0,9,1,6,11,0,0,4,1
 9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
+41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
+29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
+8,5,3,3,1,62,2,1,3,20,8,5,11,0,0,4,1
+21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
+12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
 10,8,2,2,1,53,2,2,0,29,5,6,11,0,0,4,1
-30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
-15,12,3,4,1,9,1,1,3,26,8,6,0,0,0,4,0
-22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
-11,10,3,3,1,29,1,1,0,11,3,3,0,0,0,4,1
-20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
-7,1,2,2,1,9,1,2,0,29,5,10,22,0,0,4,1
-28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
-23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
-28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
-13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
-18,5,2,3,1,71,1,1,0,23,5,13,33,0,0,4,1
-24,5,2,3,1,43,1,1,0,10,10,13,11,0,0,4,1
-35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
-39,0,2,2,1,27,1,1,0,10,1,12,33,0,0,4,1
-13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
-25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
-19,8,3,2,1,34,2,1,3,22,6,0,22,0,0,4,1
-20,2,2,3,1,9,1,1,0,15,5,11,11,0,0,4,1
-39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
-22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
-22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
-35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
-15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
-40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
-15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
-13,1,2,2,1,64,2,1,3,10,8,0,33,0,0,4,1
-22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
-17,8,2,2,1,9,2,1,3,26,8,10,0,0,0,4,0
-22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
-19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
-39,5,2,3,1,43,1,1,0,13,10,11,22,0,0,4,1
-41,5,2,2,1,16,1,1,3,30,6,9,22,0,0,4,1
-36,10,3,3,1,50,2,1,0,9,5,12,22,0,0,4,1
-33,7,2,2,1,70,2,1,0,15,5,3,33,0,0,4,1
-22,2,2,3,2,9,1,1,3,10,6,15,33,0,0,4,1
-11,5,3,3,1,70,1,1,0,11,7,6,38,0,0,4,1
-27,1,2,2,1,12,2,1,3,14,11,12,0,0,0,4,1
-12,5,2,3,1,15,2,1,0,2,1,9,43,0,0,4,1
-11,0,0,3,2,9,1,2,0,30,5,9,22,0,0,4,1
-17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
-11,5,3,3,1,19,1,1,0,9,3,7,45,0,0,4,1
-24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
-28,5,3,3,1,35,2,1,3,23,8,16,11,0,0,4,1
-16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
-14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
-17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
-24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
-28,7,2,3,1,30,1,1,0,10,10,1,0,3,30,0,1
-40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
-8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
-17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
-14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
-23,10,3,2,1,60,2,1,0,12,10,7,22,0,0,4,1
-32,11,2,1,1,63,1,1,3,26,6,10,0,0,0,4,1
-11,1,3,2,1,2,2,1,3,21,8,14,11,0,0,4,1
-42,6,2,1,1,58,2,1,3,26,8,7,0,0,0,4,0
-15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-24,11,0,2,1,22,2,1,3,23,8,14,11,0,0,4,1
-8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
-40,5,0,3,1,56,1,1,0,11,3,10,0,0,0,4,1
-32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
-30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
-33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
-12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
-18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
-32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
-29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
-12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
-9,9,2,2,1,13,2,1,0,7,5,13,11,0,0,4,1
-17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
-15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
-31,10,3,2,1,2,2,2,0,8,10,10,0,0,0,4,1
-12,7,2,3,1,22,1,1,3,8,11,7,0,0,0,4,1
-7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
-35,1,2,2,1,59,1,1,0,22,3,7,0,0,0,4,1
-42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
-14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
-26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
-16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
-23,8,0,2,1,67,2,1,0,11,3,15,0,0,0,4,1
-25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
-42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
-14,8,3,4,1,30,1,1,0,8,10,1,11,0,0,4,1
-38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
-21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
-32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
-25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
-32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
-24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
-21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
-23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
-21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
-30,1,2,1,1,63,1,2,0,2,1,9,38,0,0,4,1
-22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
-27,5,2,3,1,61,1,1,3,12,6,12,22,0,0,4,1
-28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
-25,1,2,2,1,23,1,2,0,7,5,0,2,0,0,4,1
-33,0,2,2,1,70,1,1,0,26,1,1,0,0,0,4,1
-11,1,2,2,1,66,2,2,0,1,5,12,0,0,0,4,1
-39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
-26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
-33,1,2,2,1,32,2,1,3,26,8,13,0,0,0,4,0
-35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
-16,8,2,2,1,2,2,2,3,26,8,13,0,0,0,4,0
-34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
-10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
-10,0,3,2,1,2,1,2,0,1,5,13,11,0,0,4,1
-30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
-9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
-12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
-14,1,3,3,1,62,1,1,3,4,10,15,0,0,0,4,1
-42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
-27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
-35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
-37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
-18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
-42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
-32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
-37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
-41,1,0,1,1,15,1,2,0,28,5,14,0,0,0,4,1
-12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
-10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
-28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
-23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
-17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
-18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
-6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
-11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
-19,5,2,3,1,46,2,1,0,11,3,8,11,82,30,1,1
-24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
-16,2,2,3,1,11,2,1,0,26,3,3,1,0,0,4,1
-41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
-19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
-13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
-31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
-27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
-8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
-33,1,2,1,1,9,2,2,0,17,5,15,22,0,0,4,1
-15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
-25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
-36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
-37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
-40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
-15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
-21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
-18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
-13,5,0,3,1,36,2,1,0,8,5,11,38,0,0,4,1
-25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
-23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
-14,8,3,2,1,57,2,1,0,12,10,4,11,0,0,4,1
-26,8,0,2,1,53,2,2,3,19,8,8,11,0,0,4,1
-9,12,3,2,1,13,1,1,2,18,3,7,0,4,1,0,1
-31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
-42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
-18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
-28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
-15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
-23,1,2,2,1,55,2,1,0,1,5,11,0,0,0,4,1
-22,1,2,2,1,53,1,1,0,1,3,5,11,552,1,3,1
-23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
-13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
-34,6,0,3,1,43,2,2,3,7,6,13,33,0,0,4,1
-15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
-13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
-14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
-15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
-8,2,3,3,1,63,1,1,0,26,3,6,11,98,23,1,1
+20,1,0,2,1,23,2,1,0,20,5,1,33,0,0,4,1
+16,7,2,3,1,9,1,1,0,20,1,13,2,0,0,4,1
+42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
+10,10,3,2,1,16,1,1,0,19,3,13,0,0,0,4,1
+20,5,2,3,1,59,1,1,0,22,3,7,0,0,0,4,1
+37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
+29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
+15,5,2,3,1,20,1,1,0,27,3,6,11,0,0,4,1
+51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
+17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
+35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
+18,5,2,3,1,9,2,1,2,15,11,4,0,49,24,0,1
+25,5,2,3,1,17,2,1,0,10,10,0,0,108,12,1,1
+25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
+29,0,2,2,1,35,2,1,0,14,5,3,11,0,0,4,1
+16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
 18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
-20,1,2,1,1,57,2,1,3,25,6,16,11,0,0,4,1
-41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
-31,2,0,4,2,7,2,1,0,23,5,16,11,0,0,4,1
-8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
-21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
-28,1,2,1,1,68,1,1,0,27,1,16,0,0,0,4,1
-20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
-13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
-28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
-18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
-13,5,3,3,1,39,1,1,0,11,3,7,0,502,1,0,1
-13,7,2,3,1,70,1,1,0,14,1,11,11,0,0,4,1
-17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
-16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
-41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
-26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
-28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
-20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
-17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
-29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
-26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
-22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
-21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
-41,1,2,1,1,23,2,1,3,26,8,11,22,0,0,4,0
-28,5,0,3,1,15,1,1,0,2,1,13,22,0,0,4,1
-14,5,0,3,1,68,1,1,0,3,1,3,43,0,0,4,1
-41,3,2,1,1,9,1,1,0,26,1,1,0,0,0,4,1
-42,1,2,4,1,10,2,1,3,26,8,7,0,0,0,4,0
-41,6,2,2,1,19,2,2,3,5,8,1,11,0,0,4,1
-7,5,3,3,1,31,1,1,0,8,3,10,0,0,0,4,1
-9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
-15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
-20,10,2,3,1,25,1,1,0,26,1,3,11,0,0,4,1
-14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-22,6,2,1,1,9,2,2,3,26,8,6,0,0,0,4,0
-26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
-19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
-20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
-38,5,2,3,1,59,1,1,0,27,3,5,0,0,0,4,1
-33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
-18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
-27,10,3,3,1,9,1,1,0,9,1,13,33,0,0,4,1
-23,1,2,2,1,17,2,1,3,6,8,2,33,0,0,4,1
-15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
-14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
-31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
-19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
-25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
-38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
-34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
-22,5,2,2,1,48,1,1,0,3,1,9,22,0,0,4,1
-19,8,2,2,1,19,2,1,0,7,3,4,11,0,0,4,1
-37,10,2,2,2,4,1,1,0,11,3,13,0,0,0,4,1
-12,10,3,2,1,34,1,1,0,13,10,10,22,0,0,4,1
-12,5,2,2,1,68,1,1,0,3,1,10,11,0,0,4,1
-41,6,0,2,1,10,1,1,3,26,10,12,0,0,0,4,1
-21,0,2,2,1,15,2,2,0,25,3,3,11,0,0,4,1
-39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
-15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
-17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
-32,10,2,1,1,17,1,1,3,26,8,1,11,0,0,4,0
-8,0,3,2,1,31,1,1,0,10,3,12,22,0,0,4,1
-14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
-30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
-12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
-15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
-34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
-21,7,3,3,1,47,1,1,3,9,6,0,0,0,0,4,1
-31,8,2,2,1,67,1,1,0,29,1,13,33,0,0,4,1
-11,5,2,3,1,18,2,1,0,25,3,14,11,0,0,4,1
-40,2,2,3,1,65,2,1,2,30,5,16,0,0,0,4,1
-34,5,2,3,1,9,2,1,0,25,3,10,0,0,0,4,1
-16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
-24,8,2,2,1,17,2,1,0,11,7,13,33,0,0,4,1
-32,7,2,2,1,9,1,1,0,4,1,12,11,0,0,4,1
-24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
-16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
-23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
-24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
-29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
+15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
+18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
+33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
+39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
+29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
+9,5,3,3,1,19,2,1,0,7,5,10,0,0,0,4,1
+41,6,0,2,1,53,1,1,0,22,3,7,0,0,0,4,1
+18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
 35,1,2,1,1,56,1,1,0,20,1,7,43,0,0,4,1
-23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
-16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
-19,10,2,3,1,55,1,1,0,11,7,7,0,0,0,4,1
-16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
-24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
-42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
-6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
-28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
+27,11,2,2,1,26,1,1,2,11,3,14,0,0,0,4,1
+33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
+15,7,3,3,1,58,1,1,0,10,1,14,22,0,0,4,1
+29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
 12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
-40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
-15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
-41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
-42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
-19,5,0,3,1,22,1,1,0,6,5,10,38,0,0,4,1
-16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
-30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
-13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
-34,1,2,4,1,9,2,1,0,30,5,4,0,0,0,4,1
-32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
-12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
-14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
-20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
-34,3,2,2,1,45,2,1,3,5,8,15,22,0,0,4,1
-9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
-14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
-38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-19,5,3,3,1,49,2,1,0,4,1,15,43,0,0,4,1
-25,5,2,3,1,17,2,1,0,10,10,0,0,108,12,1,1
-8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
-37,3,2,1,1,27,1,1,3,10,6,15,11,0,0,4,1
-40,2,2,3,1,68,1,1,3,26,6,2,11,0,0,4,1
-16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
-40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
-26,1,2,2,1,18,2,1,3,26,8,7,11,0,0,4,0
-25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
-8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
-35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
-35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
-14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
-41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
-31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
-19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
-16,5,3,3,1,33,2,1,0,13,10,12,43,0,0,4,1
-24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
-14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
-19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
-10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
-23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
-23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
-17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
-13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
-18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
-9,5,3,3,1,19,2,1,0,7,5,10,0,0,0,4,1
-42,8,3,1,1,38,2,1,3,6,8,15,11,0,0,4,1
-21,10,2,2,1,9,2,1,3,26,8,6,0,0,0,4,0
-19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
-33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
-17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
-35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
-6,1,2,1,1,61,2,1,3,7,8,15,0,0,0,4,1
-23,8,2,2,1,9,2,1,3,26,8,1,11,0,0,4,0
-16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
-42,12,2,4,1,22,1,1,0,18,1,12,2,0,0,4,1
 18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
-35,1,2,1,1,64,2,1,0,22,3,4,11,0,0,4,1
-35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
-18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
+36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
+41,6,0,2,1,10,1,1,3,26,10,12,0,0,0,4,1
+12,8,3,2,2,4,2,1,0,9,5,10,0,0,0,4,1
+18,7,2,2,1,14,2,1,3,27,6,4,47,0,0,4,1
+13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
+36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
+16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
+13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
+8,0,3,2,1,10,1,2,0,29,5,12,11,0,0,4,1
+39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
+40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
+28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
+17,1,3,2,1,14,2,2,3,26,8,6,0,0,0,4,0
+25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
+19,2,0,2,1,22,2,2,3,4,8,13,43,0,0,4,1
 12,0,2,2,1,68,2,1,3,21,8,13,22,0,0,4,1
-17,1,3,2,1,45,2,1,3,30,8,12,33,0,0,4,1
-33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
-19,11,3,2,1,44,2,1,3,29,8,16,11,0,0,4,1
-41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
-43,5,2,2,1,71,1,1,0,9,1,16,43,0,0,4,1
-12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
-31,10,2,3,1,43,1,1,0,26,1,14,11,0,0,4,1
-29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
-23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
-13,10,2,2,2,4,2,1,0,9,5,10,11,0,0,4,1
-14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
-38,7,2,1,1,4,2,2,3,26,8,7,11,0,0,4,0
-28,10,2,2,1,41,1,2,0,19,3,2,0,0,0,4,1
-9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
-23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
-13,5,3,3,1,67,2,1,3,13,8,10,11,0,0,4,1
-27,2,2,3,1,25,2,1,0,12,10,14,38,0,0,4,1
-11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
-33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
-24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
-7,10,3,2,1,51,1,1,0,16,5,13,0,0,0,4,1
+28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
+33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
+55,6,2,3,1,50,1,1,0,8,3,8,0,0,0,4,1
+12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
+13,10,3,3,1,12,1,1,0,26,3,12,0,74,12,0,1
+18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
+38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+19,5,2,3,1,46,2,1,0,11,3,8,11,82,30,1,1
+17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
+54,6,2,3,1,9,1,1,0,4,3,16,0,0,0,4,1
+15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
 19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
-14,5,3,3,1,32,2,1,0,13,5,12,22,0,0,4,1
-16,10,3,3,1,72,2,1,0,26,3,13,11,0,0,4,1
-39,1,2,4,1,42,1,1,2,5,10,5,0,0,0,4,1
-17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
+19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
+17,5,2,3,1,68,2,1,3,11,6,7,22,0,0,4,1
+25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
+7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
+14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
+23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
+41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
+21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
+30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
+34,3,2,1,1,44,2,1,0,8,5,2,0,0,0,4,1
 14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
-15,5,3,3,1,37,2,1,0,14,5,1,0,0,0,4,1
-30,1,2,2,1,20,2,1,3,5,8,13,0,0,0,4,1
-13,0,2,2,1,37,2,1,3,30,8,11,0,0,0,4,1
-10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
-21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
-41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
-20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
-30,2,2,3,2,4,1,1,0,24,5,13,33,0,0,4,1
+9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
+22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
+20,1,3,3,1,35,2,1,3,12,6,4,1,0,0,4,1
+16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
+34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
+15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
+28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
+12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
 14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
-13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
-34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
-19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
-15,5,2,3,1,22,1,1,0,3,3,9,0,0,0,4,1
-22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
-17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
-13,5,0,3,1,43,1,1,0,1,3,3,43,0,0,4,1
-23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
-23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
-30,5,2,3,1,54,2,1,3,12,6,13,0,0,0,4,1
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
-19,10,3,3,1,58,1,1,0,27,3,4,0,0,0,4,1
-27,10,2,3,1,43,2,1,3,10,6,14,22,0,0,4,1
-14,8,3,2,1,2,2,1,3,13,8,12,22,0,0,4,1
-33,7,2,3,1,55,2,2,0,24,5,11,33,0,0,4,1
-39,5,2,3,1,9,2,2,3,12,6,5,0,0,0,4,1
-43,6,2,2,1,65,1,1,0,27,1,10,33,0,0,4,1
-14,8,3,2,1,65,2,1,3,6,8,12,22,0,0,4,1
-33,2,2,3,1,54,2,1,3,15,11,3,0,0,0,4,1
-20,0,0,2,1,24,2,1,0,26,3,1,22,167,12,3,1
-25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
-39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
-22,8,3,2,1,19,2,1,0,12,10,9,0,0,0,4,1
-29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
-11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
-34,5,2,3,1,34,2,1,3,26,8,16,0,0,0,4,0
-12,1,3,2,1,23,2,1,0,9,5,11,0,0,0,4,1
-33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
-26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
-18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
-26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
-31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
+39,8,2,2,1,20,2,1,3,26,8,5,0,0,0,4,0
+20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
+13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
+14,5,3,3,1,65,1,1,0,21,1,12,11,0,0,4,1
+26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
+15,1,3,2,1,62,1,1,0,27,3,14,11,0,0,4,1
+13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
+40,5,0,3,1,56,1,1,0,11,3,10,0,0,0,4,1
+24,5,2,4,1,34,1,1,3,26,8,9,11,0,0,4,0
 15,10,2,3,1,62,1,1,0,12,10,13,0,3,2,1,1
-32,10,2,2,1,47,2,1,3,26,6,10,38,0,0,4,1
-27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
-24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
-11,8,3,2,1,3,2,1,3,25,6,11,0,0,0,4,1
-12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
-12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
-31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
-36,8,2,4,1,44,1,2,3,12,6,14,0,0,0,4,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
-7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
-14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
-37,1,2,2,1,44,1,1,3,26,8,8,0,0,0,4,0
-15,5,2,3,1,17,2,1,3,10,1,10,0,0,0,4,1
-27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
-19,2,0,2,1,22,2,2,3,4,8,13,43,0,0,4,1
-19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
-12,0,3,2,1,38,2,1,0,25,3,1,11,0,0,4,1
-28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
-36,1,2,1,1,41,2,1,3,26,8,11,11,0,0,4,0
-10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
-12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
-23,8,2,4,2,9,1,2,0,23,5,2,33,0,0,4,1
-40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
-15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
-25,10,0,4,1,26,2,1,3,26,8,4,0,0,0,4,0
-29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
-13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
-39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
-17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
-34,5,3,3,1,67,1,1,0,18,1,2,43,0,0,4,1
-31,1,3,1,1,56,2,1,0,17,5,16,11,0,0,4,1
-18,7,3,3,1,14,1,1,0,24,5,14,22,0,0,4,1
-30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
-26,1,2,4,1,18,2,1,3,6,8,10,0,0,0,4,1
-9,10,3,2,1,45,1,1,0,20,5,14,22,0,0,4,1
-17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
-35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
-24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
-27,2,2,4,1,38,2,2,0,1,5,14,0,0,0,4,1
-30,5,2,3,1,9,1,1,2,1,10,7,0,0,0,4,1
-28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
-22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
-19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
-37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
-30,5,2,3,1,25,2,1,3,4,8,12,11,0,0,4,1
-41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
-18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
-19,3,2,2,1,64,1,2,0,26,3,12,22,0,0,4,1
-7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
-18,7,3,3,1,0,2,2,2,8,11,8,0,0,0,4,1
-12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
-14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
-25,6,2,2,1,68,1,1,2,23,11,3,0,0,0,4,1
-28,10,3,2,1,68,1,1,0,10,10,14,22,0,0,4,1
-12,1,3,2,1,71,2,1,3,11,6,13,11,0,0,4,1
-41,10,0,2,1,30,1,1,0,12,10,10,0,0,0,4,1
-35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
-29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
-14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
-22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
-15,11,2,2,1,1,1,1,0,23,5,10,22,0,0,4,1
-31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
-15,1,3,1,1,15,2,1,3,21,8,1,11,0,0,4,1
-9,10,3,3,1,70,2,1,0,25,3,1,0,0,0,4,1
-29,5,2,2,1,35,1,1,3,8,6,11,0,0,0,4,1
-22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
-15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
-20,8,0,2,1,58,1,1,3,26,6,12,0,0,0,4,1
-37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
-35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
-35,5,0,2,1,9,1,2,2,14,2,2,0,0,0,4,1
-15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
-21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
-29,0,0,2,1,28,1,1,0,20,1,1,33,0,0,4,1
-8,10,3,3,1,19,1,1,0,11,3,8,0,0,0,4,1
-39,10,0,3,1,71,1,1,0,13,1,15,33,0,0,4,1
-18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
-35,11,2,4,1,15,1,1,3,26,8,9,22,0,0,4,0
-28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
-8,9,3,2,1,9,2,1,3,26,8,11,11,0,0,4,0
-14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
-33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
-39,1,2,2,1,19,2,1,0,8,10,11,0,0,0,4,1
-24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
-21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
-27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
-23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
-36,10,2,3,1,32,1,1,3,26,8,8,33,0,0,4,0
-13,1,3,2,1,37,2,1,3,26,8,6,11,0,0,4,0
-14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
+10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
+8,2,3,3,1,63,1,1,0,26,3,6,11,98,23,1,1
+53,6,2,1,1,50,1,1,0,7,3,15,38,0,0,4,1
+20,8,3,2,1,56,2,1,3,26,8,13,11,0,0,4,0
+24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
+15,10,3,2,1,10,2,1,3,26,8,7,11,0,0,4,0
+9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
+28,5,0,3,1,15,1,1,0,2,1,13,22,0,0,4,1
+21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
+17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
+9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
+13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
+18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
+17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+28,5,2,2,1,18,1,1,0,13,10,2,11,0,0,4,1
+35,10,2,3,1,71,1,1,0,12,1,4,38,0,0,4,1
+14,7,3,3,1,44,2,1,0,9,10,10,0,0,0,4,1
+20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
+11,10,3,3,1,29,1,1,0,11,3,3,0,0,0,4,1
+28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
+29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
+13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
+33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
+22,1,2,2,1,9,2,1,3,30,8,5,11,0,0,4,1
+31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
+21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
+22,10,0,2,1,38,1,1,0,27,1,13,11,0,0,4,1
+44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
+32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
+15,8,3,3,1,45,2,1,0,15,5,3,43,0,0,4,1
+29,10,2,2,1,67,1,2,0,13,10,15,0,38,12,1,1
+28,1,2,1,1,68,1,1,0,27,1,16,0,0,0,4,1
+35,1,2,2,1,59,1,1,0,22,3,7,0,0,0,4,1
+27,1,0,1,1,2,1,1,0,6,5,14,11,0,0,4,1
+13,7,3,3,1,23,1,1,2,30,3,5,0,0,0,4,1
+37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
+11,5,2,3,1,38,1,1,3,20,8,15,11,0,0,4,1
+5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+7,10,3,2,1,51,1,1,0,16,5,13,0,0,0,4,1
 19,10,3,2,1,71,1,1,0,29,1,3,38,0,0,4,1
-29,1,2,2,1,12,2,1,0,21,4,1,0,0,0,4,1
-11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
-40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
-33,3,0,2,1,70,1,1,0,9,5,12,33,0,0,4,1
-28,0,2,2,1,61,2,1,2,21,5,1,2,0,0,4,1
-14,0,0,2,1,3,1,2,3,19,6,14,11,0,0,4,1
-13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
-18,7,2,2,1,14,2,1,3,27,6,4,47,0,0,4,1
-20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
-10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
-31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
-20,1,0,2,1,23,2,1,0,20,5,1,33,0,0,4,1
-22,5,2,3,1,61,1,1,0,4,1,13,33,0,0,4,1
-28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
-26,7,2,3,1,13,1,1,0,12,1,11,38,0,0,4,1
-10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
-41,6,2,1,1,20,2,2,0,26,1,14,0,0,0,4,1
-22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
-40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
-16,8,3,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
-51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
-33,2,2,4,1,58,2,1,3,20,8,11,47,0,0,4,1
-14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
-17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
-17,1,3,2,1,14,2,2,3,26,8,6,0,0,0,4,0
-14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
-18,5,2,3,1,9,2,2,3,26,8,9,0,0,0,4,0
-32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
-17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
-13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
+21,10,3,3,1,50,2,1,3,26,8,6,0,0,0,4,0
+16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
+20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
+8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
+26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
+39,5,2,3,1,43,1,1,0,13,10,11,22,0,0,4,1
+38,5,2,3,1,59,1,1,0,27,3,5,0,0,0,4,1
+23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
+13,11,3,1,1,46,1,1,0,25,3,13,0,0,0,4,1
+12,1,3,2,1,71,2,1,3,11,6,13,11,0,0,4,1
+14,7,2,3,1,17,1,1,0,27,1,3,33,0,0,4,1
+6,10,3,2,1,46,2,1,3,7,8,15,0,0,0,4,1
+11,5,3,3,1,19,1,1,0,9,3,7,45,0,0,4,1
+38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
+32,5,2,4,1,67,1,1,0,19,3,6,0,178,1,0,1
+55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
+16,5,3,3,1,33,2,1,0,13,10,12,43,0,0,4,1
+18,1,2,1,1,58,2,1,3,13,8,12,11,0,0,4,1
+18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
+23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
+13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
+14,5,2,3,1,9,2,1,3,26,8,6,0,0,0,4,0
+27,0,2,2,1,18,2,1,3,15,8,15,22,0,0,4,1
+29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
+31,10,3,2,1,2,2,2,0,8,10,10,0,0,0,4,1
+21,7,2,3,1,33,1,1,3,3,6,12,38,0,0,4,1
 31,8,2,2,1,50,1,1,3,26,8,7,11,0,0,4,0
-15,5,3,3,1,40,2,1,3,26,8,7,0,0,0,4,0
-37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
-23,10,2,3,1,53,1,1,0,26,1,14,11,0,0,4,1
-40,5,2,4,1,11,2,1,3,26,8,7,22,0,0,4,0
+18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
+18,7,2,3,1,24,1,1,3,26,8,6,11,0,0,4,0
+17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
+12,0,3,3,1,9,2,1,0,25,3,13,11,0,0,4,1
+14,8,3,2,1,57,2,1,0,12,10,4,11,0,0,4,1
+12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
+25,6,2,2,1,68,1,1,2,23,11,3,0,0,0,4,1
+15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
+19,10,2,3,1,55,1,1,0,11,7,7,0,0,0,4,1
+14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
+16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+26,1,2,2,1,57,2,1,3,26,8,10,0,0,0,4,0
+24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
+23,0,3,2,1,67,1,2,3,2,6,11,33,0,0,4,1
+25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
+10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
+15,1,3,1,1,15,2,1,3,21,8,1,11,0,0,4,1
+13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
+18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
+10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
+20,10,0,3,1,23,1,1,3,30,6,15,11,0,0,4,1
+22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
 9,5,3,1,2,15,1,1,0,23,4,10,22,0,0,4,1
-9,0,2,3,1,63,1,1,0,1,3,5,0,0,0,4,1
+36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+12,10,3,2,1,34,1,1,0,13,10,10,22,0,0,4,1
+38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
+26,11,2,2,1,9,2,1,0,11,3,12,0,190,1,0,1
+19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
+42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
+17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
+38,5,0,3,1,47,2,1,3,8,6,10,33,0,0,4,1
+46,6,2,1,1,48,1,1,0,27,3,10,0,0,0,4,1
+25,1,2,1,1,37,2,1,0,12,10,7,11,0,0,4,1
+24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
+24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
 22,1,2,2,1,9,2,2,3,12,6,0,38,0,0,4,1
-22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
-14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
-13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
-39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
-13,10,3,3,1,12,1,1,0,26,3,12,0,74,12,0,1
-18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
-29,11,2,1,1,39,1,1,0,13,10,10,11,0,0,4,1
-15,5,2,3,1,20,1,1,0,27,3,6,11,0,0,4,1
-15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
-41,6,2,1,1,40,2,1,0,26,1,10,22,0,0,4,1
-7,5,2,2,1,28,2,1,0,15,5,13,0,0,0,4,1
-13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
-12,5,3,3,1,52,1,1,0,2,1,11,11,0,0,4,1
-29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
-33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
-33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
-22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
-15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
-18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
-20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
-12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
-13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
-18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-28,10,2,2,1,16,1,1,0,9,1,11,38,0,0,4,1
-31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
+40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
+19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
+29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
+38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
+16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
+30,5,2,3,1,54,2,1,3,12,6,13,0,0,0,4,1
+22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
+39,1,2,4,1,42,1,1,2,5,10,5,0,0,0,4,1
+37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
+13,5,3,3,1,39,1,1,0,11,3,7,0,502,1,0,1
+42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
+36,6,3,2,1,15,1,2,0,20,5,14,11,0,0,4,1
+34,1,2,4,1,9,2,1,0,30,5,4,0,0,0,4,1
+41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
+7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
+13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
+9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
+14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
+33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
+16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
 20,10,2,2,1,28,2,1,3,23,8,13,22,0,0,4,1
-16,1,2,1,1,41,2,1,0,13,10,0,0,0,0,4,1
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
-26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
-31,8,2,2,1,15,1,1,0,5,1,14,5,0,0,4,1
-14,10,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-31,5,2,2,1,31,1,1,2,27,10,7,0,0,0,4,1
-19,10,3,2,1,3,2,1,0,4,1,2,43,0,0,4,1
-31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
-51,6,2,1,1,29,1,1,0,2,3,9,11,0,0,4,1
-7,10,3,2,1,14,2,1,0,19,3,9,38,0,0,4,1
-17,9,3,2,1,24,2,1,0,7,3,13,22,112,33,0,1
-24,1,3,1,1,20,2,1,0,17,5,11,46,0,0,4,1
-14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
-26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
-9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
-17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
-29,1,2,1,1,1,2,1,3,26,8,6,0,0,0,4,0
-15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
-19,10,3,2,1,12,1,1,0,18,3,4,0,0,0,4,1
-17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
-28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
-15,1,3,2,1,62,1,1,0,27,3,14,11,0,0,4,1
-10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
-39,5,2,3,1,70,1,2,3,12,6,1,11,0,0,4,1
-29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
-36,5,2,3,1,9,1,1,3,26,8,2,11,0,0,4,0
-36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
-24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
-38,1,2,2,1,31,2,1,3,21,8,13,11,0,0,4,1
-36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
-16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
-35,1,2,1,1,47,2,1,0,12,10,12,0,0,0,4,1
-40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
-22,0,2,1,1,63,2,2,0,13,10,14,0,0,0,4,1
-26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
-27,11,2,2,1,26,1,1,2,11,3,14,0,0,0,4,1
-30,5,2,2,1,33,2,1,0,20,5,10,45,0,0,4,1
-35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
-38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
-22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-42,6,0,2,1,27,2,1,3,26,8,7,0,0,0,4,0
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
-57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
-21,10,2,2,1,29,1,1,0,9,3,6,33,0,0,4,1
-13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
-11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
-23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
-29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
-10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
-18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
-36,0,0,2,1,24,1,1,0,4,3,10,38,0,0,4,1
-11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
-7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
-13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
+24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
+41,8,2,2,1,2,2,1,3,18,8,13,22,0,0,4,1
+11,5,3,3,1,70,1,1,0,11,7,6,38,0,0,4,1
+43,5,2,2,1,71,1,1,0,9,1,16,43,0,0,4,1
+8,1,3,1,1,46,2,1,0,13,5,11,11,0,0,4,1
+7,5,3,3,1,31,1,1,0,8,3,10,0,0,0,4,1
+41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
+40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
+16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+12,5,2,2,1,68,1,1,0,3,1,10,11,0,0,4,1
+27,0,0,3,1,19,1,1,0,20,5,9,33,0,0,4,1
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
+30,11,3,3,1,39,1,1,3,7,6,1,0,0,0,4,1
 18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
-31,5,0,3,1,64,1,1,0,24,5,2,33,0,0,4,1
-31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
-34,6,2,4,1,36,1,1,3,2,6,12,0,0,0,4,1
-18,7,2,3,1,24,1,1,3,26,8,6,11,0,0,4,0
-35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
-31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
-6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
-23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
-37,1,2,1,1,59,2,1,3,26,8,7,0,0,0,4,0
-13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
-25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
-8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
-37,1,2,4,1,69,1,1,0,14,1,3,11,0,0,4,1
-20,9,3,3,1,40,1,1,3,8,6,3,22,0,0,4,1
-41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
-57,6,2,1,1,42,1,1,0,8,3,9,2,0,0,4,1
-36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
-12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
-31,5,2,3,1,9,1,1,2,8,11,7,0,0,0,4,1
-39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
-19,1,2,1,1,9,2,1,3,26,8,13,0,0,0,4,0
-28,10,0,2,1,9,1,2,2,8,11,7,0,0,0,4,1
-46,6,2,1,1,48,1,1,0,27,3,10,0,0,0,4,1
-24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
-20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
-19,10,3,3,1,9,1,1,3,0,5,1,11,0,0,4,1
-27,1,2,1,1,9,2,1,3,3,8,10,38,0,0,4,1
-18,2,0,3,1,65,1,2,0,28,5,13,22,0,0,4,1
-38,5,2,3,1,65,2,1,3,26,8,5,0,0,0,4,0
-21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
-19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
-35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
-35,11,0,2,1,57,1,1,0,10,10,11,0,0,0,4,1
-20,10,0,3,1,23,1,1,3,30,6,15,11,0,0,4,1
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
-25,7,0,2,1,41,1,1,0,10,10,4,22,0,0,4,1
-36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
-27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
-18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
-16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
-21,9,3,3,1,27,1,1,0,11,3,11,0,0,0,4,1
+9,0,2,3,1,63,1,1,0,1,3,5,0,0,0,4,1
+14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
+14,5,3,3,1,32,2,1,0,13,5,12,22,0,0,4,1
+29,11,2,1,1,39,1,1,0,13,10,10,11,0,0,4,1
+25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
+33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
+31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
+11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
+34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
+25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
+51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
+11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
+37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
+33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
+13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
+37,3,2,1,1,27,1,1,3,10,6,15,11,0,0,4,1
+26,8,0,2,1,53,2,2,3,19,8,8,11,0,0,4,1
+26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
+19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
+18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
+40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
+40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
+10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
 12,10,3,3,1,22,1,1,0,8,5,12,22,0,0,4,1
-12,10,3,2,1,68,2,1,3,7,8,2,38,0,0,4,1
-20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
-23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
-14,5,3,3,1,24,1,1,0,17,1,10,38,0,0,4,1
-7,9,3,2,1,30,1,1,0,26,3,7,45,0,0,4,1
-22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-15,8,2,2,1,66,2,1,3,26,8,9,0,0,0,4,0
-7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
-31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
-8,1,3,2,1,67,2,1,3,30,8,12,0,0,0,4,1
-30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
-9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
-18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
-11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
-21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
-29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
-14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
-32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
-23,1,0,2,1,54,2,1,3,5,8,4,22,0,0,4,1
+15,5,2,3,1,17,2,1,3,10,1,10,0,0,0,4,1
+12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
+30,11,2,2,1,46,2,1,3,26,8,6,11,0,0,4,0
+18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
+41,6,2,2,1,19,2,2,3,5,8,1,11,0,0,4,1
+13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
+14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
+14,5,0,3,1,28,1,2,0,6,5,14,33,0,0,4,1
 42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
-7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
-19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
-20,5,2,3,1,44,2,1,2,20,11,5,0,0,0,4,1
-41,6,0,2,1,53,1,1,0,22,3,7,0,0,0,4,1
-21,8,2,3,1,18,1,1,0,30,3,15,22,0,0,4,1
-37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
-36,8,2,2,1,27,2,1,3,26,8,10,11,0,0,4,0
-72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
-22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
-29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
-40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
-29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
-16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
+8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
+18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
+13,1,3,2,1,37,2,1,3,26,8,6,11,0,0,4,0
+15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
+17,5,2,3,1,22,1,1,0,24,5,9,33,0,0,4,1
+37,5,2,3,1,56,1,1,0,3,1,15,1,0,0,4,1
+35,0,0,4,1,32,1,1,0,2,5,3,11,0,0,4,1
+30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
 12,0,3,2,1,4,1,1,0,7,5,11,47,0,0,4,1
-18,8,2,2,1,17,2,2,3,26,8,9,0,0,0,4,0
-8,1,2,2,1,0,2,2,0,8,5,2,22,0,0,4,1
-36,6,2,2,1,54,2,1,3,26,8,4,0,0,0,4,0
-10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
-25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
-41,0,2,2,1,9,2,1,0,1,5,16,0,0,0,4,1
-13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
-12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
-22,5,3,3,1,9,1,1,0,27,1,12,43,0,0,4,1
-14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
-11,7,3,3,1,14,2,1,3,23,8,4,11,0,0,4,1
-7,10,3,2,1,10,1,2,0,29,5,11,11,0,0,4,1
-10,7,3,2,1,56,2,1,0,30,3,12,33,0,0,4,1
-17,2,0,2,1,7,2,1,3,26,8,8,0,0,0,4,0
-29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
-18,1,2,2,1,22,1,1,3,26,6,6,0,0,0,4,1
-19,8,2,2,1,25,2,1,2,26,10,7,0,0,0,4,1
-26,8,2,2,1,16,2,2,3,26,8,7,0,0,0,4,0
-22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
-26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
-20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
-7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
-39,6,0,3,1,64,1,1,0,27,1,3,33,0,0,4,1
-18,5,2,3,1,16,1,1,3,10,6,6,0,0,0,4,1
-10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
-41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
-21,8,3,4,1,32,2,1,3,26,8,9,0,0,0,4,0
-40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
+27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
+26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
+19,5,3,3,1,58,2,1,3,26,8,4,0,0,0,4,0
+14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
+31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
+21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
+33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
+12,0,0,2,1,43,2,1,3,25,6,10,6,0,0,4,1
+27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
+31,5,0,3,1,64,1,1,0,24,5,2,33,0,0,4,1
+14,5,3,3,1,50,1,1,0,13,1,13,43,0,0,4,1
+37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
+12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
+12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
+25,7,0,2,1,41,1,1,0,10,10,4,22,0,0,4,1
+13,11,3,1,1,20,1,1,0,23,4,13,11,110,1,1,1
+41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
+7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
+17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
+33,2,2,4,1,58,2,1,3,20,8,11,47,0,0,4,1
+32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
+37,10,2,2,1,14,2,1,3,26,8,5,11,0,0,4,0
+39,10,0,3,1,71,1,1,0,13,1,15,33,0,0,4,1
+23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
+8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
+42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
+9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
+14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
+31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
 19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
+35,5,0,2,1,9,1,2,2,14,2,2,0,0,0,4,1
+20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
+13,0,2,2,1,37,2,1,3,30,8,11,0,0,0,4,1
+36,6,2,2,1,54,2,1,3,26,8,4,0,0,0,4,0
+24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
+24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
+15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
+12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
+14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
+41,6,2,4,1,10,1,1,3,2,6,2,0,0,0,4,1
 12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
-23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
-43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
-32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
-12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
-8,11,3,2,1,12,1,1,0,30,5,11,0,0,0,4,1
-12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
-16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
-20,5,2,3,1,59,1,1,0,22,3,7,0,0,0,4,1
-34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
-40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
-13,10,3,3,1,35,1,1,3,29,10,5,0,0,0,4,1
-17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
-13,5,2,3,1,66,1,1,0,12,1,13,5,0,0,4,1
-11,5,2,3,1,38,1,1,3,20,8,15,11,0,0,4,1
-38,5,0,3,1,47,2,1,3,8,6,10,33,0,0,4,1
-17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
-9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
-32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
-12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
-23,1,3,2,2,11,2,2,0,28,5,11,0,0,0,4,1
-11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
-18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
-39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
-14,10,3,2,1,9,1,1,0,9,1,11,33,0,0,4,1
-8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
-23,1,2,1,1,31,1,1,3,10,6,12,22,0,0,4,1
-39,10,2,3,1,9,1,1,3,5,8,14,11,0,0,4,1
-13,5,2,3,1,61,1,1,0,28,1,2,0,0,0,4,1
+36,6,0,3,1,9,1,1,3,4,8,12,0,0,0,4,1
+24,8,2,2,1,65,1,1,0,20,4,16,0,0,0,4,1
+37,10,2,3,1,21,1,2,0,26,1,12,11,0,0,4,1
+23,1,2,2,1,17,2,1,3,6,8,2,33,0,0,4,1
+33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
+17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
+28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
+30,2,2,3,2,4,1,1,0,24,5,13,33,0,0,4,1
+9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
+10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
+6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
+12,1,3,2,1,23,2,1,0,9,5,11,0,0,0,4,1
+7,9,3,2,1,30,1,1,0,26,3,7,45,0,0,4,1
+20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
+35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
 18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
-40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
-36,5,2,2,1,12,2,1,0,17,5,3,22,0,0,4,1
-10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
-12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
-18,10,2,2,1,31,1,1,0,20,1,15,33,0,0,4,1
-14,5,2,3,1,9,2,1,3,26,8,6,0,0,0,4,0
-8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
-14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
-67,6,0,1,1,65,1,1,0,9,3,9,22,0,0,4,1
-22,7,3,3,1,20,1,1,2,20,5,0,45,0,0,4,1
+18,5,0,3,2,42,1,1,0,27,1,14,33,0,0,4,1
+12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
+41,1,0,1,1,15,1,2,0,28,5,14,0,0,0,4,1
+17,2,0,2,1,7,2,1,3,26,8,8,0,0,0,4,0
 32,0,2,2,1,63,2,1,0,27,1,3,33,0,0,4,1
-13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
-42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
-15,8,3,3,1,45,2,1,0,15,5,3,43,0,0,4,1
-39,10,2,2,1,64,1,1,2,20,11,4,0,0,0,4,1
-29,1,2,2,1,36,1,1,0,1,3,8,0,0,0,4,1
-8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
-34,5,2,3,1,14,1,1,0,14,1,1,33,0,0,4,1
-33,11,0,3,1,9,1,1,0,24,5,11,11,0,0,4,1
-35,1,2,2,1,9,2,2,3,26,8,6,0,0,0,4,0
-12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
-30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
-16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
-38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
-12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
-12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
-20,1,2,2,1,59,2,1,3,13,8,11,11,0,0,4,1
-23,1,0,1,1,61,1,2,0,6,5,15,38,0,0,4,1
-29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
-34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
+16,1,2,2,1,14,2,1,3,13,8,15,0,0,0,4,1
+10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
+21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
+15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
+42,12,2,4,1,22,1,1,0,18,1,12,2,0,0,4,1
+21,8,2,3,1,18,1,1,0,30,3,15,22,0,0,4,1
+12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
+11,7,3,3,1,14,2,1,3,23,8,4,11,0,0,4,1
+30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
+40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
+31,5,2,2,1,31,1,1,2,27,10,7,0,0,0,4,1
+18,5,2,3,1,71,1,1,0,23,5,13,33,0,0,4,1
+33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
+11,0,0,3,2,9,1,2,0,30,5,9,22,0,0,4,1
+39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
+22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
+11,1,3,2,1,51,1,2,0,1,5,1,22,0,0,4,1
+15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
+24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
+18,7,3,3,1,14,1,1,0,24,5,14,22,0,0,4,1
+25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
+28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
+34,6,0,3,1,43,2,2,3,7,6,13,33,0,0,4,1
+14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
+37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
+14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
+20,1,2,2,1,20,1,1,3,7,6,3,47,0,0,4,1
+31,8,2,2,1,44,1,1,2,24,5,0,33,0,0,4,1
+37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
+32,10,2,2,1,47,2,1,3,26,6,10,38,0,0,4,1
+39,0,2,2,1,27,1,1,0,10,1,12,33,0,0,4,1
+11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
+20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
+28,8,2,2,1,36,1,1,0,13,10,15,0,0,0,4,1
+31,10,2,3,1,43,1,1,0,26,1,14,11,0,0,4,1
+41,1,2,1,1,23,2,1,3,26,8,11,22,0,0,4,0
+22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
+26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
+14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
+36,5,2,2,1,46,1,1,3,26,8,4,0,0,0,4,0
+19,10,3,3,1,58,1,1,0,27,3,4,0,0,0,4,1
+26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
+8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
+41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
+41,3,2,1,1,9,1,1,0,26,1,1,0,0,0,4,1
+35,1,2,1,1,64,2,1,0,22,3,4,11,0,0,4,1
+11,1,3,2,1,2,2,1,3,21,8,14,11,0,0,4,1
+27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
+21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
+15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
+37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
+19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
+28,10,2,2,1,55,2,1,3,7,6,13,11,0,0,4,1
+16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
+34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
+10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
 40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
-9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
-28,1,2,2,1,49,1,2,0,9,1,12,43,0,0,4,1
-23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
-13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
-26,7,2,2,1,63,1,1,3,26,10,6,0,0,0,4,1
-31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
-19,10,2,3,1,15,2,1,0,4,3,13,0,0,0,4,1
-12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
-9,1,3,2,1,31,2,1,3,21,8,13,0,0,0,4,1
-18,1,2,1,1,46,2,2,3,12,8,1,11,0,0,4,1
-38,10,0,2,1,23,1,1,0,9,5,11,0,0,0,4,1
-29,10,2,2,1,67,1,2,0,13,10,15,0,38,12,1,1
-24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
-41,6,0,2,1,61,1,1,0,23,5,13,33,0,0,4,1
+26,1,2,2,1,18,2,1,3,26,8,7,11,0,0,4,0
+12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
+13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
+14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
+18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
+33,5,2,2,1,13,2,1,3,26,8,13,0,0,0,4,0
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
+14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
+30,5,2,2,1,33,2,1,0,20,5,10,45,0,0,4,1
+17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
+23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
+30,0,2,1,1,42,2,2,2,24,5,0,47,0,0,4,1
+35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
+48,6,2,1,1,26,1,1,0,30,3,10,0,0,0,4,1
+15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
+20,1,2,1,1,57,2,1,3,25,6,16,11,0,0,4,1
+25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
+9,10,3,2,1,45,1,1,0,20,5,14,22,0,0,4,1
+8,1,2,2,1,0,2,2,0,8,5,2,22,0,0,4,1
+12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
+13,5,3,3,1,23,1,1,0,3,1,10,22,0,0,4,1
+33,1,2,2,1,32,2,1,3,26,8,13,0,0,0,4,0
+40,7,0,3,1,17,1,1,3,30,6,12,0,0,0,4,1
+11,8,3,2,1,67,1,2,3,22,5,11,22,0,0,4,1
+27,2,2,2,1,65,1,2,0,8,10,12,11,30,12,0,1
+36,10,3,3,1,50,2,1,0,9,5,12,22,0,0,4,1
+7,1,2,2,1,9,1,2,0,29,5,10,22,0,0,4,1
+24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
+6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
+39,6,2,2,1,27,2,1,3,26,8,7,11,0,0,4,0
 19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
-27,1,0,1,1,2,1,1,0,6,5,14,11,0,0,4,1
-24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
-28,10,3,3,1,48,1,1,0,9,1,10,45,0,0,4,1
+22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
+17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
+26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
+16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
 21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
-28,3,2,1,1,71,1,1,3,26,8,6,0,0,0,4,0
-10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
-21,10,3,3,1,50,2,1,3,26,8,6,0,0,0,4,0
-17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
-29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
-38,1,3,2,1,61,1,2,0,29,5,14,22,0,0,4,1
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-39,6,2,2,1,51,2,1,3,26,8,6,11,0,0,4,0
-24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
-17,5,2,3,1,22,1,1,0,24,5,9,33,0,0,4,1
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-26,11,2,2,1,9,2,1,0,11,3,12,0,190,1,0,1
-21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
-14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
-21,8,2,2,1,54,1,1,2,11,3,4,22,0,0,4,1
-20,1,2,1,1,24,2,1,2,10,10,12,0,83,1,1,1
-30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
-35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
-19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
-18,5,2,3,1,9,2,1,2,15,11,4,0,49,24,0,1
-26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
-55,6,2,3,1,50,1,1,0,8,3,8,0,0,0,4,1
-10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
-37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
-18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
-15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
-30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
-15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
-12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
-10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
-10,5,3,3,1,42,1,1,0,18,3,4,11,0,0,4,1
-55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
-15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
-9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
-16,1,2,2,1,23,1,1,0,27,1,15,11,0,0,4,1
-41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
-42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
-31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
-17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
-28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
 25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
-37,10,2,2,1,14,2,1,3,26,8,5,11,0,0,4,0
-6,9,3,2,1,67,2,1,3,26,8,6,11,0,0,4,0
-10,0,3,2,1,7,1,2,3,18,6,8,11,0,0,4,1
-37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
-28,11,2,2,1,32,1,1,0,3,1,12,11,0,0,4,1
-11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
-22,1,2,1,1,9,2,1,0,13,5,1,33,0,0,4,1
-21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
-43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
-41,6,3,2,1,37,2,1,3,26,8,10,0,0,0,4,0
-18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
+17,10,3,3,1,54,1,1,0,13,10,15,11,0,0,4,1
+15,1,3,3,1,62,1,1,0,30,3,3,0,546,1,3,1
+14,8,3,4,1,30,1,1,0,8,10,1,11,0,0,4,1
+25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
+16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
+20,2,2,3,1,9,1,1,0,15,5,11,11,0,0,4,1
+18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
+9,9,2,2,1,13,2,1,0,7,5,13,11,0,0,4,1
+15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
+34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
+33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
+19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
+29,1,2,2,1,36,1,1,0,1,3,8,0,0,0,4,1
+20,10,3,3,1,11,1,1,3,8,6,1,22,0,0,4,1
+16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
+41,10,0,2,1,30,1,1,0,12,10,10,0,0,0,4,1
+14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+40,5,2,4,1,11,2,1,3,26,8,7,22,0,0,4,0
+8,5,3,3,1,9,2,1,3,23,8,7,11,0,0,4,1
+13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
+17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
+26,5,2,3,1,12,1,1,0,19,1,10,22,0,0,4,1
+28,10,2,2,1,41,1,2,0,19,3,2,0,0,0,4,1
+19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
+15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
+31,8,2,2,1,15,1,1,0,5,1,14,5,0,0,4,1
+32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
+28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
+33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
+42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
+6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
+17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
+12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
+7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
+22,6,2,1,1,9,2,2,3,26,8,6,0,0,0,4,0
+15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
+14,5,3,3,1,25,1,1,0,5,1,2,11,0,0,4,1
+17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
+24,5,2,3,1,43,1,1,0,10,10,13,11,0,0,4,1
+53,6,2,2,1,35,1,1,0,8,3,6,0,0,0,4,1
+12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
+19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
+13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
+22,5,3,3,1,9,1,1,0,27,1,12,43,0,0,4,1
+30,5,2,3,1,25,2,1,3,4,8,12,11,0,0,4,1
+13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
+27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
+14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
+16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
+20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
+32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
+36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
+28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
 39,0,0,2,1,61,1,1,0,1,5,13,0,0,0,4,1
-36,5,2,2,1,46,1,1,3,26,8,4,0,0,0,4,0
-17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
-38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
-13,7,2,3,1,21,1,1,0,25,3,6,11,0,0,4,1
-17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
-33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
-37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
-18,0,2,3,1,27,2,1,3,26,8,4,11,0,0,4,0
-35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
-16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
-14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
-32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
-16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
-18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
-36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
-8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
-12,0,0,2,1,43,2,1,3,25,6,10,6,0,0,4,1
 38,1,2,2,1,14,1,1,3,2,6,15,0,0,0,4,1
-39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
-41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
-39,11,2,3,1,47,1,1,3,26,8,10,0,0,0,4,0
-30,5,2,3,1,23,2,1,0,18,3,7,0,0,0,4,1
-9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
-10,5,2,2,1,36,2,1,3,20,8,10,0,0,0,4,1
-39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-25,7,2,2,1,17,2,1,0,13,10,10,0,0,0,4,1
-21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
-27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
-34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
-12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
-22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
-14,8,2,2,1,71,2,1,0,12,10,10,11,38,1,0,1
-37,6,0,2,1,3,1,2,0,16,5,4,0,0,0,4,1
-18,5,0,3,2,42,1,1,0,27,1,14,33,0,0,4,1
-25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
-17,1,2,4,1,51,2,1,3,12,8,14,11,0,0,4,1
-28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
-39,6,2,3,1,9,2,2,3,20,8,12,0,0,0,4,1
-13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
-8,5,3,3,1,49,1,1,0,1,5,2,22,0,0,4,1
-12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
-26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
-37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
-35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
-13,1,3,2,1,63,1,1,0,28,5,13,11,0,0,4,1
-13,11,3,1,1,20,1,1,0,23,4,13,11,110,1,1,1
-25,1,3,2,1,64,2,1,3,12,6,11,11,0,0,4,1
-39,8,2,2,1,20,2,1,3,26,8,5,0,0,0,4,0
-27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
 30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
-54,6,2,3,1,9,1,1,0,4,3,16,0,0,0,4,1
-17,2,3,3,1,18,2,1,0,9,5,14,11,0,0,4,1
-22,0,2,2,1,40,1,1,0,24,5,2,38,0,0,4,1
-9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
-24,2,0,3,2,25,2,1,3,26,8,9,0,0,0,4,0
-16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
-32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
-48,6,2,1,1,26,1,1,0,30,3,10,0,0,0,4,1
-20,1,2,2,1,20,1,1,3,7,6,3,47,0,0,4,1
+11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
+12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
+40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
+11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+40,2,2,3,1,68,1,1,3,26,6,2,11,0,0,4,1
+42,1,2,1,1,52,1,1,0,9,1,12,33,0,0,4,1
+22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
+14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
+22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
+9,10,3,3,1,70,2,1,0,25,3,1,0,0,0,4,1
+34,6,2,4,1,36,1,1,3,2,6,12,0,0,0,4,1
+33,2,2,3,1,54,2,1,3,15,11,3,0,0,0,4,1
+28,10,3,2,1,68,1,1,0,10,10,14,22,0,0,4,1
+6,1,2,1,1,61,2,1,3,7,8,15,0,0,0,4,1
+37,1,2,2,1,44,1,1,3,26,8,8,0,0,0,4,0
+21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
+36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
+29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
+8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
+42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
+41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
+17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
+18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
+21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
+14,0,0,2,1,3,1,2,3,19,6,14,11,0,0,4,1
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
+18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
+12,10,3,2,1,68,2,1,3,7,8,2,38,0,0,4,1
+26,7,2,3,1,13,1,1,0,12,1,11,38,0,0,4,1
+18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
+23,1,3,2,2,11,2,2,0,28,5,11,0,0,0,4,1
+21,11,3,2,1,1,2,1,0,22,3,9,0,0,0,4,1
+35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
+28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
+31,0,0,2,1,21,2,2,3,29,8,10,0,0,0,4,1
+29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
+20,10,3,2,1,21,2,1,3,26,8,6,0,0,0,4,0
+26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
+19,5,0,3,1,22,1,1,0,6,5,10,38,0,0,4,1
+43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
+12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
+26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
+13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
+33,11,0,3,1,9,1,1,0,24,5,11,11,0,0,4,1
+34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
+16,1,2,1,1,41,2,1,0,13,10,0,0,0,0,4,1
+41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
+9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
+15,5,3,3,1,37,2,1,0,14,5,1,0,0,0,4,1
+23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
+35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
+25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
+24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
+42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
+10,1,3,2,1,2,2,1,3,30,8,6,11,0,0,4,1
+6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
+34,1,2,2,1,63,1,2,2,12,10,14,22,0,0,4,1
 17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
-35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
-15,10,3,3,1,17,2,1,0,9,5,1,22,0,0,4,1
-16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
-37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
-26,0,0,2,1,20,2,1,0,5,5,5,11,0,0,4,1
-22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
-4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
-35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
-20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
-31,0,0,2,1,21,2,2,3,29,8,10,0,0,0,4,1
-31,8,2,2,1,44,1,1,2,24,5,0,33,0,0,4,1
-13,7,3,3,1,23,1,1,2,30,3,5,0,0,0,4,1
-12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
-11,0,3,2,1,67,2,2,3,26,8,11,0,0,0,4,0
+33,5,2,3,1,31,2,1,0,13,5,11,0,0,0,4,1
+36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
+14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
+18,10,2,2,1,31,1,1,0,20,1,15,33,0,0,4,1
+16,2,2,3,1,11,2,1,0,26,3,3,1,0,0,4,1
+31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
+37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
+22,8,2,1,1,11,2,1,3,23,8,14,11,0,0,4,1
+31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
+10,0,3,2,1,2,1,2,0,1,5,13,11,0,0,4,1
+23,0,3,2,1,10,2,1,3,10,8,14,0,0,0,4,1
+13,10,2,2,2,4,2,1,0,9,5,10,11,0,0,4,1
+42,5,2,3,1,29,1,1,0,26,3,7,11,0,0,4,1
+29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
+42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
+22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
+9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
+42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
+35,1,2,2,1,9,2,2,3,26,8,6,0,0,0,4,0
+22,5,2,3,1,40,2,1,2,15,11,4,0,0,0,4,1
+10,5,3,3,1,42,1,1,0,18,3,4,11,0,0,4,1
+30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
+10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
+32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
+37,10,2,2,2,4,1,1,0,11,3,13,0,0,0,4,1
+10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
+11,5,2,3,1,18,2,1,0,25,3,14,11,0,0,4,1
+15,8,2,2,1,66,2,1,3,26,8,9,0,0,0,4,0
+14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
 10,0,3,4,1,34,1,1,0,29,5,12,0,0,0,4,1
-12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
-32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
-23,2,2,1,1,44,2,1,0,13,10,11,11,0,0,4,1
-20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
-38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
-5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
-11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
+38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
+13,5,2,3,1,66,1,1,0,12,1,13,5,0,0,4,1
+37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
+38,1,2,2,1,31,2,1,3,21,8,13,11,0,0,4,1
+30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
+29,1,2,2,1,34,1,1,0,2,1,10,0,0,0,4,1
+8,1,3,2,1,67,2,1,3,30,8,12,0,0,0,4,1
+28,10,2,2,1,16,1,1,0,9,1,11,38,0,0,4,1
+17,8,2,2,1,9,2,1,3,26,8,10,0,0,0,4,0
+22,1,2,1,1,9,2,1,0,13,5,1,33,0,0,4,1
 10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
-25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
-20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
-20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
-5,8,3,2,1,61,2,1,3,20,8,2,0,0,0,4,1
-35,10,2,3,1,71,1,1,0,12,1,4,38,0,0,4,1
-19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
-13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
-10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
-21,5,2,3,1,44,2,2,3,26,8,3,11,0,0,4,0
-39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
-13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
-39,10,0,2,1,37,1,1,0,5,1,13,11,0,0,4,1
-20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
-23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
-32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
-33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
-25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
-13,5,3,3,1,36,1,2,0,29,5,10,33,0,0,4,1
-29,1,2,2,1,67,1,1,0,29,1,13,11,0,0,4,1
-30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
-25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
+19,5,3,3,1,49,2,1,0,4,1,15,43,0,0,4,1
 23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
-39,1,2,2,1,58,2,2,3,26,8,7,0,0,0,4,0
+24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
+23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
+18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
+13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
+31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
+7,1,2,2,1,7,2,1,3,26,8,9,0,0,0,4,0
+15,8,3,2,1,21,1,1,0,28,5,13,0,0,0,4,1
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
+21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
+18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
+16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
+13,7,2,3,1,70,1,1,0,14,1,11,11,0,0,4,1
+28,7,2,3,1,30,1,1,0,10,10,1,0,3,30,0,1
+17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
+17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
+35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
+21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
+20,5,2,3,1,44,2,1,2,20,11,5,0,0,0,4,1
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
+15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
+39,6,2,3,1,9,2,2,3,20,8,12,0,0,0,4,1
 13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
-21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
-15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
-14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
-26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
-36,10,0,2,1,68,1,2,0,13,5,13,0,0,0,4,1
-44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
-22,10,0,2,1,38,1,1,0,27,1,13,11,0,0,4,1
-33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
-27,1,2,2,1,58,2,1,3,18,8,13,33,0,0,4,1
-6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
-32,1,2,1,1,46,2,1,0,28,1,10,11,0,0,4,1
-17,5,0,3,1,9,2,1,2,21,11,5,0,0,0,4,1
-22,1,2,1,1,22,2,1,3,7,8,2,22,0,0,4,1
-40,5,2,3,1,47,2,1,2,5,10,5,0,0,0,4,1
-40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
-21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
-27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
-25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
-34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
-11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
-37,8,0,2,2,9,2,1,3,26,8,6,0,0,0,4,0
-31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
-36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
-8,0,3,2,1,32,1,1,0,30,3,6,0,0,0,4,1
-14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
-14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
-20,8,3,2,1,56,2,1,3,26,8,13,11,0,0,4,0
-14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
-17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
-22,1,2,2,1,24,2,2,3,12,6,11,11,0,0,4,1
-26,1,2,2,1,57,2,1,3,26,8,10,0,0,0,4,0
-19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
-39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
-28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
-33,5,2,3,1,31,2,1,0,13,5,11,0,0,0,4,1
-9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
-22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
-8,0,3,3,1,38,1,2,0,18,3,7,11,0,0,4,1
-7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
-14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
-19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
-33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
-17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
-34,1,2,2,1,63,1,2,2,12,10,14,22,0,0,4,1
-15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
-22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
-12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
+14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
+38,7,2,1,1,4,2,2,3,26,8,7,11,0,0,4,0
+8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+27,10,3,3,1,9,1,1,0,9,1,13,33,0,0,4,1
+35,3,2,1,1,10,1,2,3,26,6,12,0,0,0,4,1
 23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
+12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
+28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
+18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
+14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
+30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
 13,7,2,3,1,52,2,2,0,13,10,12,0,40,12,0,1
-26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
-42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
-12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
-29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
-12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
-8,10,2,2,1,1,1,2,0,30,5,9,38,0,0,4,1
-14,5,3,3,1,65,1,1,0,21,1,12,11,0,0,4,1
-16,1,3,1,1,0,2,1,0,6,5,14,33,0,0,4,1
-31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
-26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
-4,9,3,2,1,9,1,1,0,27,3,7,43,0,0,4,1
-39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
-13,0,3,2,1,64,2,1,3,18,8,11,11,0,0,4,1
-16,1,2,2,1,14,2,1,3,13,8,15,0,0,0,4,1
-38,1,2,1,1,67,1,1,0,5,1,2,33,0,0,4,1
-8,1,3,1,1,46,2,1,0,13,5,11,11,0,0,4,1
-16,0,2,2,1,19,1,1,0,26,3,12,11,0,0,4,1
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
+12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
+22,1,2,2,1,24,2,2,3,12,6,11,11,0,0,4,1
+36,10,0,2,1,68,1,2,0,13,5,13,0,0,0,4,1
+32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
+12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
+14,5,3,3,1,24,1,1,0,17,1,10,38,0,0,4,1
+13,5,3,3,1,36,1,2,0,29,5,10,33,0,0,4,1
+13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
+39,1,2,2,1,19,2,1,0,8,10,11,0,0,0,4,1
+18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
+31,8,2,2,1,67,1,1,0,29,1,13,33,0,0,4,1
+19,10,3,2,1,3,2,1,0,4,1,2,43,0,0,4,1
+12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
+30,5,2,3,1,23,2,1,0,18,3,7,0,0,0,4,1
+24,8,2,2,1,17,2,1,0,11,7,13,33,0,0,4,1
+41,6,2,1,1,40,2,1,0,26,1,10,22,0,0,4,1
+16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
+33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
+13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
+13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
+10,5,2,2,1,36,2,1,3,20,8,10,0,0,0,4,1
+17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
+21,10,2,2,1,9,2,1,3,26,8,6,0,0,0,4,0
+12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
+15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
+40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
+24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
+29,1,2,2,1,67,1,1,0,29,1,13,11,0,0,4,1
+37,8,0,2,2,9,2,1,3,26,8,6,0,0,0,4,0
+23,1,0,2,1,54,2,1,3,5,8,4,22,0,0,4,1
+29,1,2,4,2,20,1,1,0,17,1,9,22,0,0,4,1
+12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
+23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
+41,5,0,3,1,32,2,1,2,21,11,7,0,0,0,4,1
+16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
+38,5,2,3,1,65,2,1,3,26,8,5,0,0,0,4,0
+39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+19,1,2,1,1,9,2,1,3,26,8,13,0,0,0,4,0
+9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
+34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
+38,10,0,2,1,23,1,1,0,9,5,11,0,0,0,4,1
+38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
+36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
+16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
+7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
+33,6,2,1,1,18,1,1,2,17,5,6,33,0,0,4,1
+28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
+40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
+29,5,2,2,1,35,1,1,3,8,6,11,0,0,0,4,1
+20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
+31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
+29,1,2,2,1,12,2,1,0,21,4,1,0,0,0,4,1
+26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
+16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
+7,8,3,2,1,40,1,2,0,6,5,1,11,0,0,4,1
+10,7,3,2,1,56,2,1,0,30,3,12,33,0,0,4,1
+31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
+32,1,2,1,1,46,2,1,0,28,1,10,11,0,0,4,1
+13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
+31,5,2,3,1,9,1,1,2,8,11,7,0,0,0,4,1
+19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
+34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
+17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
+14,8,2,2,1,4,2,1,3,23,8,2,11,0,0,4,1
+30,1,2,1,1,63,1,2,0,2,1,9,38,0,0,4,1
+19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
+17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
+26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
+16,1,3,1,1,0,2,1,0,6,5,14,33,0,0,4,1
+23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
+31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
+29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
+35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
+34,5,2,3,1,14,1,1,0,14,1,1,33,0,0,4,1
+34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
+20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
 7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
-24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
-12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
+26,8,2,2,1,16,2,2,3,26,8,7,0,0,0,4,0
+14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
+40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
+38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
+16,10,2,3,1,66,2,1,0,5,1,11,33,0,0,4,1
+31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
+38,6,0,3,1,20,1,2,0,13,5,14,0,0,0,4,1
+22,8,3,2,1,19,2,1,0,12,10,9,0,0,0,4,1
+28,5,3,3,1,35,2,1,3,23,8,16,11,0,0,4,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
+40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
+32,11,2,1,1,63,1,1,3,26,6,10,0,0,0,4,1
+33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
+26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
+16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
+19,8,2,2,1,25,2,1,2,26,10,7,0,0,0,4,1
 35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
-16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
-14,5,3,3,1,50,1,1,0,13,1,13,43,0,0,4,1
+31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
+15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
+25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
+32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
+36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
+16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
+24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
+39,1,2,2,1,58,2,2,3,26,8,7,0,0,0,4,0
+19,11,3,2,1,44,2,1,3,29,8,16,11,0,0,4,1
+31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
+23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
+11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
+18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
+12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
+38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
+31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
+8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
+19,8,2,2,1,19,2,1,0,7,3,4,11,0,0,4,1
+37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
+35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
+37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
+13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
+4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
+15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
+33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
+20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
+18,0,2,3,1,27,2,1,3,26,8,4,11,0,0,4,0
+31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
+12,11,3,3,1,37,1,1,0,2,3,11,22,0,0,4,1
+32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
+14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
+30,1,2,2,1,17,2,1,3,5,8,12,11,0,0,4,1
+29,0,0,2,1,28,1,1,0,20,1,1,33,0,0,4,1
+10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
+21,8,2,2,1,54,1,1,2,11,3,4,22,0,0,4,1
+26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
+39,10,2,3,1,9,1,1,3,5,8,14,11,0,0,4,1
+42,6,2,1,1,58,2,1,3,26,8,7,0,0,0,4,0
+10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
+29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
+18,1,2,1,1,46,2,2,3,12,8,1,11,0,0,4,1
+13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
+40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
+32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
+24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
+14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
 13,8,2,2,1,31,2,2,3,26,8,5,0,0,0,4,0
-25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
-28,8,2,2,1,36,1,1,0,13,10,15,0,0,0,4,1
-25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
-12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
-33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
-26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
-33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
-38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
-27,2,2,2,1,65,1,2,0,8,10,12,11,30,12,0,1
-28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
-21,11,3,2,1,1,2,1,0,22,3,9,0,0,0,4,1
-17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
-18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
-13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
-37,10,2,3,1,21,1,2,0,26,1,12,11,0,0,4,1
-17,1,0,1,1,37,2,1,3,4,8,15,11,0,0,4,1
-35,0,0,4,1,32,1,1,0,2,5,3,11,0,0,4,1
-22,10,3,3,1,21,2,1,0,11,3,7,0,157,12,0,1
-42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
-28,5,2,2,1,18,1,1,0,13,10,2,11,0,0,4,1
-21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
-21,1,3,2,1,9,1,1,0,14,5,14,33,0,0,4,1
-13,11,3,1,1,46,1,1,0,25,3,13,0,0,0,4,1
-35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
-22,5,2,3,1,40,2,1,2,15,11,4,0,0,0,4,1
-17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
-14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
-14,7,3,3,1,44,2,1,0,9,10,10,0,0,0,4,1
-32,5,2,2,1,13,1,1,0,7,5,10,0,0,0,4,1
-11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
-24,8,2,2,1,65,1,1,0,20,4,16,0,0,0,4,1
+27,10,2,3,1,43,2,1,3,10,6,14,22,0,0,4,1
+30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
+14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
+14,10,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
+30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
+16,1,2,2,1,23,1,1,0,27,1,15,11,0,0,4,1
+30,5,2,3,1,9,1,1,2,1,10,7,0,0,0,4,1
+14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
+9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
+7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
+41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
+20,1,2,2,1,59,2,1,3,13,8,11,11,0,0,4,1
+35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
+72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
+33,7,2,3,1,55,2,2,0,24,5,11,33,0,0,4,1
+26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+42,1,2,4,1,10,2,1,3,26,8,7,0,0,0,4,0
+40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
+15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
+27,8,3,1,1,24,2,1,3,22,6,3,43,0,0,4,1
+41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
+30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
+17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
+14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
+38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
+26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
+36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
+17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
+42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
+20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
+21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
+16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
+25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
+12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
+67,6,0,1,1,65,1,1,0,9,3,9,22,0,0,4,1
+21,7,3,3,1,47,1,1,3,9,6,0,0,0,0,4,1
+41,0,2,2,1,9,2,1,0,1,5,16,0,0,0,4,1
+25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+42,6,0,2,1,27,2,1,3,26,8,7,0,0,0,4,0
+11,0,3,2,1,67,2,2,3,26,8,11,0,0,0,4,0
+14,8,2,1,1,29,2,1,0,13,5,0,43,0,0,4,1
+18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
+27,1,2,2,1,12,2,1,3,14,11,12,0,0,0,4,1
+9,12,3,2,1,13,1,1,2,18,3,7,0,4,1,0,1
+16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
+33,11,2,1,1,13,2,1,0,17,5,6,0,0,0,4,1
+40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
 41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
-12,0,3,3,1,9,2,1,0,25,3,13,11,0,0,4,1
-42,1,2,1,1,52,1,1,0,9,1,12,33,0,0,4,1
-29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
-34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
-31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
-40,7,0,3,1,17,1,1,3,30,6,12,0,0,0,4,1
-13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
-21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
-10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
-28,10,2,2,1,13,2,1,0,13,10,5,11,0,0,4,1
-7,1,2,2,1,7,2,1,3,26,8,9,0,0,0,4,0
-31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
-40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-8,5,3,3,1,9,2,1,3,23,8,7,11,0,0,4,1
-26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
-13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
-27,11,0,2,1,40,2,1,3,21,8,13,0,0,0,4,1
+21,9,3,3,1,27,1,1,0,11,3,11,0,0,0,4,1
+27,2,2,4,1,38,2,2,0,1,5,14,0,0,0,4,1
+32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
+39,5,2,3,1,70,1,2,3,12,6,1,11,0,0,4,1
+12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
+35,6,2,2,1,39,2,1,3,26,8,7,11,0,0,4,0
+34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
+57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
+13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
+18,1,2,2,1,22,1,1,3,26,6,6,0,0,0,4,1
+7,10,3,2,1,14,2,1,0,19,3,9,38,0,0,4,1
+10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
+21,0,2,2,1,15,2,2,0,25,3,3,11,0,0,4,1
+26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
+33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
+18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
+25,10,0,4,1,26,2,1,3,26,8,4,0,0,0,4,0
+29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
+28,1,2,2,1,49,1,2,0,9,1,12,43,0,0,4,1
+8,10,3,3,1,19,1,1,0,11,3,8,0,0,0,4,1
+9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
 19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
-11,5,3,3,1,71,2,1,0,2,5,15,11,0,0,4,1
-34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
-53,6,2,2,1,35,1,1,0,8,3,6,0,0,0,4,1
+36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
+22,5,2,3,1,61,1,1,0,4,1,13,33,0,0,4,1
+20,9,3,3,1,40,1,1,3,8,6,3,22,0,0,4,1
+6,9,3,2,1,67,2,1,3,26,8,6,11,0,0,4,0
+17,5,0,3,1,44,2,1,3,29,8,1,0,0,0,4,1
+29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
+35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
 8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
-25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
-29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
-12,8,3,2,2,4,2,1,0,9,5,10,0,0,0,4,1
-19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
-10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
-28,0,2,2,1,14,1,1,3,9,6,3,0,0,0,4,1
-17,1,2,2,1,10,1,1,3,9,10,4,11,0,0,4,1
-8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
-33,10,2,2,1,27,1,1,0,28,5,11,11,0,0,4,1
-18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
-19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
-11,8,3,2,1,67,1,2,3,22,5,11,22,0,0,4,1
-28,10,2,2,1,55,2,1,3,7,6,13,11,0,0,4,1
-22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
-37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
-41,8,2,2,1,2,2,1,3,18,8,13,22,0,0,4,1
-18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
-14,5,3,3,1,25,1,1,0,5,1,2,11,0,0,4,1
-41,5,2,3,1,36,1,2,0,6,5,14,22,0,0,4,1
+13,5,3,3,1,9,2,1,3,26,8,11,0,0,0,4,0
+10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+27,1,2,1,1,31,2,1,3,26,8,9,0,0,0,4,0
+12,0,3,2,1,38,2,1,0,25,3,1,11,0,0,4,1
+30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
+23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
+39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
+40,2,2,3,1,65,2,1,2,30,5,16,0,0,0,4,1
+17,1,3,2,1,45,2,1,3,30,8,12,33,0,0,4,1
+21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
+19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
+17,6,3,1,1,48,1,1,3,26,8,4,0,0,0,4,0
+19,10,2,3,1,15,2,1,0,4,3,13,0,0,0,4,1
+31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
+11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
+14,8,3,2,1,2,2,1,3,13,8,12,22,0,0,4,1
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
+21,1,3,2,1,9,1,1,0,14,5,14,33,0,0,4,1
+22,1,2,2,1,53,1,1,0,1,3,5,11,552,1,3,1
+27,2,2,3,1,25,2,1,0,12,10,14,38,0,0,4,1
+33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
+13,7,2,3,1,21,1,1,0,25,3,6,11,0,0,4,1
+14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
+24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
+21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
+15,12,3,4,1,9,1,1,3,26,8,6,0,0,0,4,0
+8,5,3,3,1,49,1,1,0,1,5,2,22,0,0,4,1
+16,8,2,2,1,2,2,2,3,26,8,13,0,0,0,4,0
+17,9,3,2,1,24,2,1,0,7,3,13,22,112,33,0,1
+42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
+22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
+16,0,2,2,1,19,1,1,0,26,3,12,11,0,0,4,1
+9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
+15,11,2,2,1,1,1,1,0,23,5,10,22,0,0,4,1
+15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
+12,5,2,3,1,15,2,1,0,2,1,9,43,0,0,4,1
+17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
+39,6,0,3,1,64,1,1,0,27,1,3,33,0,0,4,1
+36,5,2,2,1,12,2,1,0,17,5,3,22,0,0,4,1
+22,7,3,3,1,20,1,1,2,20,5,0,45,0,0,4,1
+32,5,3,3,1,36,2,1,3,26,8,2,0,0,0,4,0
+20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
+13,0,3,2,1,64,2,1,3,18,8,11,11,0,0,4,1
+21,8,3,4,1,32,2,1,3,26,8,9,0,0,0,4,0
+26,1,2,4,1,18,2,1,3,6,8,10,0,0,0,4,1
 21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
-19,5,3,3,1,58,2,1,3,26,8,4,0,0,0,4,0
-10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
-17,5,2,3,1,68,2,1,3,11,6,7,22,0,0,4,1
-30,0,2,1,1,42,2,2,2,24,5,0,47,0,0,4,1
-34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
-20,0,3,2,1,39,1,1,3,26,6,14,11,0,0,4,1
-38,6,0,3,1,20,1,2,0,13,5,14,0,0,0,4,1
-36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
-31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
-27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
-29,1,2,2,1,34,1,1,0,2,1,10,0,0,0,4,1
-25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
-33,6,2,1,1,18,1,1,2,17,5,6,33,0,0,4,1
-21,1,2,1,1,13,1,1,0,22,3,15,0,0,0,4,1
-14,8,2,2,1,4,2,1,3,23,8,2,11,0,0,4,1
-14,7,2,3,1,17,1,1,0,27,1,3,33,0,0,4,1
-12,11,3,3,1,37,1,1,0,2,3,11,22,0,0,4,1
-15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
-41,5,0,3,1,32,2,1,2,21,11,7,0,0,0,4,1
-10,1,3,2,1,65,2,1,3,30,8,13,0,0,0,4,1
-15,5,2,3,1,24,1,1,0,4,1,2,11,0,0,4,1
-33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
-15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
-41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
-29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
-25,1,3,2,1,37,2,1,3,30,8,15,22,0,0,4,1
-40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
-12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
-9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
-6,10,3,2,1,46,2,1,3,7,8,15,0,0,0,4,1
-15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
-35,10,0,1,1,18,2,1,3,5,8,10,0,0,0,4,1
-16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
-18,1,2,2,1,39,2,2,0,7,5,14,0,0,0,4,1
-23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
-26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
-33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
-23,1,3,2,2,4,1,2,0,12,10,10,0,0,0,4,1
-26,5,2,3,1,12,1,1,0,19,1,10,22,0,0,4,1
-12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
-37,10,0,2,2,45,1,1,0,20,4,1,0,0,0,4,1
+33,7,2,2,1,70,2,1,0,15,5,3,33,0,0,4,1
+39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
+20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
+13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
+11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
+19,8,3,2,1,34,2,1,3,22,6,0,22,0,0,4,1
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
+13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
+40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
+23,1,2,1,1,31,2,1,3,6,8,1,0,0,0,4,1
 56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
-14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
-49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
-13,5,3,3,1,23,1,1,0,3,1,10,22,0,0,4,1
-28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
-30,11,2,2,1,46,2,1,3,26,8,6,11,0,0,4,0
-12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
-38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
-12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
-31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
-23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
-28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
-9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
-12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
-26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
+13,5,2,3,1,61,1,1,0,28,1,2,0,0,0,4,1
+13,1,2,2,1,19,2,2,0,29,5,14,0,0,0,4,1
+12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
+41,5,2,3,1,36,1,2,0,6,5,14,22,0,0,4,1
+13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
+36,1,2,1,1,41,2,1,3,26,8,11,11,0,0,4,0
+24,2,0,3,2,25,2,1,3,26,8,9,0,0,0,4,0
+20,0,0,2,1,24,2,1,0,26,3,1,22,167,12,3,1
+23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
+22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+16,10,2,2,1,10,1,1,0,17,1,4,1,0,0,4,1
+16,8,3,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+8,0,2,2,1,63,2,2,3,27,6,3,11,0,0,4,1
+15,5,3,3,1,40,2,1,3,26,8,7,0,0,0,4,0
+17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
+35,11,2,4,1,15,1,1,3,26,8,9,22,0,0,4,0
+7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
+22,0,2,1,1,63,2,2,0,13,10,14,0,0,0,4,1
+10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
+13,7,3,3,1,18,2,1,3,7,8,12,0,0,0,4,1
 22,10,0,3,1,56,2,1,3,16,11,1,0,0,0,4,1
-15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
-13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
 19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
-27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
+13,1,3,2,1,63,1,1,0,28,5,13,11,0,0,4,1
+7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
+20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
+27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
+17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
+18,2,0,3,1,65,1,2,0,28,5,13,22,0,0,4,1
+12,5,3,3,1,52,1,1,0,2,1,11,11,0,0,4,1
+32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
+10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
+30,1,2,2,1,20,2,1,3,5,8,13,0,0,0,4,1
+28,11,2,2,1,32,1,1,0,3,1,12,11,0,0,4,1
+43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
+18,10,3,2,1,33,2,2,3,26,8,8,0,0,0,4,0
+35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
+19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
+16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
+10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+27,1,2,2,1,58,2,1,3,18,8,13,33,0,0,4,1
+18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
+16,10,3,3,1,72,2,1,0,26,3,13,11,0,0,4,1
+17,1,2,2,1,10,1,1,3,9,10,4,11,0,0,4,1
+14,5,0,3,1,68,1,1,0,3,1,3,43,0,0,4,1
+19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
+28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
+25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
+35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
+16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
+27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
+8,10,2,2,1,1,1,2,0,30,5,9,38,0,0,4,1
+13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
+29,1,2,1,1,1,2,1,3,26,8,6,0,0,0,4,0
+37,1,2,1,1,59,2,1,3,26,8,7,0,0,0,4,0
+24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
+23,1,2,1,1,31,1,1,3,10,6,12,22,0,0,4,1
+8,9,3,2,1,9,2,1,3,26,8,11,11,0,0,4,0
+31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
+39,5,2,3,1,9,2,2,3,12,6,5,0,0,0,4,1
+36,5,2,3,1,9,1,1,3,26,8,2,11,0,0,4,0
+19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
+34,5,2,3,1,9,2,1,0,25,3,10,0,0,0,4,1
+33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
+25,1,3,2,1,37,2,1,3,30,8,15,22,0,0,4,1
+10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
+23,10,2,3,1,61,2,1,0,10,10,14,0,0,0,4,1
+15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
+34,5,3,3,1,67,1,1,0,18,1,2,43,0,0,4,1
+35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
+23,8,2,2,1,9,2,1,3,26,8,1,11,0,0,4,0
+27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
+41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
+31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
+20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
+14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
+30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
+51,6,2,1,1,29,1,1,0,2,3,9,11,0,0,4,1
+42,8,3,1,1,38,2,1,3,6,8,15,11,0,0,4,1
+19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
+23,8,2,4,2,9,1,2,0,23,5,2,33,0,0,4,1
+15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
+34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
+30,11,2,2,1,36,2,1,3,26,8,7,0,0,0,4,0
+20,8,0,2,1,58,1,1,3,26,6,12,0,0,0,4,1
+11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
+32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
+24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
+32,5,2,2,1,13,1,1,0,7,5,10,0,0,0,4,1
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
+11,5,3,3,1,71,2,1,0,2,5,15,11,0,0,4,1
+38,1,2,1,1,67,1,1,0,5,1,2,33,0,0,4,1
+34,3,2,2,1,45,2,1,3,5,8,15,22,0,0,4,1
+17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
+24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
+35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
+29,3,3,3,1,43,1,1,3,3,6,16,43,0,0,4,1
+20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
+12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
+28,10,2,2,1,13,2,1,0,13,10,5,11,0,0,4,1
 16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
+10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
+31,1,3,1,1,56,2,1,0,17,5,16,11,0,0,4,1
+26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
+22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
+11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
+57,6,2,1,1,42,1,1,0,8,3,9,2,0,0,4,1
+27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
+39,6,2,2,1,51,2,1,3,26,8,6,11,0,0,4,0
+15,10,3,3,1,17,2,1,0,9,5,1,22,0,0,4,1
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
+23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
+35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
+7,10,3,2,1,10,1,2,0,29,5,11,11,0,0,4,1
 36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
-36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
-43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
-13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
-17,10,3,3,1,54,1,1,0,13,10,15,11,0,0,4,1
-30,11,2,2,1,36,2,1,3,26,8,7,0,0,0,4,0
-32,5,3,3,1,36,2,1,3,26,8,2,0,0,0,4,0
-24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
-15,1,3,3,1,62,1,1,0,30,3,3,0,546,1,3,1
-19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
-37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
-20,1,3,3,1,35,2,1,3,12,6,4,1,0,0,4,1
-19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
-11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
-40,6,2,1,1,14,1,1,0,9,1,6,11,0,0,4,1
-42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
-7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
-23,0,3,2,1,10,2,1,3,10,8,14,0,0,0,4,1
-10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
-10,10,3,2,1,16,1,1,0,19,3,13,0,0,0,4,1
-40,6,2,4,1,71,2,1,3,26,8,12,0,0,0,4,0
+28,10,3,3,1,48,1,1,0,9,1,10,45,0,0,4,1
+12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
+10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
+17,2,3,3,1,18,2,1,0,9,5,14,11,0,0,4,1
+12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
+16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
+23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
+31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
+15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
+29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
+31,2,0,4,2,7,2,1,0,23,5,16,11,0,0,4,1
+10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
+26,7,2,2,1,63,1,1,3,26,10,6,0,0,0,4,1
+38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
+36,8,2,2,1,27,2,1,3,26,8,10,11,0,0,4,0
+12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
+18,7,3,3,1,0,2,2,2,8,11,8,0,0,0,4,1
+24,11,0,2,1,22,2,1,3,23,8,14,11,0,0,4,1
+9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
+12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
+19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
+41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
+7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
 19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
-8,0,2,2,1,63,2,2,3,27,6,3,11,0,0,4,1
-28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
-15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
-33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
-38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
-11,1,3,2,1,51,1,2,0,1,5,1,22,0,0,4,1
-13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
-28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
-33,11,2,1,1,13,2,1,0,17,5,6,0,0,0,4,1
-30,11,3,3,1,39,1,1,3,7,6,1,0,0,0,4,1
-24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
-25,0,2,2,1,29,1,1,2,1,10,10,0,0,0,4,1
+31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
+13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
+11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
+35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
+21,5,2,3,1,44,2,2,3,26,8,3,11,0,0,4,0
+31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
+21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
+24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
+8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
+22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
+20,0,3,2,1,39,1,1,3,26,6,14,11,0,0,4,1
+25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+19,10,3,2,1,12,1,1,0,18,3,4,0,0,0,4,1
+22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
+7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
+17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
+33,0,2,2,1,70,1,1,0,26,1,1,0,0,0,4,1
 33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
-10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
-17,5,0,3,1,44,2,1,3,29,8,1,0,0,0,4,1
-29,1,2,4,2,20,1,1,0,17,1,9,22,0,0,4,1
-39,6,2,2,1,27,2,1,3,26,8,7,11,0,0,4,0
-36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
-17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
-40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
-23,10,2,3,1,61,2,1,0,10,10,14,0,0,0,4,1
-7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
-22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
+14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
+10,0,3,2,1,7,1,2,3,18,6,8,11,0,0,4,1
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
+42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
+32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
+14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
+17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
+33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
+32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
+20,10,2,3,1,25,1,1,0,26,1,3,11,0,0,4,1
+26,0,0,2,1,20,2,1,0,5,5,5,11,0,0,4,1
+22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
+8,8,3,2,1,18,1,1,2,15,11,5,0,0,0,4,1
+25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
+39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+13,5,0,3,1,43,1,1,0,1,3,3,43,0,0,4,1
+19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
+8,0,3,3,1,38,1,2,0,18,3,7,11,0,0,4,1
+43,6,2,2,1,65,1,1,0,27,1,10,33,0,0,4,1
+37,6,0,2,1,3,1,2,0,16,5,4,0,0,0,4,1
+42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
+43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
+41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
+25,0,2,2,1,29,1,1,2,1,10,10,0,0,0,4,1
+23,1,3,2,2,4,1,2,0,12,10,10,0,0,0,4,1
+41,6,2,1,1,20,2,2,0,26,1,14,0,0,0,4,1
+24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
+9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
+4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
+15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
+44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
+7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
+5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
+16,1,2,2,1,31,2,1,3,15,8,15,0,0,0,4,1
+22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
+35,1,2,1,1,47,2,1,0,12,10,12,0,0,0,4,1
+21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
+39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
+12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
+19,3,2,2,1,64,1,2,0,26,3,12,22,0,0,4,1
+23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
+16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
+27,11,0,2,1,40,2,1,3,21,8,13,0,0,0,4,1
+18,5,3,3,1,26,1,2,0,12,10,13,0,0,0,4,1
+19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
+29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
+40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
+16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
+22,2,2,3,2,9,1,1,3,10,6,15,33,0,0,4,1
+28,0,2,2,1,14,1,1,3,9,6,3,0,0,0,4,1
+35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+27,5,2,3,1,54,2,1,3,26,8,14,11,0,0,4,0
+22,1,2,1,1,22,2,1,3,7,8,2,22,0,0,4,1
+41,6,3,2,1,37,2,1,3,26,8,10,0,0,0,4,0
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
+29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
 13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
-18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
-22,8,2,1,1,11,2,1,3,23,8,14,11,0,0,4,1
-14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
-51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
-36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
-38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
-30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
-24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
-21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
-31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
-27,0,0,3,1,19,1,1,0,20,5,9,33,0,0,4,1
-24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
-13,1,2,2,1,19,2,2,0,29,5,14,0,0,0,4,1
-8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
-36,6,3,2,1,15,1,2,0,20,5,14,11,0,0,4,1
-16,8,2,2,1,6,2,1,3,18,8,12,0,0,0,4,1
-34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
-10,1,3,2,1,2,2,1,3,30,8,6,11,0,0,4,1
+29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
+12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
+8,0,3,2,1,32,1,1,0,30,3,6,0,0,0,4,1
+14,8,3,2,1,65,2,1,3,6,8,12,22,0,0,4,1
+23,1,0,1,1,61,1,2,0,6,5,15,38,0,0,4,1
+23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
+26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
+15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
+19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
+11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
+4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
+5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
+17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
+39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
+15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
+13,10,3,3,1,35,1,1,3,29,10,5,0,0,0,4,1
 24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
-16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
-35,3,2,1,1,10,1,2,3,26,6,12,0,0,0,4,1
-20,5,2,3,1,22,2,1,0,1,5,10,0,0,0,4,1
+16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
+39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
+36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
+23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
+35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
+24,1,3,1,1,20,2,1,0,17,5,11,46,0,0,4,1
+14,1,3,3,1,62,1,1,3,4,10,15,0,0,0,4,1
+21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
+27,1,2,1,1,9,2,1,3,3,8,10,38,0,0,4,1
+35,11,0,2,1,57,1,1,0,10,10,11,0,0,0,4,1
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+23,1,2,2,1,55,2,1,0,1,5,11,0,0,0,4,1
+13,5,3,3,1,67,2,1,3,13,8,10,11,0,0,4,1
+21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
+31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
+22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
+12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
+31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
+8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
+17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
+36,8,2,4,1,44,1,2,3,12,6,14,0,0,0,4,1
+34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
+41,5,2,2,1,16,1,1,3,30,6,9,22,0,0,4,1
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+23,10,2,3,1,53,1,1,0,26,1,14,11,0,0,4,1
+17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
+10,0,3,4,1,30,2,1,0,9,5,9,11,0,0,4,1
+15,5,2,3,1,22,1,1,0,3,3,9,0,0,0,4,1
+30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
+27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
+29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
+13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
+20,1,2,1,1,24,2,1,2,10,10,12,0,83,1,1,1
+17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
+28,0,2,2,1,61,2,1,2,21,5,1,2,0,0,4,1
+13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
+15,5,2,3,1,24,1,1,0,4,1,2,11,0,0,4,1
+35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
+29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
+35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
+8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
+39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
+37,10,0,2,2,45,1,1,0,20,4,1,0,0,0,4,1
+33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
+22,0,2,2,1,40,1,1,0,24,5,2,38,0,0,4,1
+17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
+22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
 33,1,2,2,1,63,2,1,3,5,8,15,0,0,0,4,1
-14,5,0,3,1,28,1,2,0,6,5,14,33,0,0,4,1
-20,10,3,3,1,11,1,1,3,8,6,1,22,0,0,4,1
-15,10,3,2,1,10,2,1,3,26,8,7,11,0,0,4,0
-17,6,3,1,1,48,1,1,3,26,8,4,0,0,0,4,0
-15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
-21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
-18,10,3,2,1,33,2,2,3,26,8,8,0,0,0,4,0
-17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
-17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
-16,7,2,3,1,9,1,1,0,20,1,13,2,0,0,4,1
-5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
-36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
-10,10,3,2,1,69,1,2,0,28,5,11,0,0,0,4,1
-13,5,3,3,1,9,2,1,3,26,8,11,0,0,0,4,0
-18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
-16,10,2,3,1,66,2,1,0,5,1,11,33,0,0,4,1
-16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
-37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
-41,6,2,4,1,10,1,1,3,2,6,2,0,0,0,4,1
-35,6,2,2,1,39,2,1,3,26,8,7,11,0,0,4,0
-27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
-21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
-13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
-16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
-28,5,3,3,1,9,1,1,0,14,1,12,11,0,0,4,1
-9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
-41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
-25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
-42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
-16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
-11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
-35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
-23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
-42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
-24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
-12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
-21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
-21,7,2,3,1,33,1,1,3,3,6,12,38,0,0,4,1
-32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
-13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
-27,8,3,1,1,24,2,1,3,22,6,3,43,0,0,4,1
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
+16,8,2,2,1,6,2,1,3,18,8,12,0,0,0,4,1
+33,10,2,2,1,27,1,1,0,28,5,11,11,0,0,4,1
+15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
+34,5,2,3,1,34,2,1,3,26,8,16,0,0,0,4,0
+22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
+23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
+27,5,2,3,1,61,1,1,3,12,6,12,22,0,0,4,1
+10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
+18,8,2,2,1,17,2,2,3,26,8,9,0,0,0,4,0
+14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
+33,1,2,1,1,9,2,2,0,17,5,15,22,0,0,4,1
 33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
-34,3,2,1,1,44,2,1,0,8,5,2,0,0,0,4,1
-8,0,3,2,1,10,1,2,0,29,5,12,11,0,0,4,1
-10,0,3,4,1,30,2,1,0,9,5,9,11,0,0,4,1
-13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
-8,5,3,3,1,62,2,1,3,20,8,5,11,0,0,4,1
-15,5,3,3,1,63,1,1,0,19,1,10,46,0,0,4,1
+23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
+41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
diff --git a/DATA/Datasets/Bank/LR/DO_15.data b/DATA/Datasets/Bank/LR/DO_15.data
index 398255e0..c6de27f9 100644
--- a/DATA/Datasets/Bank/LR/DO_15.data
+++ b/DATA/Datasets/Bank/LR/DO_15.data
@@ -1,1500 +1,1500 @@
-10,7,3,2,1,56,2,1,0,30,3,12,33,0,0,4,1
-27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
-33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
-15,1,3,1,1,15,2,1,3,21,8,1,11,0,0,4,1
-17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
-26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
-8,0,3,2,1,31,1,1,0,10,3,12,22,0,0,4,1
-18,5,2,3,1,16,1,1,3,10,6,6,0,0,0,4,1
-14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
-18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
-10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
-29,0,0,2,1,28,1,1,0,20,1,1,33,0,0,4,1
-39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
-21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
-16,10,2,2,1,9,1,1,0,20,1,11,11,0,0,4,1
-41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
-31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
-16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
-30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
-27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
-13,5,3,3,1,67,2,1,3,13,8,10,11,0,0,4,1
-19,8,2,2,1,25,2,1,2,26,10,7,0,0,0,4,1
-19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
-22,1,2,2,1,53,1,1,0,1,3,5,11,552,1,3,1
-35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
-39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
-13,2,3,2,1,9,1,1,2,4,10,5,0,0,0,4,1
-16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
-33,6,2,1,1,18,1,1,2,17,5,6,33,0,0,4,1
-34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
-22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
-28,0,2,2,1,14,1,1,3,9,6,3,0,0,0,4,1
+39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
 15,10,2,3,1,62,1,1,0,12,10,13,0,3,2,1,1
-23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
-17,2,3,3,1,18,2,1,0,9,5,14,11,0,0,4,1
+14,5,3,3,1,50,1,1,0,13,1,13,43,0,0,4,1
+9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
+35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
+14,10,0,3,1,54,1,1,0,14,1,12,11,0,0,4,1
+17,1,3,2,1,45,2,1,3,30,8,12,33,0,0,4,1
+11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
+16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
+28,10,2,2,1,16,1,1,0,9,1,11,38,0,0,4,1
+17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
+32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
 7,1,2,2,1,7,2,1,3,26,8,9,0,0,0,4,0
-33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
-21,11,3,2,1,1,2,1,0,22,3,9,0,0,0,4,1
-16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
-17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
-34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
-37,5,2,3,1,56,1,1,0,3,1,15,1,0,0,4,1
-32,7,2,2,1,9,1,1,0,4,1,12,11,0,0,4,1
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
-8,10,3,3,1,19,1,1,0,11,3,8,0,0,0,4,1
-20,5,2,3,1,44,2,1,2,20,11,5,0,0,0,4,1
-17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
-10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
-12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
-29,5,2,2,1,35,1,1,3,8,6,11,0,0,0,4,1
-11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-22,5,3,3,1,9,1,1,0,27,1,12,43,0,0,4,1
-10,1,2,2,1,63,2,2,3,26,8,7,0,0,0,4,0
-19,3,2,2,1,64,1,2,0,26,3,12,22,0,0,4,1
-40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
-34,6,0,3,1,43,2,2,3,7,6,13,33,0,0,4,1
-8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
-15,1,3,2,1,62,1,1,0,27,3,14,11,0,0,4,1
-22,10,2,3,1,51,2,1,3,26,8,5,0,0,0,4,0
-14,10,3,2,1,60,2,1,0,12,10,12,0,0,0,4,1
-20,10,3,2,1,21,2,1,3,26,8,6,0,0,0,4,0
-39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
-27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
-14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
-11,5,2,3,1,38,1,1,3,20,8,15,11,0,0,4,1
-6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
-8,11,3,2,1,12,1,1,0,30,5,11,0,0,0,4,1
-8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
-27,5,2,3,1,54,2,1,3,26,8,14,11,0,0,4,0
-17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
+7,8,3,2,1,40,1,2,0,6,5,1,11,0,0,4,1
+34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
+4,9,3,2,1,9,1,1,0,27,3,7,43,0,0,4,1
+24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
+22,10,3,2,1,56,2,1,3,23,8,11,22,0,0,4,1
+17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
+36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
+32,5,3,3,1,36,2,1,3,26,8,2,0,0,0,4,0
+10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
+21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
+31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
+6,1,2,2,1,62,2,1,3,18,8,15,22,0,0,4,1
+11,9,3,3,1,52,1,1,0,6,5,14,38,0,0,4,1
+21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
+13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
+21,7,2,3,1,33,1,1,3,3,6,12,38,0,0,4,1
+12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
+43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
+17,1,2,2,1,10,1,1,3,9,10,4,11,0,0,4,1
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+7,10,3,2,1,51,1,1,0,16,5,13,0,0,0,4,1
+10,0,3,4,1,34,1,1,0,29,5,12,0,0,0,4,1
+42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
+13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
+35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
+7,10,3,2,1,10,1,2,0,29,5,11,11,0,0,4,1
+36,5,2,2,1,12,2,1,0,17,5,3,22,0,0,4,1
+26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
+10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
+12,10,3,2,1,68,2,1,3,7,8,2,38,0,0,4,1
 24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
-15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
-31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
-40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
-33,1,2,2,1,32,2,1,3,26,8,13,0,0,0,4,0
-29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
-24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
-23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
-19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
-20,10,0,3,1,23,1,1,3,30,6,15,11,0,0,4,1
-14,10,3,2,1,55,1,2,0,21,4,13,0,0,0,4,1
+34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
+30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
+21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
+25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
+18,0,2,3,1,27,2,1,3,26,8,4,11,0,0,4,0
+4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
+15,5,2,3,1,20,1,1,0,27,3,6,11,0,0,4,1
+12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
+42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
+28,5,3,3,1,9,1,1,0,14,1,12,11,0,0,4,1
+30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
+29,1,2,2,1,67,1,1,0,29,1,13,11,0,0,4,1
+23,10,2,3,1,61,2,1,0,10,10,14,0,0,0,4,1
+13,7,2,3,1,52,2,2,0,13,10,12,0,40,12,0,1
+22,8,2,1,1,11,2,1,3,23,8,14,11,0,0,4,1
+25,7,0,2,1,41,1,1,0,10,10,4,22,0,0,4,1
+12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
+31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
+35,1,2,2,1,9,2,2,3,26,8,6,0,0,0,4,0
 23,2,2,1,1,44,2,1,0,13,10,11,11,0,0,4,1
-12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
-8,8,3,2,1,18,1,1,2,15,11,5,0,0,0,4,1
-37,10,0,2,2,45,1,1,0,20,4,1,0,0,0,4,1
-15,1,3,3,1,62,1,1,0,30,3,3,0,546,1,3,1
-23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
-12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
-18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
-8,0,3,2,1,32,1,1,0,30,3,6,0,0,0,4,1
-32,10,2,2,1,47,2,1,3,26,6,10,38,0,0,4,1
-25,7,2,2,1,17,2,1,0,13,10,10,0,0,0,4,1
-42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
-12,0,3,2,1,4,1,1,0,7,5,11,47,0,0,4,1
-31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
-16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
-26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
-31,5,0,3,1,64,1,1,0,24,5,2,33,0,0,4,1
-14,5,0,3,1,28,1,2,0,6,5,14,33,0,0,4,1
-20,10,2,2,1,28,2,1,3,23,8,13,22,0,0,4,1
-12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
-29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
-18,10,2,2,1,31,1,1,0,20,1,15,33,0,0,4,1
-31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
-37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
-40,7,0,3,1,17,1,1,3,30,6,12,0,0,0,4,1
-37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
-20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
-35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
-13,11,3,1,1,46,1,1,0,25,3,13,0,0,0,4,1
-40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
-21,10,3,2,1,45,1,2,0,23,5,15,33,0,0,4,1
+13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
+12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
+21,1,3,2,1,9,1,1,0,14,5,14,33,0,0,4,1
+20,0,0,2,1,24,2,1,0,26,3,1,22,167,12,3,1
+23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
+32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
+35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
+21,10,2,2,1,9,2,1,3,26,8,6,0,0,0,4,0
+19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
+41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
+15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
+23,1,2,2,1,55,2,1,0,1,5,11,0,0,0,4,1
+28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
+14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
+25,1,2,2,1,23,1,2,0,7,5,0,2,0,0,4,1
+25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
+41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
+16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
 16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
-40,2,2,3,1,65,2,1,2,30,5,16,0,0,0,4,1
-26,11,2,2,1,9,2,1,0,11,3,12,0,190,1,0,1
-23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
-34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
-12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
-28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
-23,1,2,1,1,23,2,2,3,26,8,1,11,0,0,4,0
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-7,5,3,3,1,31,1,1,0,8,3,10,0,0,0,4,1
-26,1,2,4,1,18,2,1,3,6,8,10,0,0,0,4,1
-27,1,2,1,1,31,2,1,3,26,8,9,0,0,0,4,0
-15,10,3,2,1,10,2,1,3,26,8,7,11,0,0,4,0
+5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
+22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
+19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
+19,8,2,2,1,19,2,1,0,7,3,4,11,0,0,4,1
+19,1,2,1,1,9,2,1,3,26,8,13,0,0,0,4,0
+17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
+26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
+27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+16,1,3,2,1,54,2,2,3,26,8,8,0,0,0,4,0
+15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
+21,5,2,3,1,44,2,2,3,26,8,3,11,0,0,4,0
+29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
+12,0,3,2,1,28,2,1,3,27,6,14,2,0,0,4,1
+13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
+41,6,3,2,1,37,2,1,3,26,8,10,0,0,0,4,0
+22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
+56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
+40,2,2,3,1,68,1,1,3,26,6,2,11,0,0,4,1
+35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
+12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
+33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
+29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
+31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
+25,6,2,2,1,68,1,1,2,23,11,3,0,0,0,4,1
 11,5,3,3,1,70,1,1,0,11,7,6,38,0,0,4,1
-30,5,2,2,1,33,2,1,0,20,5,10,45,0,0,4,1
-17,5,2,3,1,22,1,1,0,24,5,9,33,0,0,4,1
-9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
-18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
-15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-27,0,2,2,1,70,1,1,0,27,1,9,11,0,0,4,1
-10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
-42,6,0,2,1,27,2,1,3,26,8,7,0,0,0,4,0
-42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
-41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
-12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
-25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
-32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
-14,5,3,3,1,25,1,1,0,5,1,2,11,0,0,4,1
-39,10,0,2,1,37,1,1,0,5,1,13,11,0,0,4,1
-37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
-16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
-30,5,2,3,1,25,2,1,3,4,8,12,11,0,0,4,1
-36,5,2,3,1,9,1,1,3,26,8,2,11,0,0,4,0
-22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
-18,1,2,2,1,22,1,1,3,26,6,6,0,0,0,4,1
-22,7,3,3,1,20,1,1,2,20,5,0,45,0,0,4,1
-34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
-13,7,3,3,1,18,2,1,3,7,8,12,0,0,0,4,1
-14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
-14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
-15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
-55,6,2,3,1,50,1,1,0,8,3,8,0,0,0,4,1
-38,7,2,1,1,4,2,2,3,26,8,7,11,0,0,4,0
-31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
-37,8,0,2,1,69,1,1,3,26,8,8,0,0,0,4,0
-32,10,2,1,1,17,1,1,3,26,8,1,11,0,0,4,0
-16,8,2,2,1,2,2,2,3,26,8,13,0,0,0,4,0
-7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
-20,0,3,2,1,39,1,1,3,26,6,14,11,0,0,4,1
-31,5,2,2,1,31,1,1,2,27,10,7,0,0,0,4,1
-29,10,2,2,1,67,1,2,0,13,10,15,0,38,12,1,1
-39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
-20,1,2,1,1,24,2,1,2,10,10,12,0,83,1,1,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
-22,5,2,3,1,61,1,1,0,4,1,13,33,0,0,4,1
-19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
-23,10,2,3,1,61,2,1,0,10,10,14,0,0,0,4,1
-17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
-31,1,3,1,1,56,2,1,0,17,5,16,11,0,0,4,1
-6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
-24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
-24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
-32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
-24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
-24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
-13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
-31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
-17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
-35,3,2,1,1,10,1,2,3,26,6,12,0,0,0,4,1
-35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
-41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
-28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
-20,10,3,3,1,11,1,1,3,8,6,1,22,0,0,4,1
-31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
-31,10,2,3,1,43,1,1,0,26,1,14,11,0,0,4,1
-23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
-54,6,2,3,1,9,1,1,0,4,3,16,0,0,0,4,1
-39,8,2,2,1,20,2,1,3,26,8,5,0,0,0,4,0
-29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
-29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
-28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
-16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
-39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
-23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
-33,5,2,2,1,13,2,1,3,26,8,13,0,0,0,4,0
-7,1,2,2,1,9,1,2,0,29,5,10,22,0,0,4,1
-22,1,2,2,1,9,2,1,3,30,8,5,11,0,0,4,1
-24,8,2,2,1,65,1,1,0,20,4,16,0,0,0,4,1
-51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
-34,5,2,3,1,9,2,1,0,25,3,10,0,0,0,4,1
-15,1,0,2,1,42,2,1,3,15,8,13,11,0,0,4,1
-16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
-24,5,2,3,1,43,1,1,0,10,10,13,11,0,0,4,1
-17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
-17,5,2,3,1,68,2,1,3,11,6,7,22,0,0,4,1
-32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
-12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
-17,6,3,1,1,48,1,1,3,26,8,4,0,0,0,4,0
-20,1,2,2,1,59,2,1,3,13,8,11,11,0,0,4,1
-11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
-16,7,2,3,1,9,1,1,0,20,1,13,2,0,0,4,1
-38,1,2,2,1,31,2,1,3,21,8,13,11,0,0,4,1
-21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
-28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
-23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
-17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
-11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
-16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
-20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
-20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
-24,1,3,1,1,20,2,1,0,17,5,11,46,0,0,4,1
-18,5,2,3,1,71,1,1,0,23,5,13,33,0,0,4,1
-29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
-41,8,2,2,1,2,2,1,3,18,8,13,22,0,0,4,1
-21,5,2,3,1,44,2,2,3,26,8,3,11,0,0,4,0
-15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
-17,10,3,3,1,54,1,1,0,13,10,15,11,0,0,4,1
-22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
-5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
-15,5,2,3,1,17,2,1,3,10,1,10,0,0,0,4,1
-19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
-27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
-8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
-35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
-24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
-22,10,3,2,1,56,2,1,3,23,8,11,22,0,0,4,1
-23,5,2,1,1,54,2,1,0,8,10,16,0,0,0,4,1
-27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
-37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
-13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
-15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
-17,1,2,1,1,72,2,1,3,15,8,3,46,0,0,4,1
-36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
-18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
-40,2,2,3,1,68,1,1,3,26,6,2,11,0,0,4,1
-18,7,3,3,1,0,2,2,2,8,11,8,0,0,0,4,1
-13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
-40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
-19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
-20,5,2,3,1,59,1,1,0,22,3,7,0,0,0,4,1
-29,1,2,2,1,67,1,1,0,29,1,13,11,0,0,4,1
-25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
-19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
-28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
-26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
-21,8,3,4,1,32,2,1,3,26,8,9,0,0,0,4,0
-22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
-13,5,2,3,1,66,1,1,0,12,1,13,5,0,0,4,1
-30,5,2,3,1,23,2,1,0,18,3,7,0,0,0,4,1
-39,1,2,2,1,19,2,1,0,8,10,11,0,0,0,4,1
-8,0,3,1,1,1,2,1,3,15,6,12,22,0,0,4,1
-9,5,3,3,1,33,1,1,0,26,3,15,0,0,0,4,1
-38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
-26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
-40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
-30,5,3,3,1,56,1,1,0,3,3,7,0,0,0,4,1
-10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
-26,8,2,2,1,16,2,2,3,26,8,7,0,0,0,4,0
-11,7,2,2,1,47,2,1,3,26,6,11,6,0,0,4,1
-12,5,3,3,1,52,1,1,0,2,1,11,11,0,0,4,1
-22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
-25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
-13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
-40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
-23,10,2,3,1,53,1,1,0,26,1,14,11,0,0,4,1
-13,0,3,2,1,64,2,1,3,18,8,11,11,0,0,4,1
-17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
-25,5,3,3,1,51,1,1,0,10,1,15,43,0,0,4,1
-8,10,2,2,1,1,1,2,0,30,5,9,38,0,0,4,1
-35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
-33,2,2,3,1,54,2,1,3,15,11,3,0,0,0,4,1
-35,10,2,3,1,71,1,1,0,12,1,4,38,0,0,4,1
-9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
-18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
-12,7,2,3,1,22,1,1,3,8,11,7,0,0,0,4,1
-6,1,2,1,1,61,2,1,3,7,8,15,0,0,0,4,1
-33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
-21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
-16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
-9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
-13,10,2,2,1,13,2,1,0,5,5,10,22,0,0,4,1
-23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
-53,6,2,1,1,50,1,1,0,7,3,15,38,0,0,4,1
-28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
-21,5,2,2,1,23,2,1,3,26,8,14,0,0,0,4,0
-41,1,2,1,1,23,2,1,3,26,8,11,22,0,0,4,0
-14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
-39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
-12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
-16,1,3,1,1,0,2,1,0,6,5,14,33,0,0,4,1
-28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
-29,1,2,2,1,36,1,1,0,1,3,8,0,0,0,4,1
-12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
-4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
-12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
-37,6,0,2,1,20,1,2,3,10,6,0,0,0,0,4,1
-14,10,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
-38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
-12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
-32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
-21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
-21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
-29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
-27,1,2,1,1,66,2,1,3,7,8,11,0,0,0,4,1
-39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
-36,10,2,3,1,32,1,1,3,26,8,8,33,0,0,4,0
-18,10,3,2,1,33,2,2,3,26,8,8,0,0,0,4,0
-27,11,2,2,1,26,1,1,2,11,3,14,0,0,0,4,1
-13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
-36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
-41,6,2,2,1,38,2,1,3,26,8,4,22,0,0,4,0
-26,5,2,3,1,12,1,1,0,19,1,10,22,0,0,4,1
-10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
-42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
-7,9,3,2,1,30,1,1,0,26,3,7,45,0,0,4,1
-9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
-17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
-9,10,3,3,1,70,2,1,0,25,3,1,0,0,0,4,1
-15,7,3,3,1,58,1,1,0,10,1,14,22,0,0,4,1
-19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
-12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
-34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
-26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
-39,11,2,2,1,43,1,1,0,26,3,1,11,0,0,4,1
-14,10,3,2,1,45,1,1,0,29,1,9,11,0,0,4,1
-36,8,2,2,1,27,2,1,3,26,8,10,11,0,0,4,0
-11,1,3,2,1,2,2,1,3,21,8,14,11,0,0,4,1
-39,0,2,2,1,21,1,1,0,22,3,9,0,0,0,4,1
-30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
-13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
-31,0,0,2,1,21,2,2,3,29,8,10,0,0,0,4,1
-15,8,3,3,1,45,2,1,0,15,5,3,43,0,0,4,1
-23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
-29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
-24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
-29,1,2,4,2,20,1,1,0,17,1,9,22,0,0,4,1
-17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
-31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
-20,1,0,2,1,23,2,1,0,20,5,1,33,0,0,4,1
-36,0,0,2,1,24,1,1,0,4,3,10,38,0,0,4,1
-14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
-27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
-35,1,2,1,1,47,2,1,0,12,10,12,0,0,0,4,1
-12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
-22,1,2,2,1,9,2,2,3,12,6,0,38,0,0,4,1
-17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
-42,6,2,1,1,58,2,1,3,26,8,7,0,0,0,4,0
-14,10,3,2,1,9,1,1,0,9,1,11,33,0,0,4,1
-28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
-10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
-37,10,2,2,2,4,1,1,0,11,3,13,0,0,0,4,1
-9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
-20,10,2,2,1,71,2,1,0,5,5,13,22,0,0,4,1
-12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
-13,5,0,3,1,36,2,1,0,8,5,11,38,0,0,4,1
-16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
-42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
-23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
-17,5,0,3,1,9,2,1,2,21,11,5,0,0,0,4,1
-49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
-34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
-14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
-25,6,2,2,1,68,1,1,2,23,11,3,0,0,0,4,1
-15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
-24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
-9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
-18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
-14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
-12,1,3,2,1,23,2,1,0,9,5,11,0,0,0,4,1
-37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
-18,7,2,2,1,14,2,1,3,27,6,4,47,0,0,4,1
-12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
-27,0,0,3,1,19,1,1,0,20,5,9,33,0,0,4,1
-19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
-40,5,0,3,1,56,1,1,0,11,3,10,0,0,0,4,1
-37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
-28,10,3,3,1,48,1,1,0,9,1,10,45,0,0,4,1
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
-12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
-33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
-14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
-18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
-36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
-24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
-19,10,2,3,1,31,1,1,0,12,1,12,43,0,0,4,1
-21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
-17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
-39,0,2,2,1,27,1,1,0,10,1,12,33,0,0,4,1
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
-28,5,3,3,1,35,2,1,3,23,8,16,11,0,0,4,1
-28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
-7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
-28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
-12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
-30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
-34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
-25,1,2,1,1,45,1,1,0,11,7,5,0,0,0,4,1
-9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
-24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
-17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
-18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
-29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
-40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
-8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
-19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
-41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
-41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
-67,6,0,1,1,65,1,1,0,9,3,9,22,0,0,4,1
-13,1,3,2,1,37,2,1,3,26,8,6,11,0,0,4,0
-14,5,3,3,1,24,1,1,0,17,1,10,38,0,0,4,1
-19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
-28,10,2,2,1,16,1,1,0,9,1,11,38,0,0,4,1
-25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
-34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
-18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
-19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
-8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
-33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
-14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
-41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
-20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
-27,10,2,3,1,43,2,1,3,10,6,14,22,0,0,4,1
-10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
-15,5,3,3,1,40,2,1,3,26,8,7,0,0,0,4,0
-26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
-10,0,3,4,1,30,2,1,0,9,5,9,11,0,0,4,1
-20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
-28,10,2,2,1,13,2,1,0,13,10,5,11,0,0,4,1
-34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
-29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
-14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
-24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
-13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
-10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
-22,10,0,3,1,56,2,1,3,16,11,1,0,0,0,4,1
-23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
-36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
-17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
-19,10,3,2,1,12,1,1,0,18,3,4,0,0,0,4,1
-16,1,3,2,1,54,2,2,3,26,8,8,0,0,0,4,0
-6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
-28,5,2,3,1,29,2,1,3,26,8,6,0,0,0,4,0
-7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
-23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
-12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
-17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
-15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
-44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
-51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
-18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
-22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
-32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
-36,6,2,2,1,54,2,1,3,26,8,4,0,0,0,4,0
-42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
-29,1,2,2,1,34,1,1,0,2,1,10,0,0,0,4,1
-46,6,2,1,1,48,1,1,0,27,3,10,0,0,0,4,1
-13,5,0,3,1,43,1,1,0,1,3,3,43,0,0,4,1
-42,12,2,4,1,22,1,1,0,18,1,12,2,0,0,4,1
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
-35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
-13,7,2,3,1,70,1,1,0,14,1,11,11,0,0,4,1
-21,1,3,2,1,9,1,1,0,14,5,14,33,0,0,4,1
-40,5,2,4,1,11,2,1,3,26,8,7,22,0,0,4,0
-36,5,2,2,1,46,1,1,3,26,8,4,0,0,0,4,0
-10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
-35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
-18,5,0,3,2,42,1,1,0,27,1,14,33,0,0,4,1
-29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
-42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
-36,8,2,4,1,44,1,2,3,12,6,14,0,0,0,4,1
-16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
-37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
-24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
-18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
-25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
-38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
-17,1,2,4,1,51,2,1,3,12,8,14,11,0,0,4,1
-36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
-11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
-34,5,2,3,1,14,1,1,0,14,1,1,33,0,0,4,1
-28,10,3,2,1,68,1,1,0,10,10,14,22,0,0,4,1
-16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
-27,11,0,2,1,40,2,1,3,21,8,13,0,0,0,4,1
-39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
-12,10,3,2,1,34,1,1,0,13,10,10,22,0,0,4,1
-32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
-18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-27,5,2,3,1,61,1,1,3,12,6,12,22,0,0,4,1
-29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
-15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
-7,8,3,2,1,40,1,2,0,6,5,1,11,0,0,4,1
-35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
-15,5,2,3,1,24,1,1,0,4,1,2,11,0,0,4,1
-27,2,2,2,1,65,1,2,0,8,10,12,11,30,12,0,1
-29,1,2,1,1,1,2,1,3,26,8,6,0,0,0,4,0
-31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
-57,6,2,1,1,42,1,1,0,8,3,9,2,0,0,4,1
-27,1,2,2,1,58,2,1,3,18,8,13,33,0,0,4,1
-22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
-16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
-42,8,3,1,1,38,2,1,3,6,8,15,11,0,0,4,1
-34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
-19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
-33,1,2,1,1,25,2,1,0,8,5,11,11,0,0,4,1
-11,1,3,4,1,62,2,2,0,7,5,6,33,0,0,4,1
-28,0,2,2,1,61,2,1,2,21,5,1,2,0,0,4,1
-24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
-19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
-9,1,3,2,1,31,2,1,3,21,8,13,0,0,0,4,1
-23,0,3,2,1,10,2,1,3,10,8,14,0,0,0,4,1
-22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
-15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
-16,10,3,3,1,72,2,1,0,26,3,13,11,0,0,4,1
-29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
-14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
-15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
-33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
-22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
-9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
-10,0,3,4,1,34,1,1,0,29,5,12,0,0,0,4,1
-6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
-41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
-37,3,2,1,1,27,1,1,3,10,6,15,11,0,0,4,1
-10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
-41,6,2,1,1,20,2,2,0,26,1,14,0,0,0,4,1
-8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
-17,8,2,2,1,9,2,1,3,26,8,10,0,0,0,4,0
-19,10,3,3,1,9,1,1,3,0,5,1,11,0,0,4,1
-28,3,2,1,1,71,1,1,3,26,8,6,0,0,0,4,0
-23,0,2,2,1,55,2,1,3,29,8,1,11,0,0,4,1
-21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
-27,0,2,2,1,18,2,1,3,15,8,15,22,0,0,4,1
-38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
-8,5,3,3,1,9,2,1,3,23,8,7,11,0,0,4,1
-39,10,0,3,1,71,1,1,0,13,1,15,33,0,0,4,1
-8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
-10,0,3,2,1,2,1,2,0,1,5,13,11,0,0,4,1
-20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
-17,9,3,2,1,24,2,1,0,7,3,13,22,112,33,0,1
-15,10,3,3,1,17,2,1,0,9,5,1,22,0,0,4,1
-11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
-33,1,2,2,1,63,2,1,3,5,8,15,0,0,0,4,1
-23,1,2,1,1,31,2,1,3,6,8,1,0,0,0,4,1
-39,6,2,3,1,9,2,2,3,20,8,12,0,0,0,4,1
-33,7,2,3,1,55,2,2,0,24,5,11,33,0,0,4,1
-28,8,2,2,1,36,1,1,0,13,10,15,0,0,0,4,1
-44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
-15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
-12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
-10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
-39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
-14,1,2,1,1,46,2,1,3,11,6,13,33,0,0,4,1
-17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
-12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
-8,5,3,3,1,49,1,1,0,1,5,2,22,0,0,4,1
-31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
-41,6,2,1,1,40,2,1,0,26,1,10,22,0,0,4,1
-33,5,2,3,1,31,2,1,0,13,5,11,0,0,0,4,1
-16,1,2,2,1,14,2,1,3,13,8,15,0,0,0,4,1
-41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
-7,10,3,2,1,14,2,1,0,19,3,9,38,0,0,4,1
-18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
-12,1,3,2,1,9,2,1,3,26,8,10,11,0,0,4,0
-35,8,0,1,1,3,2,2,3,28,8,11,0,0,0,4,1
-16,5,3,3,1,33,2,1,0,13,10,12,43,0,0,4,1
-24,0,2,2,1,10,1,1,3,2,6,2,33,0,0,4,1
-15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
-25,5,2,3,1,17,2,1,0,10,10,0,0,108,12,1,1
-37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
-18,0,2,2,1,71,1,1,0,11,3,8,0,0,0,4,1
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
-7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
-30,11,3,3,1,39,1,1,3,7,6,1,0,0,0,4,1
-10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
-17,1,0,1,1,37,2,1,3,4,8,15,11,0,0,4,1
-15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
-31,2,0,4,2,7,2,1,0,23,5,16,11,0,0,4,1
-14,5,0,3,1,68,1,1,0,3,1,3,43,0,0,4,1
-38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
-13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
-41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
-15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
-13,10,2,2,2,4,2,1,0,9,5,10,11,0,0,4,1
-15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
-14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
-22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
-21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
-15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-37,10,2,3,1,21,1,2,0,26,1,12,11,0,0,4,1
-26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
-24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
-9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
-40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
-17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
-23,1,0,1,1,61,1,2,0,6,5,15,38,0,0,4,1
-23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
-14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
-32,5,2,2,1,13,1,1,0,7,5,10,0,0,0,4,1
-23,8,2,2,1,9,2,1,3,26,8,1,11,0,0,4,0
-39,5,2,3,1,70,1,2,3,12,6,1,11,0,0,4,1
-22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
-38,6,0,3,1,20,1,2,0,13,5,14,0,0,0,4,1
-36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
-41,6,2,4,1,10,1,1,3,2,6,2,0,0,0,4,1
-40,6,2,4,1,71,2,1,3,26,8,12,0,0,0,4,0
-19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
-22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
-39,1,2,4,1,42,1,1,2,5,10,5,0,0,0,4,1
-35,1,2,1,1,64,2,1,0,22,3,4,11,0,0,4,1
-24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
-16,10,2,3,1,66,2,1,0,5,1,11,33,0,0,4,1
-29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
-15,5,2,3,1,22,1,1,0,3,3,9,0,0,0,4,1
-33,1,2,1,1,9,2,2,0,17,5,15,22,0,0,4,1
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
-19,5,2,3,1,46,2,1,0,11,3,8,11,82,30,1,1
-15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
-34,1,2,2,1,63,1,2,2,12,10,14,22,0,0,4,1
-30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
-15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
-36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
-21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
-30,5,2,3,1,9,1,1,2,1,10,7,0,0,0,4,1
-27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
-12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
-40,5,0,2,1,38,1,1,2,23,5,11,11,0,0,4,1
-34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
-17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
-28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
-35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
-9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
-20,1,2,2,1,20,1,1,3,7,6,3,47,0,0,4,1
-40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
-35,11,0,2,1,57,1,1,0,10,10,11,0,0,0,4,1
-10,0,3,2,1,7,1,2,3,18,6,8,11,0,0,4,1
-15,5,3,3,1,37,2,1,0,14,5,1,0,0,0,4,1
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
-41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
-10,10,3,2,1,16,1,1,0,19,3,13,0,0,0,4,1
-42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
-32,1,2,1,1,46,2,1,0,28,1,10,11,0,0,4,1
-19,8,2,2,1,19,2,1,0,7,3,4,11,0,0,4,1
-38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
-25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
-10,1,3,2,1,65,2,1,3,30,8,13,0,0,0,4,1
-25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
-13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
-28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
-30,0,2,1,1,42,2,2,2,24,5,0,47,0,0,4,1
-14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
-26,7,2,3,1,13,1,1,0,12,1,11,38,0,0,4,1
-31,10,3,2,1,2,2,2,0,8,10,10,0,0,0,4,1
-20,1,2,1,1,57,2,1,3,25,6,16,11,0,0,4,1
-21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
-8,0,2,2,1,63,2,2,3,27,6,3,11,0,0,4,1
-7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
-7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
-23,1,3,2,2,11,2,2,0,28,5,11,0,0,0,4,1
-22,1,2,1,1,9,2,1,0,13,5,1,33,0,0,4,1
-17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
-16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
-12,11,3,3,1,37,1,1,0,2,3,11,22,0,0,4,1
-24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
-36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
-21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
-22,1,2,2,1,24,2,2,3,12,6,11,11,0,0,4,1
-44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
-28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
-16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
-8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
-42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
-14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
-8,0,3,3,1,38,1,2,0,18,3,7,11,0,0,4,1
-35,0,0,4,1,32,1,1,0,2,5,3,11,0,0,4,1
-31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
-37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
-42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
-13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
-18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
-21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
-13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
-39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
-13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
-13,7,3,3,1,23,1,1,2,30,3,5,0,0,0,4,1
-10,10,3,2,1,69,1,2,0,28,5,11,0,0,0,4,1
-41,0,2,2,1,9,2,1,0,1,5,16,0,0,0,4,1
-10,11,3,3,1,9,2,1,3,26,8,3,11,0,0,4,0
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
-15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
-25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
-28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
-12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
-19,11,3,2,1,44,2,1,3,29,8,16,11,0,0,4,1
-38,5,2,3,1,59,1,1,0,27,3,5,0,0,0,4,1
-18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
-19,10,2,3,1,55,1,1,0,11,7,7,0,0,0,4,1
-18,5,2,3,1,9,2,1,2,15,11,4,0,49,24,0,1
-40,6,2,1,1,14,1,1,0,9,1,6,11,0,0,4,1
-25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
-39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
-13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
-14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
-36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
-36,5,3,3,1,48,2,1,3,7,8,3,22,0,0,4,1
-10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
-12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
-20,2,2,3,1,9,1,1,0,15,5,11,11,0,0,4,1
-12,5,3,3,1,10,1,1,0,25,3,3,11,0,0,4,1
-22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
-18,7,3,3,1,14,1,1,0,24,5,14,22,0,0,4,1
-41,6,0,2,1,10,1,1,3,26,10,12,0,0,0,4,1
-30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
-34,5,2,3,1,57,1,1,0,9,1,13,22,0,0,4,1
-9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
-13,10,3,3,1,12,1,1,0,26,3,12,0,74,12,0,1
-41,6,0,2,1,53,1,1,0,22,3,7,0,0,0,4,1
-23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
-21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
-34,3,2,2,1,45,2,1,3,5,8,15,22,0,0,4,1
-10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
-13,1,3,2,1,63,1,1,0,28,5,13,11,0,0,4,1
-31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
-23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
-31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
-27,2,2,4,1,38,2,2,0,1,5,14,0,0,0,4,1
-31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
-5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
-31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
-24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
-33,7,2,2,1,70,2,1,0,15,5,3,33,0,0,4,1
-9,9,2,2,1,13,2,1,0,7,5,13,11,0,0,4,1
-13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
-40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
-35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
-8,5,3,3,1,62,2,1,3,20,8,5,11,0,0,4,1
-17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
-25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
-34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
-18,1,2,1,1,58,2,1,3,13,8,12,11,0,0,4,1
-14,8,2,2,1,71,2,1,0,12,10,10,11,38,1,0,1
-23,1,2,2,1,55,2,1,0,1,5,11,0,0,0,4,1
+40,5,2,3,1,47,2,1,2,5,10,5,0,0,0,4,1
+17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
+21,10,2,2,1,46,2,1,0,9,3,4,11,181,1,1,1
+30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
+13,7,2,3,1,21,1,1,0,25,3,6,11,0,0,4,1
+40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
+21,1,2,3,1,58,1,1,0,7,5,12,43,0,0,4,1
+21,8,2,2,1,54,1,1,2,11,3,4,22,0,0,4,1
+10,5,2,2,1,36,2,1,3,20,8,10,0,0,0,4,1
+12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
+41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
+37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
+37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
+10,8,3,2,1,53,2,1,3,27,8,3,22,0,0,4,1
+29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
 17,1,3,2,1,14,2,2,3,26,8,6,0,0,0,4,0
-9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
-26,5,0,3,1,57,1,1,3,15,8,11,43,0,0,4,1
-12,8,3,2,2,4,2,1,0,9,5,10,0,0,0,4,1
-11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
-18,1,2,2,1,39,2,2,0,7,5,14,0,0,0,4,1
-17,1,3,2,1,45,2,1,3,30,8,12,33,0,0,4,1
-19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
 25,1,3,2,1,37,2,1,3,30,8,15,22,0,0,4,1
-28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
-36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
-19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
-4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
-14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
-18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
-41,1,0,1,1,15,1,2,0,28,5,14,0,0,0,4,1
-39,5,2,3,1,43,1,1,0,13,10,11,22,0,0,4,1
-35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
-22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
-14,5,3,3,1,50,1,1,0,13,1,13,43,0,0,4,1
-21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
-30,11,2,2,1,36,2,1,3,26,8,7,0,0,0,4,0
-22,0,2,2,1,40,1,1,0,24,5,2,38,0,0,4,1
-32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
-26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
-27,1,2,1,1,9,2,1,3,3,8,10,38,0,0,4,1
-14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
-23,1,2,1,1,18,2,1,3,27,6,11,11,0,0,4,1
-16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
-53,6,2,2,1,35,1,1,0,8,3,6,0,0,0,4,1
-33,10,2,2,1,27,1,1,0,28,5,11,11,0,0,4,1
-18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
-10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
-13,0,2,2,1,37,2,1,3,30,8,11,0,0,0,4,1
-18,5,2,3,1,9,2,2,3,26,8,9,0,0,0,4,0
+17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
+39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
+36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
+21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
+17,5,2,3,1,22,1,1,0,24,5,9,33,0,0,4,1
+41,5,2,2,1,16,1,1,3,30,6,9,22,0,0,4,1
+31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
+13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
+29,1,2,1,1,1,2,1,3,26,8,6,0,0,0,4,0
+22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
 12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
-22,2,2,3,2,9,1,1,3,10,6,15,33,0,0,4,1
-12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
-10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
-23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
-28,1,2,2,1,49,1,2,0,9,1,12,43,0,0,4,1
-13,1,2,2,1,61,2,1,3,9,6,12,33,0,0,4,1
-7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
-22,8,2,1,1,11,2,1,3,23,8,14,11,0,0,4,1
-23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
-42,1,2,4,1,10,2,1,3,26,8,7,0,0,0,4,0
-31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
-12,0,0,2,1,43,2,1,3,25,6,10,6,0,0,4,1
-7,5,2,2,1,28,2,1,0,15,5,13,0,0,0,4,1
-72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
-11,0,0,3,2,9,1,2,0,30,5,9,22,0,0,4,1
-12,0,3,2,1,28,2,1,3,27,6,14,2,0,0,4,1
-40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
-15,3,2,1,1,26,1,1,0,17,1,10,43,0,0,4,1
-34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
-8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
-28,7,2,3,1,30,1,1,0,10,10,1,0,3,30,0,1
-15,11,2,2,1,1,1,1,0,23,5,10,22,0,0,4,1
-43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
-34,1,2,4,1,9,2,1,0,30,5,4,0,0,0,4,1
-18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
-30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
-23,8,2,4,2,9,1,2,0,23,5,2,33,0,0,4,1
-17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
-30,1,2,2,1,17,2,1,3,5,8,12,11,0,0,4,1
-22,1,2,1,1,22,2,1,3,7,8,2,22,0,0,4,1
-14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
-15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
-33,0,2,2,1,70,1,1,0,26,1,1,0,0,0,4,1
-38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
-15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
-35,1,2,2,1,59,1,1,0,22,3,7,0,0,0,4,1
-15,5,3,3,1,63,1,1,0,19,1,10,46,0,0,4,1
-10,5,2,2,1,36,2,1,3,20,8,10,0,0,0,4,1
-16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
-37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
-10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
-16,1,2,2,1,23,1,1,0,27,1,15,11,0,0,4,1
-19,2,0,2,1,22,2,2,3,4,8,13,43,0,0,4,1
-20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
-28,5,2,2,1,9,1,1,0,9,10,6,0,0,0,4,1
-37,10,2,2,1,14,2,1,3,26,8,5,11,0,0,4,0
-31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
-12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
-17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
-35,1,2,1,1,56,1,1,0,20,1,7,43,0,0,4,1
-35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
-12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
-23,1,3,2,2,4,1,2,0,12,10,10,0,0,0,4,1
-13,8,2,2,1,31,2,2,3,26,8,5,0,0,0,4,0
-15,5,3,3,1,48,1,1,2,12,1,11,43,0,0,4,1
-38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
-13,12,2,2,1,12,1,1,0,13,10,10,11,552,12,0,1
-17,10,0,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-11,9,3,3,1,52,1,1,0,6,5,14,38,0,0,4,1
-25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
-13,1,2,2,1,19,2,2,0,29,5,14,0,0,0,4,1
-42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
-13,5,3,3,1,9,2,1,3,26,8,11,0,0,0,4,0
-30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
-36,10,2,2,1,9,1,1,2,26,3,13,22,0,0,4,1
-14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
-27,10,2,2,1,62,2,1,0,12,10,8,0,0,0,4,1
-19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
-8,9,3,2,1,9,2,1,3,26,8,11,11,0,0,4,0
-42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
-28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
-21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
-29,10,2,2,1,40,1,1,0,8,3,7,0,0,0,4,1
-39,0,0,2,1,61,1,1,0,1,5,13,0,0,0,4,1
-31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
-14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
-28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
-12,0,3,3,1,9,2,1,0,25,3,13,11,0,0,4,1
-14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
-19,5,3,3,1,58,2,1,3,26,8,4,0,0,0,4,0
-11,7,3,3,1,14,2,1,3,23,8,4,11,0,0,4,1
-36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
-40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
-25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
-19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
-11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
-32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
-42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-16,2,2,3,1,11,2,1,0,26,3,3,1,0,0,4,1
-41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
-15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
-20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
-38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
-27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
-15,5,2,3,1,20,1,1,0,27,3,6,11,0,0,4,1
-18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
-23,0,3,2,1,67,1,2,3,2,6,11,33,0,0,4,1
-22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
-28,10,2,2,1,41,1,2,0,19,3,2,0,0,0,4,1
-9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
-23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
-4,9,3,2,1,9,1,1,0,27,3,7,43,0,0,4,1
-18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
-14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
-14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
-11,1,2,2,1,66,2,2,0,1,5,12,0,0,0,4,1
-25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
-9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
-39,6,2,2,1,27,2,1,3,26,8,7,11,0,0,4,0
-29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
-38,1,3,2,1,61,1,2,0,29,5,14,22,0,0,4,1
-39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
-21,1,2,1,1,13,1,1,0,22,3,15,0,0,0,4,1
-25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
-29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
-26,8,0,2,1,53,2,2,3,19,8,8,11,0,0,4,1
-19,10,3,2,1,3,2,1,0,4,1,2,43,0,0,4,1
-42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
-15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
-13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
-20,1,3,3,1,35,2,1,3,12,6,4,1,0,0,4,1
-8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
-34,5,2,3,1,34,2,1,3,26,8,16,0,0,0,4,0
-33,6,2,1,1,61,1,1,3,9,6,14,0,0,0,4,1
-32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
-13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
-10,7,2,3,1,9,2,1,0,25,3,11,22,106,30,0,1
-18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
-16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
-11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
-14,10,0,3,1,54,1,1,0,14,1,12,11,0,0,4,1
-7,10,3,2,1,10,1,2,0,29,5,11,11,0,0,4,1
-30,1,2,1,1,63,1,2,0,2,1,9,38,0,0,4,1
-41,10,0,2,1,30,1,1,0,12,10,10,0,0,0,4,1
-40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
-43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
-42,1,2,1,1,52,1,1,0,9,1,12,33,0,0,4,1
-16,10,2,2,1,10,1,1,0,17,1,4,1,0,0,4,1
-28,1,2,1,1,68,1,1,0,27,1,16,0,0,0,4,1
-24,11,0,2,1,22,2,1,3,23,8,14,11,0,0,4,1
-13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
-9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
-37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
-36,10,3,3,1,50,2,1,0,9,5,12,22,0,0,4,1
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
-29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
-8,2,3,3,1,63,1,1,0,26,3,6,11,98,23,1,1
-39,10,2,2,1,64,1,1,2,20,11,4,0,0,0,4,1
-41,6,2,2,1,19,2,2,3,5,8,1,11,0,0,4,1
-11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
-23,10,3,2,1,60,2,1,0,12,10,7,22,0,0,4,1
-27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
-17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
-25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
-40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
-15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
-41,3,2,1,1,9,1,1,0,26,1,1,0,0,0,4,1
-6,1,2,2,1,62,2,1,3,18,8,15,22,0,0,4,1
-20,8,0,2,1,58,1,1,3,26,6,12,0,0,0,4,1
-25,10,0,4,1,26,2,1,3,26,8,4,0,0,0,4,0
-18,8,2,2,1,17,2,2,3,26,8,9,0,0,0,4,0
-20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
-16,1,2,2,1,31,2,1,3,15,8,15,0,0,0,4,1
-17,5,0,3,1,44,2,1,3,29,8,1,0,0,0,4,1
-39,10,2,2,1,11,2,1,3,26,8,0,33,0,0,4,0
-12,0,2,2,1,68,2,1,3,21,8,13,22,0,0,4,1
-32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
-38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
-41,5,0,3,1,32,2,1,2,21,11,7,0,0,0,4,1
+29,1,2,2,1,34,1,1,0,2,1,10,0,0,0,4,1
+41,8,2,2,1,2,2,1,3,18,8,13,22,0,0,4,1
+40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
+33,1,2,1,1,9,2,2,0,17,5,15,22,0,0,4,1
+13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
+17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
+21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
+15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
+38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
+39,6,0,3,1,64,1,1,0,27,1,3,33,0,0,4,1
+39,10,2,3,1,9,1,1,3,5,8,14,11,0,0,4,1
+18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
+9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
+14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
+33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
+12,5,3,3,1,10,1,1,0,25,3,3,11,0,0,4,1
+13,1,3,2,1,63,1,1,0,28,5,13,11,0,0,4,1
+13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
+33,11,0,3,1,9,1,1,0,24,5,11,11,0,0,4,1
+38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
+27,10,2,2,1,62,2,1,0,12,10,8,0,0,0,4,1
+6,1,2,1,1,61,2,1,3,7,8,15,0,0,0,4,1
+32,7,2,2,1,9,1,1,0,4,1,12,11,0,0,4,1
+41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
+25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
+12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
+37,8,0,2,2,9,2,1,3,26,8,6,0,0,0,4,0
+14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
+22,1,3,2,1,37,1,1,0,10,10,16,0,0,0,4,1
+34,6,0,3,1,43,2,2,3,7,6,13,33,0,0,4,1
+22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
+12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
+13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
+9,0,2,3,1,63,1,1,0,1,3,5,0,0,0,4,1
+28,10,3,2,1,68,1,1,0,10,10,14,22,0,0,4,1
+25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
+11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
+14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
+36,6,0,3,1,9,1,1,3,4,8,12,0,0,0,4,1
+30,11,2,2,1,36,2,1,3,26,8,7,0,0,0,4,0
 11,10,3,3,1,29,1,1,0,11,3,3,0,0,0,4,1
-9,10,3,2,1,45,1,1,0,20,5,14,22,0,0,4,1
-14,7,2,3,1,17,1,1,0,27,1,3,33,0,0,4,1
-16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
+31,8,2,2,1,50,1,1,3,26,8,7,11,0,0,4,0
 27,5,0,2,1,60,2,1,3,25,6,12,0,0,0,4,1
-22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
-33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
-32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
-28,5,3,3,1,9,1,1,0,14,1,12,11,0,0,4,1
-33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
-17,2,0,2,1,7,2,1,3,26,8,8,0,0,0,4,0
+26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
+17,5,0,3,1,44,2,1,3,29,8,1,0,0,0,4,1
+14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
+23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
+28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
+27,0,2,2,1,70,1,1,0,27,1,9,11,0,0,4,1
+15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+13,11,3,1,1,20,1,1,0,23,4,13,11,110,1,1,1
+19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
+15,5,2,3,1,17,2,1,3,10,1,10,0,0,0,4,1
+17,5,2,3,1,68,2,1,3,11,6,7,22,0,0,4,1
+31,5,2,3,1,9,1,1,2,8,11,7,0,0,0,4,1
+14,5,3,3,1,25,1,1,0,5,1,2,11,0,0,4,1
+21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
+23,1,2,1,1,23,2,2,3,26,8,1,11,0,0,4,0
+10,8,2,2,1,53,2,2,0,29,5,6,11,0,0,4,1
+21,10,3,3,1,50,2,1,3,26,8,6,0,0,0,4,0
+22,10,0,3,1,56,2,1,3,16,11,1,0,0,0,4,1
+14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
+39,5,2,3,1,70,1,2,3,12,6,1,11,0,0,4,1
+36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
+12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
+8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
+9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
+15,8,2,2,1,41,2,1,2,13,11,4,0,550,30,0,1
+13,5,2,3,1,61,1,1,0,28,1,2,0,0,0,4,1
+24,5,2,3,1,43,1,1,0,10,10,13,11,0,0,4,1
+19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
+41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
+42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
+25,1,2,1,1,45,1,1,0,11,7,5,0,0,0,4,1
+9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
+12,8,0,2,1,40,2,1,0,12,10,10,0,0,0,4,1
+15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
+14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
+36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
+31,2,0,4,2,7,2,1,0,23,5,16,11,0,0,4,1
+23,1,2,2,1,17,2,1,3,6,8,2,33,0,0,4,1
+21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
+12,0,3,2,1,38,2,1,0,25,3,1,11,0,0,4,1
+55,6,2,3,1,50,1,1,0,8,3,8,0,0,0,4,1
+16,10,3,3,1,72,2,1,0,26,3,13,11,0,0,4,1
+32,10,2,2,1,47,2,1,3,26,6,10,38,0,0,4,1
+28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
+40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
+13,10,2,2,1,13,2,1,0,5,5,10,22,0,0,4,1
+14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
+41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
+24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
+13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
+28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
+26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
+14,1,3,3,1,62,1,1,3,4,10,15,0,0,0,4,1
+20,1,0,2,1,23,2,1,0,20,5,1,33,0,0,4,1
+14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
+36,10,3,3,1,50,2,1,0,9,5,12,22,0,0,4,1
+15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
+16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
+37,1,2,4,1,69,1,1,0,14,1,3,11,0,0,4,1
+18,1,2,2,1,22,1,1,3,26,6,6,0,0,0,4,1
+28,10,3,3,1,48,1,1,0,9,1,10,45,0,0,4,1
+13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
+15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
+13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
+30,1,2,2,1,20,2,1,3,5,8,13,0,0,0,4,1
+16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
+41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
+40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
+42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
+8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
 8,1,3,1,1,46,2,1,0,13,5,11,11,0,0,4,1
-20,10,2,3,1,25,1,1,0,26,1,3,11,0,0,4,1
-33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
-57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
-7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
-14,5,3,3,1,38,1,1,0,8,3,7,11,0,0,4,1
-28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
-29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
-22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
-37,6,0,2,1,3,1,2,0,16,5,4,0,0,0,4,1
-12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
-20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
-22,0,2,1,1,63,2,2,0,13,10,14,0,0,0,4,1
-19,5,3,3,1,49,2,1,0,4,1,15,43,0,0,4,1
-14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
-18,7,2,3,1,24,1,1,3,26,8,6,11,0,0,4,0
-12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
+27,10,2,3,1,43,2,1,3,10,6,14,22,0,0,4,1
+12,0,2,2,1,49,2,1,0,13,10,11,33,0,0,4,1
+13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
+28,5,2,2,1,18,1,1,0,13,10,2,11,0,0,4,1
+28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
+23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
+30,5,2,3,1,25,2,1,3,4,8,12,11,0,0,4,1
+20,10,0,3,1,23,1,1,3,30,6,15,11,0,0,4,1
 12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
-17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
-20,2,3,3,1,30,1,2,3,26,8,5,0,0,0,4,0
-7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
-14,5,3,3,1,32,2,1,0,13,5,12,22,0,0,4,1
-9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
-10,1,3,2,1,2,2,1,3,30,8,6,11,0,0,4,1
-30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
-16,8,2,2,1,6,2,1,3,18,8,12,0,0,0,4,1
+22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
+20,8,0,2,1,58,1,1,3,26,6,12,0,0,0,4,1
+21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
+17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
+15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
+37,1,2,2,1,44,1,1,3,26,8,8,0,0,0,4,0
+39,1,2,2,1,58,2,2,3,26,8,7,0,0,0,4,0
+10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
+20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
+14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
+39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
+36,10,2,3,1,32,1,1,3,26,8,8,33,0,0,4,0
+17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
+25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+8,0,3,1,1,1,2,1,3,15,6,12,22,0,0,4,1
+39,10,0,3,1,71,1,1,0,13,1,15,33,0,0,4,1
+38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
+27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
+12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
+30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
+20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
 14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
-20,0,0,2,1,24,2,1,0,26,3,1,22,167,12,3,1
-19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
-31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
-32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
-16,5,2,3,1,54,2,1,0,3,1,3,33,0,0,4,1
-17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
+11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
+8,10,2,2,1,1,1,2,0,30,5,9,38,0,0,4,1
+42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
+36,6,2,2,1,16,1,1,2,17,5,4,11,0,0,4,1
 31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
-25,1,3,2,1,64,2,1,3,12,6,11,11,0,0,4,1
-20,5,2,3,1,23,1,1,3,29,1,8,33,0,0,4,1
-36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
-13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
-36,5,2,2,1,12,2,1,0,17,5,3,22,0,0,4,1
-40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
-13,5,3,3,1,39,1,1,0,11,3,7,0,502,1,0,1
-12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
-21,10,2,2,1,9,2,1,3,26,8,6,0,0,0,4,0
+8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
+27,1,2,1,1,9,2,1,3,3,8,10,38,0,0,4,1
+31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
+8,8,3,3,1,12,2,1,0,27,3,16,11,0,0,4,1
+8,5,3,3,1,49,1,1,0,1,5,2,22,0,0,4,1
+41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
+14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
+17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
+26,7,2,2,1,63,1,1,3,26,10,6,0,0,0,4,1
+10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
+14,5,3,3,1,32,2,1,0,13,5,12,22,0,0,4,1
+40,5,0,3,1,56,1,1,0,11,3,10,0,0,0,4,1
+32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
+24,1,3,1,1,20,2,1,0,17,5,11,46,0,0,4,1
+12,0,3,3,1,9,2,1,0,25,3,13,11,0,0,4,1
 14,8,3,4,1,30,1,1,0,8,10,1,11,0,0,4,1
-32,0,2,2,1,63,2,1,0,27,1,3,33,0,0,4,1
-33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
-11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
-17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
-42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
-20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
-17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
-18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
-18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
-13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
-56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
-30,5,2,3,1,54,2,1,3,12,6,13,0,0,0,4,1
-36,6,2,2,1,16,1,1,2,17,5,4,11,0,0,4,1
-34,6,2,4,1,36,1,1,3,2,6,12,0,0,0,4,1
-12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
-10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
-41,6,3,2,1,37,2,1,3,26,8,10,0,0,0,4,0
-21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
-12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
-13,5,2,3,1,61,1,1,0,28,1,2,0,0,0,4,1
-33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
-33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
-22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
-33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
-24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
-12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
-35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
-35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
-19,10,3,2,1,31,1,1,0,7,3,15,22,0,0,4,1
-38,1,2,2,1,14,1,1,3,2,6,15,0,0,0,4,1
-24,5,2,4,1,34,1,1,3,26,8,9,11,0,0,4,0
-35,1,2,2,1,9,2,2,3,26,8,6,0,0,0,4,0
-17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
-10,8,3,2,1,53,2,1,3,27,8,3,22,0,0,4,1
-19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
-15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
+27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
+16,10,2,3,1,66,2,1,0,5,1,11,33,0,0,4,1
+37,1,2,1,1,59,2,1,3,26,8,7,0,0,0,4,0
+22,1,2,2,1,24,2,2,3,12,6,11,11,0,0,4,1
+17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
+27,5,2,3,1,61,1,1,3,12,6,12,22,0,0,4,1
+12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
+27,11,0,2,1,40,2,1,3,21,8,13,0,0,0,4,1
+35,10,0,1,1,18,2,1,3,5,8,10,0,0,0,4,1
+26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
+13,5,0,3,1,36,2,1,0,8,5,11,38,0,0,4,1
+38,1,2,2,1,14,1,1,3,2,6,15,0,0,0,4,1
+38,5,2,3,1,59,1,1,0,27,3,5,0,0,0,4,1
+28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+10,1,3,2,1,65,2,1,3,30,8,13,0,0,0,4,1
+16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
+42,1,2,4,1,10,2,1,3,26,8,7,0,0,0,4,0
+25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
+37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
+13,7,2,3,1,70,1,1,0,14,1,11,11,0,0,4,1
+28,7,2,3,1,30,1,1,0,10,10,1,0,3,30,0,1
+7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
+39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
+17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
+26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
+25,1,2,1,1,37,2,1,0,12,10,7,11,0,0,4,1
+20,1,2,1,1,57,2,1,3,25,6,16,11,0,0,4,1
+22,2,0,2,1,37,2,1,0,9,5,12,22,0,0,4,1
+21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
+19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
+21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
+19,3,2,2,1,64,1,2,0,26,3,12,22,0,0,4,1
+8,5,3,3,1,62,2,1,3,20,8,5,11,0,0,4,1
+19,10,2,3,1,31,1,1,0,12,1,12,43,0,0,4,1
+34,3,2,2,1,45,2,1,3,5,8,15,22,0,0,4,1
+32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
+37,10,0,2,2,45,1,1,0,20,4,1,0,0,0,4,1
+20,1,2,2,1,20,1,1,3,7,6,3,47,0,0,4,1
+13,1,2,1,1,39,2,1,0,16,5,15,11,0,0,4,1
+32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
+11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
+26,0,0,2,1,20,2,1,0,5,5,5,11,0,0,4,1
+12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
+17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
+9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
+11,5,2,3,1,18,2,1,0,25,3,14,11,0,0,4,1
+9,1,3,2,1,31,2,1,3,21,8,13,0,0,0,4,1
+26,11,2,2,1,9,2,1,0,11,3,12,0,190,1,0,1
+24,8,2,2,1,17,2,1,0,11,7,13,33,0,0,4,1
+38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
+36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
+31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
+49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+40,6,2,4,1,71,2,1,3,26,8,12,0,0,0,4,0
+31,8,2,2,1,67,1,1,0,29,1,13,33,0,0,4,1
+12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
+42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
+14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
+11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
+22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
+11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
+12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
+11,8,3,2,1,67,1,2,3,22,5,11,22,0,0,4,1
+7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
+13,10,3,3,1,35,1,1,3,29,10,5,0,0,0,4,1
+22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
+16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
+43,6,2,2,1,65,1,1,0,27,1,10,33,0,0,4,1
+22,1,2,2,1,53,1,1,0,1,3,5,11,552,1,3,1
+14,8,2,2,1,71,2,1,0,12,10,10,11,38,1,0,1
+18,0,2,2,1,71,1,1,0,11,3,8,0,0,0,4,1
+28,0,2,2,1,14,1,1,3,9,6,3,0,0,0,4,1
+18,7,3,3,1,0,2,2,2,8,11,8,0,0,0,4,1
+8,8,3,2,1,11,1,1,0,23,4,1,11,0,0,4,1
+27,1,0,1,1,2,1,1,0,6,5,14,11,0,0,4,1
+29,5,2,2,1,35,1,1,3,8,6,11,0,0,0,4,1
+14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+41,5,2,3,1,36,1,2,0,6,5,14,22,0,0,4,1
+12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
+12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
+13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
+16,2,2,3,1,11,2,1,0,26,3,3,1,0,0,4,1
+38,1,3,2,1,61,1,2,0,29,5,14,22,0,0,4,1
+44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
+16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
+26,5,0,3,1,57,1,1,3,15,8,11,43,0,0,4,1
+42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
 39,11,2,3,1,47,1,1,3,26,8,10,0,0,0,4,0
-27,1,2,2,1,12,2,1,3,14,11,12,0,0,0,4,1
-18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
-8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
-40,5,2,3,1,47,2,1,2,5,10,5,0,0,0,4,1
-9,12,3,2,1,13,1,1,2,18,3,7,0,4,1,0,1
-34,5,3,3,1,67,1,1,0,18,1,2,43,0,0,4,1
-5,8,3,2,1,61,2,1,3,20,8,2,0,0,0,4,1
-27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
-14,7,3,3,1,44,2,1,0,9,10,10,0,0,0,4,1
-18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-33,2,2,4,1,58,2,1,3,20,8,11,47,0,0,4,1
-35,5,0,2,1,9,1,2,2,14,2,2,0,0,0,4,1
-15,5,0,3,1,35,1,1,0,26,1,1,11,0,0,4,1
+29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
+19,10,3,2,1,3,2,1,0,4,1,2,43,0,0,4,1
+19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
+42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
+28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
+13,7,3,3,1,23,1,1,2,30,3,5,0,0,0,4,1
 6,10,3,2,1,46,2,1,3,7,8,15,0,0,0,4,1
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
-26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
-42,6,2,3,1,32,2,1,0,11,3,9,0,0,0,4,1
+30,5,2,2,1,33,2,1,0,20,5,10,45,0,0,4,1
+40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
+17,2,3,3,1,18,2,1,0,9,5,14,11,0,0,4,1
+35,1,2,1,1,56,1,1,0,20,1,7,43,0,0,4,1
+19,5,0,3,1,22,1,1,0,6,5,10,38,0,0,4,1
+16,8,3,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
+19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
+15,8,2,2,1,66,2,1,3,26,8,9,0,0,0,4,0
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
+16,0,2,2,1,19,1,1,0,26,3,12,11,0,0,4,1
+22,10,3,3,1,21,2,1,0,11,3,7,0,157,12,0,1
+17,1,2,4,1,51,2,1,3,12,8,14,11,0,0,4,1
+17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
+15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
+12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
+42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
+11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
+13,1,2,2,1,19,2,2,0,29,5,14,0,0,0,4,1
+18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
+10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+10,0,3,2,1,2,1,2,0,1,5,13,11,0,0,4,1
+12,0,0,2,1,43,2,1,3,25,6,10,6,0,0,4,1
+42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
+19,5,3,3,1,58,2,1,3,26,8,4,0,0,0,4,0
+18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
+9,9,2,2,1,13,2,1,0,7,5,13,11,0,0,4,1
+12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
+13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
+18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
+35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
+24,8,2,2,1,65,1,1,0,20,4,16,0,0,0,4,1
+28,1,2,1,1,68,1,1,0,27,1,16,0,0,0,4,1
+28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
+10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
+19,5,2,3,1,46,2,1,0,11,3,8,11,82,30,1,1
+25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
+20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+18,5,2,3,1,9,2,1,2,15,11,4,0,49,24,0,1
+19,5,3,3,1,30,1,1,3,26,6,1,0,0,0,4,1
+30,5,2,3,1,23,2,1,0,18,3,7,0,0,0,4,1
+25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
+13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
+14,10,3,3,1,14,2,1,0,25,3,6,11,0,0,4,1
+23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
+41,6,2,1,1,20,2,2,0,26,1,14,0,0,0,4,1
+41,0,2,2,1,9,2,1,0,1,5,16,0,0,0,4,1
+40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
+20,1,3,3,1,35,2,1,3,12,6,4,1,0,0,4,1
+39,8,2,2,1,20,2,1,3,26,8,5,0,0,0,4,0
+18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
+23,1,0,1,1,61,1,2,0,6,5,15,38,0,0,4,1
+29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
+31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
+15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
+12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
+41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
+12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+11,1,3,2,1,2,2,1,3,21,8,14,11,0,0,4,1
+29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
+31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
+15,1,3,1,1,15,2,1,3,21,8,1,11,0,0,4,1
+22,5,2,3,1,61,1,1,0,4,1,13,33,0,0,4,1
+7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
+4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
+22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
+7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
+5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+29,3,3,3,1,43,1,1,3,3,6,16,43,0,0,4,1
+9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
+35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
+33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
+32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
+31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
+16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
+12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
+16,1,3,1,1,0,2,1,0,6,5,14,33,0,0,4,1
+32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
+16,1,2,2,1,23,1,1,0,27,1,15,11,0,0,4,1
+17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
+26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
+26,1,2,2,1,18,2,1,3,26,8,7,11,0,0,4,0
+13,0,3,2,1,64,2,1,3,18,8,11,11,0,0,4,1
+8,5,3,3,1,9,2,1,3,23,8,7,11,0,0,4,1
+17,8,2,2,1,9,2,1,3,26,8,10,0,0,0,4,0
 11,0,3,2,1,67,2,2,3,26,8,11,0,0,0,4,0
-9,5,3,3,1,19,2,1,0,7,5,10,0,0,0,4,1
-43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
-11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
-11,8,3,2,1,67,1,2,3,22,5,11,22,0,0,4,1
-21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
-25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
+13,12,2,2,1,12,1,1,0,13,10,10,11,552,12,0,1
 14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
-18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
-22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
-26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
-29,0,2,2,1,35,2,1,0,14,5,3,11,0,0,4,1
-12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
-21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
 18,5,3,3,1,26,1,2,0,12,10,13,0,0,0,4,1
-11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
-9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
-10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
-30,1,2,2,1,20,2,1,3,5,8,13,0,0,0,4,1
-13,5,0,3,1,12,2,1,3,18,8,3,33,0,0,4,1
-24,2,0,3,2,25,2,1,3,26,8,9,0,0,0,4,0
+26,8,0,2,1,53,2,2,3,19,8,8,11,0,0,4,1
+26,7,2,3,1,13,1,1,0,12,1,11,38,0,0,4,1
+14,7,3,3,1,44,2,1,0,9,10,10,0,0,0,4,1
+28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
+12,1,3,2,1,71,2,1,3,11,6,13,11,0,0,4,1
+22,1,2,1,1,22,2,1,3,7,8,2,22,0,0,4,1
+31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
+11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
+38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
+42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
+33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
+34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
+31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
+22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
+19,10,3,3,1,9,1,1,3,0,5,1,11,0,0,4,1
+42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
+34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
+35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
+23,0,3,2,1,10,2,1,3,10,8,14,0,0,0,4,1
+30,1,2,2,1,17,2,1,3,5,8,12,11,0,0,4,1
 19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
-40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
-28,5,0,3,1,15,1,1,0,2,1,13,22,0,0,4,1
-18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
-34,3,2,1,1,44,2,1,0,8,5,2,0,0,0,4,1
-12,8,0,2,1,40,2,1,0,12,10,10,0,0,0,4,1
-18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
-39,10,2,3,1,9,1,1,3,5,8,14,11,0,0,4,1
-28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
-13,5,3,3,1,23,1,1,0,3,1,10,22,0,0,4,1
-14,10,3,3,1,14,2,1,0,25,3,6,11,0,0,4,1
-35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
-27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
-20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
-35,11,2,4,1,15,1,1,3,26,8,9,22,0,0,4,0
-20,8,3,2,1,56,2,1,3,26,8,13,11,0,0,4,0
-20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
+16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
+37,10,2,2,2,4,1,1,0,11,3,13,0,0,0,4,1
+14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
+40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
+31,5,0,3,1,64,1,1,0,24,5,2,33,0,0,4,1
+13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
+15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
+32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
+19,10,3,2,1,12,1,1,0,18,3,4,0,0,0,4,1
+12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
+18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
+13,5,3,3,1,9,2,1,3,26,8,11,0,0,0,4,0
+8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
+29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
+33,10,2,2,1,27,1,1,0,28,5,11,11,0,0,4,1
 18,2,0,3,1,65,1,2,0,28,5,13,22,0,0,4,1
+16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
+18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
+29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
+13,1,2,2,1,64,2,1,3,10,8,0,33,0,0,4,1
+21,0,2,2,1,15,2,2,0,25,3,3,11,0,0,4,1
+20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
+26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
+14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
+39,0,2,2,1,27,1,1,0,10,1,12,33,0,0,4,1
+24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
+35,3,2,1,1,10,1,2,3,26,6,12,0,0,0,4,1
+24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
+9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
+31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
+8,1,2,2,1,0,2,2,0,8,5,2,22,0,0,4,1
+13,5,3,3,1,36,1,2,0,29,5,10,33,0,0,4,1
+39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
+20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
+40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
+23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
+39,10,0,2,1,37,1,1,0,5,1,13,11,0,0,4,1
+41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
+11,1,2,2,1,66,2,2,0,1,5,12,0,0,0,4,1
+30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
+7,5,2,2,1,28,2,1,0,15,5,13,0,0,0,4,1
+14,5,2,3,1,9,2,1,3,26,8,6,0,0,0,4,0
+18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
+31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
+23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
+23,0,2,2,1,55,2,1,3,29,8,1,11,0,0,4,1
+28,10,2,2,1,55,2,1,3,7,6,13,11,0,0,4,1
+35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
+22,7,3,3,1,20,1,1,2,20,5,0,45,0,0,4,1
+23,10,3,2,1,60,2,1,0,12,10,7,22,0,0,4,1
+33,3,0,2,1,70,1,1,0,9,5,12,33,0,0,4,1
+21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
+23,8,2,2,1,9,2,1,3,26,8,1,11,0,0,4,0
+9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
+18,7,3,3,1,14,1,1,0,24,5,14,22,0,0,4,1
+22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
+29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
+21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
+28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
+18,5,2,3,1,9,2,2,3,26,8,9,0,0,0,4,0
+14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
+20,1,2,2,1,59,2,1,3,13,8,11,11,0,0,4,1
+12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
+21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
+25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
+34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
+41,6,0,2,1,53,1,1,0,22,3,7,0,0,0,4,1
+28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
+28,10,0,2,1,9,1,2,2,8,11,7,0,0,0,4,1
+12,10,3,2,1,34,1,1,0,13,10,10,22,0,0,4,1
+7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
 19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
-29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
-25,7,0,2,1,41,1,1,0,10,10,4,22,0,0,4,1
+20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
+26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
+25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
+14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
+35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
+36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
+10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
+41,3,2,1,1,9,1,1,0,26,1,1,0,0,0,4,1
+28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
+21,10,3,2,1,45,1,2,0,23,5,15,33,0,0,4,1
+28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
+31,8,2,2,1,15,1,1,0,5,1,14,5,0,0,4,1
+37,10,2,3,1,21,1,2,0,26,1,12,11,0,0,4,1
+57,6,2,1,1,42,1,1,0,8,3,9,2,0,0,4,1
+37,3,2,1,1,27,1,1,3,10,6,15,11,0,0,4,1
+28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
 34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
-16,0,2,2,1,19,1,1,0,26,3,12,11,0,0,4,1
-23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
-28,10,2,2,1,55,2,1,3,7,6,13,11,0,0,4,1
+28,0,2,2,1,61,2,1,2,21,5,1,2,0,0,4,1
+42,6,2,2,1,34,1,1,0,3,1,10,11,0,0,4,1
+14,5,0,3,1,28,1,2,0,6,5,14,33,0,0,4,1
+7,9,3,2,1,30,1,1,0,26,3,7,45,0,0,4,1
+22,10,2,3,1,51,2,1,3,26,8,5,0,0,0,4,0
+33,1,2,2,1,63,2,1,3,5,8,15,0,0,0,4,1
+23,8,0,2,1,67,2,1,0,11,3,15,0,0,0,4,1
+25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
+33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
+22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
 37,1,2,2,1,25,1,1,0,13,1,14,0,0,0,4,1
-15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
-22,1,3,2,1,37,1,1,0,10,10,16,0,0,0,4,1
-13,11,3,2,1,35,2,1,0,11,3,14,0,0,0,4,1
-21,7,3,3,1,47,1,1,3,9,6,0,0,0,0,4,1
-39,6,0,3,1,64,1,1,0,27,1,3,33,0,0,4,1
-14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
-34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
-20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
-14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
-37,1,2,1,1,59,2,1,3,26,8,7,0,0,0,4,0
-31,8,2,2,1,15,1,1,0,5,1,14,5,0,0,4,1
-23,1,2,1,1,31,1,1,3,10,6,12,22,0,0,4,1
-12,1,3,2,1,71,2,1,3,11,6,13,11,0,0,4,1
-19,5,0,3,1,22,1,1,0,6,5,10,38,0,0,4,1
-32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
-14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
-37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
-22,6,2,1,1,9,2,2,3,26,8,6,0,0,0,4,0
-19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
-27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
-16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
-17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
+11,11,3,1,1,55,1,1,0,21,4,14,0,0,0,4,1
+35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
+15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
+12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
+38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
+8,0,3,2,1,31,1,1,0,10,3,12,22,0,0,4,1
+35,11,0,2,1,57,1,1,0,10,10,11,0,0,0,4,1
+15,5,2,3,1,24,1,1,0,4,1,2,11,0,0,4,1
+18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
+10,0,3,2,1,7,1,2,3,18,6,8,11,0,0,4,1
+41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
+23,1,3,2,2,4,1,2,0,12,10,10,0,0,0,4,1
+10,0,3,4,1,30,2,1,0,9,5,9,11,0,0,4,1
+13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
+32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+28,10,2,2,1,13,2,1,0,13,10,5,11,0,0,4,1
+23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
+33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
+37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
+28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
+17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
+28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
+33,1,2,1,1,25,2,1,0,8,5,11,11,0,0,4,1
+32,1,2,1,1,46,2,1,0,28,1,10,11,0,0,4,1
+16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
+14,0,0,2,1,3,1,2,3,19,6,14,11,0,0,4,1
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+33,2,2,3,1,54,2,1,3,15,11,3,0,0,0,4,1
+42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
+40,7,0,3,1,17,1,1,3,30,6,12,0,0,0,4,1
+34,5,2,3,1,9,2,1,0,25,3,10,0,0,0,4,1
+13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
 35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
-29,8,2,2,1,46,1,2,0,29,1,16,11,0,0,4,1
-26,1,2,2,1,18,2,1,3,26,8,7,11,0,0,4,0
-36,6,0,3,1,9,1,1,3,4,8,12,0,0,0,4,1
-14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
-26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
-28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
-24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
-25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
-15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
-33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
-26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
-29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
-28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
-12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
-13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
-13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-29,3,3,3,1,43,1,1,3,3,6,16,43,0,0,4,1
-16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
-21,9,3,3,1,27,1,1,0,11,3,11,0,0,0,4,1
-41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
-21,1,2,3,1,58,1,1,0,7,5,12,43,0,0,4,1
-17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
+35,1,2,1,1,64,2,1,0,22,3,4,11,0,0,4,1
+27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
+8,0,3,2,1,32,1,1,0,30,3,6,0,0,0,4,1
+39,5,2,3,1,43,1,1,0,13,10,11,22,0,0,4,1
+21,10,2,2,1,29,1,1,0,9,3,6,33,0,0,4,1
+10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
+13,10,3,3,1,12,1,1,0,26,3,12,0,74,12,0,1
+34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
+38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
+28,11,2,2,1,32,1,1,0,3,1,12,11,0,0,4,1
+41,6,2,1,1,40,2,1,0,26,1,10,22,0,0,4,1
+40,6,2,1,1,14,1,1,0,9,1,6,11,0,0,4,1
+18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
+18,5,2,3,1,71,1,1,0,23,5,13,33,0,0,4,1
+8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
+31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
+15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
+13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
+29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
+26,1,2,4,1,18,2,1,3,6,8,10,0,0,0,4,1
+26,1,2,2,1,57,2,1,3,26,8,10,0,0,0,4,0
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
+32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
+14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
+24,2,0,3,2,25,2,1,3,26,8,9,0,0,0,4,0
+17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
+16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
+9,5,3,3,1,33,1,1,0,26,3,15,0,0,0,4,1
+38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
+13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
+18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
+11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
+6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
+18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
+23,1,3,2,2,11,2,2,0,28,5,11,0,0,0,4,1
+29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
+16,7,2,3,1,9,1,1,0,20,1,13,2,0,0,4,1
+27,2,2,3,1,25,2,1,0,12,10,14,38,0,0,4,1
+21,11,3,2,1,1,2,1,0,22,3,9,0,0,0,4,1
+42,12,2,4,1,22,1,1,0,18,1,12,2,0,0,4,1
+33,6,2,1,1,61,1,1,3,9,6,14,0,0,0,4,1
+13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
+12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
+39,11,2,2,1,43,1,1,0,26,3,1,11,0,0,4,1
+26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
+11,5,3,3,1,19,1,1,0,9,3,7,45,0,0,4,1
+16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
+42,8,3,1,1,38,2,1,3,6,8,15,11,0,0,4,1
+15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
+33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
+16,10,2,2,1,10,1,1,0,17,1,4,1,0,0,4,1
+23,2,2,2,1,68,2,1,0,9,10,15,0,0,0,4,1
+35,1,2,2,1,59,1,1,0,22,3,7,0,0,0,4,1
+25,5,2,3,1,17,2,1,0,10,10,0,0,108,12,1,1
+28,8,2,2,1,36,1,1,0,13,10,15,0,0,0,4,1
+17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
+10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
+10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
+29,0,2,2,1,35,2,1,0,14,5,3,11,0,0,4,1
+30,2,2,3,2,4,1,1,0,24,5,13,33,0,0,4,1
+20,5,2,3,1,59,1,1,0,22,3,7,0,0,0,4,1
+24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
+39,0,0,2,1,61,1,1,0,1,5,13,0,0,0,4,1
+36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
+16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
+18,7,2,2,1,14,2,1,3,27,6,4,47,0,0,4,1
+23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
+13,7,3,3,1,18,2,1,3,7,8,12,0,0,0,4,1
+15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
+31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
+11,7,3,3,1,14,2,1,3,23,8,4,11,0,0,4,1
+16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
+29,1,2,2,1,12,2,1,0,21,4,1,0,0,0,4,1
+14,8,2,1,1,29,2,1,0,13,5,0,43,0,0,4,1
+17,5,0,3,1,9,2,1,2,21,11,5,0,0,0,4,1
+30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
+40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
+19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
+31,1,3,1,1,56,2,1,0,17,5,16,11,0,0,4,1
+22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
+29,11,2,1,1,39,1,1,0,13,10,10,11,0,0,4,1
+32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
+42,6,2,3,1,32,2,1,0,11,3,9,0,0,0,4,1
+30,11,3,3,1,39,1,1,3,7,6,1,0,0,0,4,1
+9,5,3,1,2,15,1,1,0,23,4,10,22,0,0,4,1
+41,6,2,4,1,10,1,1,3,2,6,2,0,0,0,4,1
+31,10,2,3,1,43,1,1,0,26,1,14,11,0,0,4,1
+5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
+40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
+39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
+27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
+24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
+15,3,2,1,1,26,1,1,0,17,1,10,43,0,0,4,1
+15,1,3,2,1,62,1,1,0,27,3,14,11,0,0,4,1
+21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
+38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
+36,0,0,2,1,24,1,1,0,4,3,10,38,0,0,4,1
+12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
+13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
+34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
+12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
+37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
+20,9,3,3,1,40,1,1,3,8,6,3,22,0,0,4,1
+19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
+22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
+34,3,2,1,1,44,2,1,0,8,5,2,0,0,0,4,1
+20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
+26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
+11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
+31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
+7,1,2,2,1,9,1,2,0,29,5,10,22,0,0,4,1
+7,5,3,3,1,31,1,1,0,8,3,10,0,0,0,4,1
+33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
+13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
+25,1,3,2,1,64,2,1,3,12,6,11,11,0,0,4,1
+9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
+10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
 22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-14,5,3,3,1,54,1,1,0,22,3,10,11,0,0,4,1
-11,11,3,1,1,55,1,1,0,21,4,14,0,0,0,4,1
-18,5,3,3,1,8,2,1,3,11,6,1,0,0,0,4,1
-37,1,2,4,1,69,1,1,0,14,1,3,11,0,0,4,1
-10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
-11,8,3,2,1,3,2,1,3,25,6,11,0,0,0,4,1
-31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
-14,8,2,2,1,4,2,1,3,23,8,2,11,0,0,4,1
-21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
-41,5,2,2,1,16,1,1,3,30,6,9,22,0,0,4,1
-21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
-8,1,3,2,1,67,2,1,3,30,8,12,0,0,0,4,1
-14,5,2,3,1,9,2,1,3,26,8,6,0,0,0,4,0
+21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
+34,6,2,4,1,36,1,1,3,2,6,12,0,0,0,4,1
+51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
+29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
+12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
+26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
+8,0,2,2,1,63,2,2,3,27,6,3,11,0,0,4,1
+31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
+46,6,2,1,1,48,1,1,0,27,3,10,0,0,0,4,1
+31,10,3,2,1,2,2,2,0,8,10,10,0,0,0,4,1
+22,10,0,2,1,38,1,1,0,27,1,13,11,0,0,4,1
+13,5,3,3,1,67,2,1,3,13,8,10,11,0,0,4,1
+16,5,2,3,1,54,2,1,0,3,1,3,33,0,0,4,1
+35,1,2,1,1,47,2,1,0,12,10,12,0,0,0,4,1
+41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
+37,8,0,2,1,69,1,1,3,26,8,8,0,0,0,4,0
+18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
+16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
+12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
+17,1,0,1,1,37,2,1,3,4,8,15,11,0,0,4,1
+36,10,0,2,1,68,1,2,0,13,5,13,0,0,0,4,1
+22,1,2,1,1,9,2,1,0,13,5,1,33,0,0,4,1
+15,1,3,3,1,62,1,1,0,30,3,3,0,546,1,3,1
+10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+18,1,2,2,1,39,2,2,0,7,5,14,0,0,0,4,1
+16,1,2,2,1,14,2,1,3,13,8,15,0,0,0,4,1
+40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
+22,1,2,2,1,9,2,2,3,12,6,0,38,0,0,4,1
+25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
+24,11,0,2,1,22,2,1,3,23,8,14,11,0,0,4,1
+12,1,3,2,1,23,2,1,0,9,5,11,0,0,0,4,1
+15,7,3,3,1,58,1,1,0,10,1,14,22,0,0,4,1
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
+30,5,2,3,1,54,2,1,3,12,6,13,0,0,0,4,1
+7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
+38,1,2,1,1,67,1,1,0,5,1,2,33,0,0,4,1
+18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
+17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
+12,0,3,2,1,4,1,1,0,7,5,11,47,0,0,4,1
+48,6,2,1,1,26,1,1,0,30,3,10,0,0,0,4,1
+8,0,3,3,1,38,1,2,0,18,3,7,11,0,0,4,1
+14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
+13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
+15,11,2,2,1,1,1,1,0,23,5,10,22,0,0,4,1
 39,5,2,3,1,9,2,2,3,12,6,5,0,0,0,4,1
-12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
-26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
-9,0,2,3,1,63,1,1,0,1,3,5,0,0,0,4,1
-27,2,2,3,1,25,2,1,0,12,10,14,38,0,0,4,1
-12,10,3,2,1,68,2,1,3,7,8,2,38,0,0,4,1
-33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
-12,0,3,2,1,38,2,1,0,25,3,1,11,0,0,4,1
-55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
-15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
-18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
-20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
-23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
+16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
+13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
+19,10,2,3,1,55,1,1,0,11,7,7,0,0,0,4,1
+16,5,3,3,1,33,2,1,0,13,10,12,43,0,0,4,1
+34,5,2,3,1,34,2,1,3,26,8,16,0,0,0,4,0
+20,10,2,2,1,71,2,1,0,5,5,13,22,0,0,4,1
+17,6,3,1,1,48,1,1,3,26,8,4,0,0,0,4,0
+12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
+30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
+42,1,2,1,1,52,1,1,0,9,1,12,33,0,0,4,1
 23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
-21,1,2,2,1,51,2,1,3,26,8,8,0,0,0,4,0
+38,5,2,3,1,65,2,1,3,26,8,5,0,0,0,4,0
+24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
+31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
+41,1,2,1,1,23,2,1,3,26,8,11,22,0,0,4,0
+14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
+34,5,2,3,1,57,1,1,0,9,1,13,22,0,0,4,1
+41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
+10,11,3,3,1,9,2,1,3,26,8,3,11,0,0,4,0
+39,10,2,2,1,11,2,1,3,26,8,0,33,0,0,4,0
+21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
+19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
+13,5,3,3,1,23,1,1,0,3,1,10,22,0,0,4,1
+20,0,3,2,1,39,1,1,3,26,6,14,11,0,0,4,1
+35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
+30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
+19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
+17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
+37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
+18,1,2,1,1,58,2,1,3,13,8,12,11,0,0,4,1
+37,5,2,3,1,56,1,1,0,3,1,15,1,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
+30,1,2,1,1,63,1,2,0,2,1,9,38,0,0,4,1
+20,2,3,3,1,30,1,2,3,26,8,5,0,0,0,4,0
+37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
+20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
+11,7,2,2,1,47,2,1,3,26,6,11,6,0,0,4,1
+40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
+28,5,2,3,1,29,2,1,3,26,8,6,0,0,0,4,0
+41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
+22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
+13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
+17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
+19,10,3,3,1,58,1,1,0,27,3,4,0,0,0,4,1
+40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
+28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
+35,0,0,2,1,12,2,1,3,26,8,9,0,0,0,4,0
+17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
+12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
 30,11,2,2,1,46,2,1,3,26,8,6,11,0,0,4,0
-21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
-13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
-13,1,2,2,1,64,2,1,3,10,8,0,33,0,0,4,1
-14,5,3,3,1,65,1,1,0,21,1,12,11,0,0,4,1
-28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
-19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
-26,1,2,2,1,57,2,1,3,26,8,10,0,0,0,4,0
-15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
-37,1,2,2,1,44,1,1,3,26,8,8,0,0,0,4,0
-48,6,2,1,1,26,1,1,0,30,3,10,0,0,0,4,1
-8,8,3,3,1,12,2,1,0,27,3,16,11,0,0,4,1
-19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
-32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
-24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
-18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
-15,12,3,4,1,9,1,1,3,26,8,6,0,0,0,4,0
-41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
-27,8,3,1,1,24,2,1,3,22,6,3,43,0,0,4,1
-25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
-38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
-32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
-12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+10,1,2,2,1,63,2,2,3,26,8,7,0,0,0,4,0
+27,1,2,1,1,31,2,1,3,26,8,9,0,0,0,4,0
+22,0,2,1,1,63,2,2,0,13,10,14,0,0,0,4,1
+28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
+20,5,2,3,1,22,2,1,0,1,5,10,0,0,0,4,1
+42,6,0,2,1,27,2,1,3,26,8,7,0,0,0,4,0
+9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
+27,11,2,2,1,26,1,1,2,11,3,14,0,0,0,4,1
 8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
-39,1,2,2,1,58,2,2,3,26,8,7,0,0,0,4,0
-19,10,3,2,1,71,1,1,0,29,1,3,38,0,0,4,1
-31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
-11,5,3,3,1,19,1,1,0,9,3,7,45,0,0,4,1
-41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
-22,5,2,3,1,40,2,1,2,15,11,4,0,0,0,4,1
-10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
-25,1,2,1,1,37,2,1,0,12,10,7,11,0,0,4,1
-21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
-12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
-12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
-12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
-32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
-33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
-16,8,3,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
-22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
-16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
-8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
+16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
+14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
+27,0,2,2,1,18,2,1,3,15,8,15,22,0,0,4,1
+44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
+26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
+14,8,3,2,1,57,2,1,0,12,10,4,11,0,0,4,1
+41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
+41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
+21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
+43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
+33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
+24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
+54,6,2,3,1,9,1,1,0,4,3,16,0,0,0,4,1
+17,10,0,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
+12,5,2,3,1,15,2,1,0,2,1,9,43,0,0,4,1
+33,11,2,1,1,13,2,1,0,17,5,6,0,0,0,4,1
+8,2,3,3,1,63,1,1,0,26,3,6,11,98,23,1,1
+8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
+13,2,3,2,1,9,1,1,2,4,10,5,0,0,0,4,1
+19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
+23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
+12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
+10,10,3,2,1,16,1,1,0,19,3,13,0,0,0,4,1
+40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
+40,2,2,3,1,65,2,1,2,30,5,16,0,0,0,4,1
+17,2,0,2,1,7,2,1,3,26,8,8,0,0,0,4,0
+23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
+10,7,3,2,1,56,2,1,0,30,3,12,33,0,0,4,1
+11,1,3,2,1,51,1,2,0,1,5,1,22,0,0,4,1
+18,5,3,3,1,8,2,1,3,11,6,1,0,0,0,4,1
+29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
+21,5,2,2,1,23,2,1,3,26,8,14,0,0,0,4,0
+19,10,2,3,1,15,2,1,0,4,3,13,0,0,0,4,1
+6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
+8,9,3,2,1,59,1,1,0,8,3,0,0,0,0,4,1
+35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
+33,7,2,2,1,70,2,1,0,15,5,3,33,0,0,4,1
+12,7,2,3,1,22,1,1,3,8,11,7,0,0,0,4,1
+31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
+7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
+22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
+36,5,3,3,1,48,2,1,3,7,8,3,22,0,0,4,1
+14,5,3,3,1,54,1,1,0,22,3,10,11,0,0,4,1
+17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
+67,6,0,1,1,65,1,1,0,9,3,9,22,0,0,4,1
+17,1,2,1,1,72,2,1,3,15,8,3,46,0,0,4,1
+28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
+29,0,0,2,1,28,1,1,0,20,1,1,33,0,0,4,1
+21,8,2,3,1,18,1,1,0,30,3,15,22,0,0,4,1
+14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
+35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
+22,0,2,2,1,40,1,1,0,24,5,2,38,0,0,4,1
+32,5,2,4,1,67,1,1,0,19,3,6,0,178,1,0,1
+10,5,3,3,1,42,1,1,0,18,3,4,11,0,0,4,1
+17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
+14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
+25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
+32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
+36,8,2,4,1,44,1,2,3,12,6,14,0,0,0,4,1
+20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
+39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+19,5,3,3,1,49,2,1,0,4,1,15,43,0,0,4,1
+31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
+16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
+33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
+31,8,2,2,1,44,1,1,2,24,5,0,33,0,0,4,1
+12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
+35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
+13,1,2,2,1,61,2,1,3,9,6,12,33,0,0,4,1
+15,1,0,2,1,42,2,1,3,15,8,13,11,0,0,4,1
+35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
+15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
+17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+33,1,2,4,1,24,2,1,3,26,8,11,0,0,0,4,0
 21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
-14,8,3,2,1,57,2,1,0,12,10,4,11,0,0,4,1
-23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
-22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
-12,5,2,2,1,68,1,1,0,3,1,10,11,0,0,4,1
-35,0,0,2,1,12,2,1,3,26,8,9,0,0,0,4,0
-39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
-12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
-21,7,2,3,1,33,1,1,3,3,6,12,38,0,0,4,1
-26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
-33,3,0,2,1,70,1,1,0,9,5,12,33,0,0,4,1
-14,8,3,2,1,2,2,1,3,13,8,12,22,0,0,4,1
-25,0,2,2,1,29,1,1,2,1,10,10,0,0,0,4,1
-19,5,3,3,1,30,1,1,3,26,6,1,0,0,0,4,1
-13,5,3,3,1,36,1,2,0,29,5,10,33,0,0,4,1
+25,5,3,3,1,51,1,1,0,10,1,15,43,0,0,4,1
 16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
-13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
-19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
-20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
-18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
-24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
-21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
-37,8,0,2,2,9,2,1,3,26,8,6,0,0,0,4,0
-43,6,2,2,1,65,1,1,0,27,1,10,33,0,0,4,1
-30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
-13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
-40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
-21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
-21,10,2,2,1,29,1,1,0,9,3,6,33,0,0,4,1
-15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
-13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
-23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
-22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
-26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
-13,11,3,1,1,20,1,1,0,23,4,13,11,110,1,1,1
-16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
-30,2,2,3,2,4,1,1,0,24,5,13,33,0,0,4,1
+40,5,0,2,1,38,1,1,2,23,5,11,11,0,0,4,1
+12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
+35,6,2,2,1,39,2,1,3,26,8,7,11,0,0,4,0
+29,1,2,2,1,36,1,1,0,1,3,8,0,0,0,4,1
+20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
+23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
+16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
+51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
+17,9,3,2,1,24,2,1,0,7,3,13,22,112,33,0,1
+32,0,2,2,1,63,2,1,0,27,1,3,33,0,0,4,1
+33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
+10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
 32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
-16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
-29,1,2,2,1,12,2,1,0,21,4,1,0,0,0,4,1
-41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
-11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-41,6,0,2,1,61,1,1,0,23,5,13,33,0,0,4,1
+33,6,2,1,1,18,1,1,2,17,5,6,33,0,0,4,1
+13,5,0,3,1,43,1,1,0,1,3,3,43,0,0,4,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
+18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
+42,6,2,1,1,58,2,1,3,26,8,7,0,0,0,4,0
+16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
+6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
+33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
+40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
+41,5,0,3,1,32,2,1,2,21,11,7,0,0,0,4,1
+15,5,3,3,1,40,2,1,3,26,8,7,0,0,0,4,0
+24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
+26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
+9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
+9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
+23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
+12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
+27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+39,10,2,2,1,64,1,1,2,20,11,4,0,0,0,4,1
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
+22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
+22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
+14,7,2,3,1,17,1,1,0,27,1,3,33,0,0,4,1
+18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
+25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
+19,10,3,2,1,71,1,1,0,29,1,3,38,0,0,4,1
+34,1,2,4,1,9,2,1,0,30,5,4,0,0,0,4,1
+15,10,3,3,1,17,2,1,0,9,5,1,22,0,0,4,1
+11,1,3,4,1,62,2,2,0,7,5,6,33,0,0,4,1
+19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
+9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
+23,1,2,1,1,18,2,1,3,27,6,11,11,0,0,4,1
+7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
+37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
+20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
+33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
+35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
+29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
+23,1,2,1,1,31,2,1,3,6,8,1,0,0,0,4,1
 36,6,3,2,1,15,1,2,0,20,5,14,11,0,0,4,1
-42,5,2,3,1,29,1,1,0,26,3,7,11,0,0,4,1
-33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
+18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
+29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
+24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
+14,8,3,2,1,65,2,1,3,6,8,12,22,0,0,4,1
+34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
+36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
+8,0,3,2,1,10,1,2,0,29,5,12,11,0,0,4,1
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
+37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
+41,1,0,1,1,15,1,2,0,28,5,14,0,0,0,4,1
+20,8,3,2,1,56,2,1,3,26,8,13,11,0,0,4,0
+26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
+27,1,2,2,1,58,2,1,3,18,8,13,33,0,0,4,1
+13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
+27,0,0,3,1,19,1,1,0,20,5,9,33,0,0,4,1
+13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
+24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
+39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
 15,8,3,2,1,21,1,1,0,28,5,13,0,0,0,4,1
-33,11,0,3,1,9,1,1,0,24,5,11,11,0,0,4,1
-26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
-41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
-21,8,2,3,1,18,1,1,0,30,3,15,22,0,0,4,1
-37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
-9,5,3,1,2,15,1,1,0,23,4,10,22,0,0,4,1
-13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
+15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
+27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
+18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
+19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
+37,6,0,2,1,20,1,2,3,10,6,0,0,0,0,4,1
+11,5,2,3,1,38,1,1,3,20,8,15,11,0,0,4,1
+41,6,2,2,1,19,2,2,3,5,8,1,11,0,0,4,1
+14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
+12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
+14,5,3,3,1,24,1,1,0,17,1,10,38,0,0,4,1
+40,5,2,4,1,11,2,1,3,26,8,7,22,0,0,4,0
+39,6,2,2,1,51,2,1,3,26,8,6,11,0,0,4,0
+39,6,2,3,1,9,2,2,3,20,8,12,0,0,0,4,1
+15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
+35,0,0,4,1,32,1,1,0,2,5,3,11,0,0,4,1
+16,8,2,2,1,6,2,1,3,18,8,12,0,0,0,4,1
+7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
+36,6,2,2,1,54,2,1,3,26,8,4,0,0,0,4,0
+43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
+19,2,0,2,1,22,2,2,3,4,8,13,43,0,0,4,1
+28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
+19,10,3,2,1,31,1,1,0,7,3,15,22,0,0,4,1
+32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
+7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
+36,8,2,2,1,27,2,1,3,26,8,10,11,0,0,4,0
+12,5,3,3,1,52,1,1,0,2,1,11,11,0,0,4,1
+10,7,2,3,1,9,2,1,0,25,3,11,22,106,30,0,1
+4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
+19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
+15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
+21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
+6,9,3,2,1,67,2,1,3,26,8,6,11,0,0,4,0
+20,10,3,2,1,21,2,1,3,26,8,6,0,0,0,4,0
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
+15,10,3,2,1,10,2,1,3,26,8,7,11,0,0,4,0
+20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
+13,5,0,3,1,12,2,1,3,18,8,3,33,0,0,4,1
+17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
+10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
+30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+18,10,3,2,1,33,2,2,3,26,8,8,0,0,0,4,0
+39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
+12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
+14,10,3,2,1,9,1,1,0,9,1,11,33,0,0,4,1
+18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
+17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
+8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
+16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
+29,8,2,2,1,46,1,2,0,29,1,16,11,0,0,4,1
+33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
+8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
+16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
+17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
+14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
+33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
+39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
+35,8,0,1,1,3,2,2,3,28,8,11,0,0,0,4,1
+72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
+9,5,3,3,1,63,2,1,3,26,6,11,22,0,0,4,1
+25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+17,10,3,3,1,54,1,1,0,13,10,15,11,0,0,4,1
+19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
+14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
+9,12,3,2,1,13,1,1,2,18,3,7,0,4,1,0,1
+17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
+23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
+20,5,2,3,1,44,2,1,2,20,11,5,0,0,0,4,1
+18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
+42,5,2,3,1,29,1,1,0,26,3,7,11,0,0,4,1
+13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
+42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
+25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
+30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
+12,8,3,2,2,4,2,1,0,9,5,10,0,0,0,4,1
+20,10,2,3,1,25,1,1,0,26,1,3,11,0,0,4,1
+38,1,2,2,1,31,2,1,3,21,8,13,11,0,0,4,1
+33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
+23,0,3,2,1,67,1,2,3,2,6,11,33,0,0,4,1
+20,1,2,1,1,24,2,1,2,10,10,12,0,83,1,1,1
+27,10,3,3,1,9,1,1,0,9,1,13,33,0,0,4,1
+36,5,2,2,1,46,1,1,3,26,8,4,0,0,0,4,0
+34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
+13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
+30,0,2,1,1,42,2,2,2,24,5,0,47,0,0,4,1
+14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
+32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
+14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
+11,8,3,2,1,3,2,1,3,25,6,11,0,0,0,4,1
+15,12,3,4,1,9,1,1,3,26,8,6,0,0,0,4,0
+27,5,2,3,1,54,2,1,3,26,8,14,11,0,0,4,0
+18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
+8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
+53,6,2,2,1,35,1,1,0,8,3,6,0,0,0,4,1
+24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
+14,10,3,3,1,55,1,1,0,10,10,8,0,0,0,4,1
+33,5,2,3,1,31,2,1,0,13,5,11,0,0,0,4,1
+18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
+22,8,3,2,1,19,2,1,0,12,10,9,0,0,0,4,1
+29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
+20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
+11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
+37,6,0,2,1,3,1,2,0,16,5,4,0,0,0,4,1
+36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
+20,10,2,2,1,28,2,1,3,23,8,13,22,0,0,4,1
+19,8,2,2,1,25,2,1,2,26,10,7,0,0,0,4,1
+15,5,0,3,1,35,1,1,0,26,1,1,11,0,0,4,1
+18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
+27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
+25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
+20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
+13,1,3,2,1,37,2,1,3,26,8,6,11,0,0,4,0
+27,8,3,1,1,24,2,1,3,22,6,3,43,0,0,4,1
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
+39,1,2,4,1,42,1,1,2,5,10,5,0,0,0,4,1
+25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
+23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
+22,5,2,3,1,40,2,1,2,15,11,4,0,0,0,4,1
+23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
+35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
+9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
+30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
+23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
+14,10,3,2,1,60,2,1,0,12,10,12,0,0,0,4,1
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
+15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
+15,5,3,3,1,63,1,1,0,19,1,10,46,0,0,4,1
+11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
+15,8,3,3,1,45,2,1,0,15,5,3,43,0,0,4,1
+44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
+19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
+39,0,2,2,1,21,1,1,0,22,3,9,0,0,0,4,1
+12,7,2,3,1,33,1,1,0,25,3,10,0,0,0,4,1
+18,5,2,3,1,16,1,1,3,10,6,6,0,0,0,4,1
+25,0,2,2,1,29,1,1,2,1,10,10,0,0,0,4,1
+13,8,2,2,1,31,2,2,3,26,8,5,0,0,0,4,0
+21,9,3,3,1,27,1,1,0,11,3,11,0,0,0,4,1
+37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
+32,5,2,2,1,13,1,1,0,7,5,10,0,0,0,4,1
+37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
+21,8,3,4,1,32,2,1,3,26,8,9,0,0,0,4,0
+13,10,2,2,2,4,2,1,0,9,5,10,11,0,0,4,1
+24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
+23,10,2,3,1,53,1,1,0,26,1,14,11,0,0,4,1
+14,10,3,2,1,55,1,2,0,21,4,13,0,0,0,4,1
+33,2,2,4,1,58,2,1,3,20,8,11,47,0,0,4,1
+20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
+8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
+13,0,2,2,1,37,2,1,3,30,8,11,0,0,0,4,1
+14,1,2,1,1,46,2,1,3,11,6,13,33,0,0,4,1
+15,0,3,2,1,41,2,1,3,26,8,7,11,0,0,4,0
+17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
+20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
+18,7,2,3,1,24,1,1,3,26,8,6,11,0,0,4,0
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
+23,1,2,1,1,31,1,1,3,10,6,12,22,0,0,4,1
+27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
+18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
+8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
+10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
+36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
 12,10,3,3,1,22,1,1,0,8,5,12,22,0,0,4,1
-7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
-13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
-21,0,2,2,1,15,2,2,0,25,3,3,11,0,0,4,1
-10,8,2,2,1,53,2,2,0,29,5,6,11,0,0,4,1
-25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
-35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
-33,1,2,4,1,24,2,1,3,26,8,11,0,0,0,4,0
+27,1,2,2,1,12,2,1,3,14,11,12,0,0,0,4,1
+15,5,3,3,1,48,1,1,2,12,1,11,43,0,0,4,1
+19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
+13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
+23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
+20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
+18,1,2,1,1,46,2,2,3,12,8,1,11,0,0,4,1
+11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
+18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
+57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
+21,1,2,1,1,13,1,1,0,22,3,15,0,0,0,4,1
+12,11,3,3,1,37,1,1,0,2,3,11,22,0,0,4,1
+28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+27,2,2,4,1,38,2,2,0,1,5,14,0,0,0,4,1
+53,6,2,1,1,50,1,1,0,7,3,15,38,0,0,4,1
+33,5,2,2,1,13,2,1,3,26,8,13,0,0,0,4,0
+31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
+22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
+14,5,3,3,1,65,1,1,0,21,1,12,11,0,0,4,1
+28,5,2,2,1,9,1,1,0,9,10,6,0,0,0,4,1
+15,0,3,2,1,58,1,1,0,19,3,1,11,0,0,4,1
+19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
+16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
+32,11,2,1,1,63,1,1,3,26,6,10,0,0,0,4,1
+12,5,2,2,1,68,1,1,0,3,1,10,11,0,0,4,1
+22,1,2,2,1,9,2,1,3,30,8,5,11,0,0,4,1
+25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
+11,0,0,3,2,9,1,2,0,30,5,9,22,0,0,4,1
+21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
+33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
+28,1,2,2,1,49,1,2,0,9,1,12,43,0,0,4,1
+11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+34,5,2,3,1,14,1,1,0,14,1,1,33,0,0,4,1
+15,5,3,3,1,37,2,1,0,14,5,1,0,0,0,4,1
+21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
+19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
+34,5,3,3,1,67,1,1,0,18,1,2,43,0,0,4,1
+21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
+24,0,2,2,1,10,1,1,3,2,6,2,33,0,0,4,1
 27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
-29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
-31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
-19,10,3,3,1,58,1,1,0,27,3,4,0,0,0,4,1
-51,6,2,1,1,29,1,1,0,2,3,9,11,0,0,4,1
-37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
-7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
-36,1,2,1,1,41,2,1,3,26,8,11,11,0,0,4,0
-31,5,2,3,1,9,1,1,2,8,11,7,0,0,0,4,1
-20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
-12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
-15,8,2,2,1,41,2,1,2,13,11,4,0,550,30,0,1
-36,10,0,2,1,68,1,2,0,13,5,13,0,0,0,4,1
-30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
-28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
-11,1,3,2,1,51,1,2,0,1,5,1,22,0,0,4,1
-35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
-13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
-13,7,2,3,1,52,2,2,0,13,10,12,0,40,12,0,1
-28,11,2,2,1,32,1,1,0,3,1,12,11,0,0,4,1
-14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
+17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
+27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
+35,11,2,4,1,15,1,1,3,26,8,9,22,0,0,4,0
+9,5,3,3,1,19,2,1,0,7,5,10,0,0,0,4,1
+27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
+17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
+14,8,2,2,1,4,2,1,3,23,8,2,11,0,0,4,1
+23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
+16,8,2,2,1,2,2,2,3,26,8,13,0,0,0,4,0
+28,5,0,3,1,15,1,1,0,2,1,13,22,0,0,4,1
+12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
+22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
+25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
+22,6,2,1,1,9,2,2,3,26,8,6,0,0,0,4,0
+15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
+13,9,2,1,1,50,2,1,0,1,5,10,0,0,0,4,1
+17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
+8,8,3,2,1,18,1,1,2,15,11,5,0,0,0,4,1
+13,5,3,3,1,39,1,1,0,11,3,7,0,502,1,0,1
+29,10,2,2,1,40,1,1,0,8,3,7,0,0,0,4,1
+16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
+22,5,3,3,1,9,1,1,0,27,1,12,43,0,0,4,1
+8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
+22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
+23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
+25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
+55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
+29,10,2,2,1,67,1,2,0,13,10,15,0,38,12,1,1
+10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
+34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
+33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
+18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
+17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
+33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
 35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
-13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
-20,5,2,3,1,22,2,1,0,1,5,10,0,0,0,4,1
-26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
-13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
-35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
-8,0,3,2,1,10,1,2,0,29,5,12,11,0,0,4,1
-6,9,3,2,1,67,2,1,3,26,8,6,11,0,0,4,0
-7,10,3,2,1,51,1,1,0,16,5,13,0,0,0,4,1
-17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
+42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
+17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
+36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
+41,6,0,2,1,10,1,1,3,26,10,12,0,0,0,4,1
+28,10,2,2,1,41,1,2,0,19,3,2,0,0,0,4,1
+19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
 38,5,0,3,1,47,2,1,3,8,6,10,33,0,0,4,1
-11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
-19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
-15,8,2,2,1,66,2,1,3,26,8,9,0,0,0,4,0
-19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
-33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
-14,10,3,3,1,55,1,1,0,10,10,8,0,0,0,4,1
-41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
-13,7,2,3,1,21,1,1,0,25,3,6,11,0,0,4,1
-22,10,0,2,1,38,1,1,0,27,1,13,11,0,0,4,1
-22,10,3,3,1,21,2,1,0,11,3,7,0,157,12,0,1
-23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
-12,5,2,3,1,15,2,1,0,2,1,9,43,0,0,4,1
-4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
-25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
-15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
-26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
-22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
-32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
-32,11,2,1,1,63,1,1,3,26,6,10,0,0,0,4,1
-26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
+32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
 43,5,2,2,1,71,1,1,0,9,1,16,43,0,0,4,1
-18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
-42,6,2,2,1,34,1,1,0,3,1,10,11,0,0,4,1
-21,10,2,2,1,46,2,1,0,9,3,4,11,181,1,1,1
-28,10,0,2,1,9,1,2,2,8,11,7,0,0,0,4,1
-17,1,2,2,1,10,1,1,3,9,10,4,11,0,0,4,1
-14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
-38,5,2,3,1,65,2,1,3,26,8,5,0,0,0,4,0
-25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
-7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
-13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
-10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
-42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
-19,8,3,2,1,34,2,1,3,22,6,0,22,0,0,4,1
-23,8,0,2,1,67,2,1,0,11,3,15,0,0,0,4,1
-16,1,2,1,1,41,2,1,0,13,10,0,0,0,0,4,1
-39,6,2,2,1,51,2,1,3,26,8,6,11,0,0,4,0
-19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
-8,1,2,2,1,0,2,2,0,8,5,2,22,0,0,4,1
-18,0,2,3,1,27,2,1,3,26,8,4,11,0,0,4,0
-37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
-35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
-29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
-29,11,2,1,1,39,1,1,0,13,10,10,11,0,0,4,1
-31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
-35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
-27,10,3,3,1,9,1,1,0,9,1,13,33,0,0,4,1
-8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
-9,5,3,3,1,63,2,1,3,26,6,11,22,0,0,4,1
-35,10,0,1,1,18,2,1,3,5,8,10,0,0,0,4,1
-11,5,3,3,1,71,2,1,0,2,5,15,11,0,0,4,1
-14,0,0,2,1,3,1,2,3,19,6,14,11,0,0,4,1
-21,10,3,3,1,50,2,1,3,26,8,6,0,0,0,4,0
-38,1,2,1,1,67,1,1,0,5,1,2,33,0,0,4,1
-22,5,2,2,1,48,1,1,0,3,1,9,22,0,0,4,1
-23,2,2,2,1,68,2,1,0,9,10,15,0,0,0,4,1
-28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
-8,2,3,2,1,9,2,1,0,26,3,14,0,185,1,0,1
-20,9,3,3,1,40,1,1,3,8,6,3,22,0,0,4,1
-32,5,2,4,1,67,1,1,0,19,3,6,0,178,1,0,1
-23,1,0,2,1,54,2,1,3,5,8,4,22,0,0,4,1
-13,1,2,1,1,39,2,1,0,16,5,15,11,0,0,4,1
-8,9,3,2,1,59,1,1,0,8,3,0,0,0,0,4,1
-26,7,2,2,1,63,1,1,3,26,10,6,0,0,0,4,1
-13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
-11,5,2,3,1,18,2,1,0,25,3,14,11,0,0,4,1
-35,6,2,2,1,39,2,1,3,26,8,7,11,0,0,4,0
-33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
+15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
+40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
+27,1,2,1,1,66,2,1,3,7,8,11,0,0,0,4,1
+28,5,3,3,1,35,2,1,3,23,8,16,11,0,0,4,1
+11,5,3,3,1,71,2,1,0,2,5,15,11,0,0,4,1
+22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
+10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
+14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
+5,8,3,2,1,61,2,1,3,20,8,2,0,0,0,4,1
 36,10,2,2,1,12,1,1,0,23,5,10,22,0,0,4,1
-22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
-21,8,2,2,1,54,1,1,2,11,3,4,22,0,0,4,1
-9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
-13,10,3,3,1,35,1,1,3,29,10,5,0,0,0,4,1
-14,8,2,1,1,29,2,1,0,13,5,0,43,0,0,4,1
-17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
-14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
-22,8,3,2,1,19,2,1,0,12,10,9,0,0,0,4,1
-19,10,2,3,1,15,2,1,0,4,3,13,0,0,0,4,1
-10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
-5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
-10,5,3,3,1,42,1,1,0,18,3,4,11,0,0,4,1
-13,9,2,1,1,50,2,1,0,1,5,10,0,0,0,4,1
-24,8,2,2,1,17,2,1,0,11,7,13,33,0,0,4,1
-32,5,3,3,1,36,2,1,3,26,8,2,0,0,0,4,0
-19,1,2,1,1,9,2,1,3,26,8,13,0,0,0,4,0
-14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
-20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
-31,8,2,2,1,67,1,1,0,29,1,13,33,0,0,4,1
-12,0,2,2,1,49,2,1,0,13,10,11,33,0,0,4,1
-16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
-15,0,3,2,1,41,2,1,3,26,8,7,11,0,0,4,0
-33,11,2,1,1,13,2,1,0,17,5,6,0,0,0,4,1
-25,1,2,2,1,23,1,2,0,7,5,0,2,0,0,4,1
-23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
-14,8,3,2,1,65,2,1,3,6,8,12,22,0,0,4,1
-15,0,3,2,1,58,1,1,0,19,3,1,11,0,0,4,1
-27,1,0,1,1,2,1,1,0,6,5,14,11,0,0,4,1
-41,5,2,3,1,36,1,2,0,6,5,14,22,0,0,4,1
-22,2,0,2,1,37,2,1,0,9,5,12,22,0,0,4,1
-37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
-31,8,2,2,1,50,1,1,3,26,8,7,11,0,0,4,0
-25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
-14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
-14,1,3,3,1,62,1,1,3,4,10,15,0,0,0,4,1
-31,8,2,2,1,44,1,1,2,24,5,0,33,0,0,4,1
-17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
-16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
-28,5,2,2,1,18,1,1,0,13,10,2,11,0,0,4,1
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
-15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
-23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
-18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
-13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
-41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
-26,0,0,2,1,20,2,1,0,5,5,5,11,0,0,4,1
+25,7,2,2,1,17,2,1,0,13,10,10,0,0,0,4,1
+33,7,2,3,1,55,2,2,0,24,5,11,33,0,0,4,1
+30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
+39,1,2,2,1,19,2,1,0,8,10,11,0,0,0,4,1
+29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
+26,8,2,2,1,16,2,2,3,26,8,7,0,0,0,4,0
+36,10,2,2,1,9,1,1,2,26,3,13,22,0,0,4,1
+10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
+35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
+26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
+40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
+14,10,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+14,5,3,3,1,38,1,1,0,8,3,7,11,0,0,4,1
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
+31,0,0,2,1,21,2,2,3,29,8,10,0,0,0,4,1
+24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
+34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
+23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
+20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
+16,1,2,2,1,31,2,1,3,15,8,15,0,0,0,4,1
+18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
+13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
+24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
+22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
+13,5,2,3,1,66,1,1,0,12,1,13,5,0,0,4,1
+10,10,3,2,1,69,1,2,0,28,5,11,0,0,0,4,1
+16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
+9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
+30,5,3,3,1,56,1,1,0,3,3,7,0,0,0,4,1
+12,0,2,2,1,68,2,1,3,21,8,13,22,0,0,4,1
+23,1,0,2,1,54,2,1,3,5,8,4,22,0,0,4,1
+23,8,2,4,2,9,1,2,0,23,5,2,33,0,0,4,1
+20,2,2,3,1,9,1,1,0,15,5,11,11,0,0,4,1
+15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
+13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
 42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
-18,1,2,1,1,46,2,2,3,12,8,1,11,0,0,4,1
-22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
-35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+21,1,2,2,1,51,2,1,3,26,8,8,0,0,0,4,0
+11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
+31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
+22,5,2,2,1,48,1,1,0,3,1,9,22,0,0,4,1
+40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
+36,1,2,1,1,41,2,1,3,26,8,11,11,0,0,4,0
+19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
+33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
+8,11,3,2,1,12,1,1,0,30,5,11,0,0,0,4,1
+26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
+14,10,3,2,1,45,1,1,0,29,1,9,11,0,0,4,1
+9,10,3,2,1,45,1,1,0,20,5,14,22,0,0,4,1
+16,10,2,2,1,9,1,1,0,20,1,11,11,0,0,4,1
+29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
+10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
+27,2,2,2,1,65,1,2,0,8,10,12,11,30,12,0,1
+6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
+18,5,0,3,2,42,1,1,0,27,1,14,33,0,0,4,1
+29,1,2,4,2,20,1,1,0,17,1,9,22,0,0,4,1
+10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
+16,1,2,1,1,41,2,1,0,13,10,0,0,0,0,4,1
+23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
+24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
+22,2,2,3,2,9,1,1,3,10,6,15,33,0,0,4,1
+19,8,3,2,1,34,2,1,3,22,6,0,22,0,0,4,1
+41,6,0,2,1,61,1,1,0,23,5,13,33,0,0,4,1
+29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
+20,10,3,3,1,11,1,1,3,8,6,1,22,0,0,4,1
 10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
-24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
-8,8,3,2,1,11,1,1,0,23,4,1,11,0,0,4,1
+41,10,0,2,1,30,1,1,0,12,10,10,0,0,0,4,1
+30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
+18,10,2,2,1,31,1,1,0,20,1,15,33,0,0,4,1
+37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
+32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
+22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
+38,6,0,3,1,20,1,2,0,13,5,14,0,0,0,4,1
+39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
+15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
+33,0,2,2,1,70,1,1,0,26,1,1,0,0,0,4,1
+16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
+15,5,2,3,1,22,1,1,0,3,3,9,0,0,0,4,1
+13,11,3,2,1,35,2,1,0,11,3,14,0,0,0,4,1
+18,8,2,2,1,17,2,2,3,26,8,9,0,0,0,4,0
+15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
+26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
+12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+13,11,3,1,1,46,1,1,0,25,3,13,0,0,0,4,1
+42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
+15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
+36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
+32,10,2,1,1,17,1,1,3,26,8,1,11,0,0,4,0
+8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
+34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
+24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
+9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
+38,7,2,1,1,4,2,2,3,26,8,7,11,0,0,4,0
+18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
 38,10,0,2,1,23,1,1,0,9,5,11,0,0,0,4,1
-8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
-11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
-42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
+8,1,3,2,1,67,2,1,3,30,8,12,0,0,0,4,1
+8,9,3,2,1,9,2,1,3,26,8,11,11,0,0,4,0
+24,5,2,4,1,34,1,1,3,26,8,9,11,0,0,4,0
+9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
+13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
+13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
+18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
+31,5,2,2,1,31,1,1,2,27,10,7,0,0,0,4,1
+13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
+22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
+33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
+24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
+14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
+14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
+24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
+12,1,3,2,1,9,2,1,3,26,8,10,11,0,0,4,0
+14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
+33,1,2,2,1,32,2,1,3,26,8,13,0,0,0,4,0
 14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
-12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
-12,7,2,3,1,33,1,1,0,25,3,10,0,0,0,4,1
-36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
-23,1,2,2,1,17,2,1,3,6,8,2,33,0,0,4,1
-30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
-24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
-17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
-25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
-30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+28,3,2,1,1,71,1,1,3,26,8,6,0,0,0,4,0
+29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
+29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
+8,2,3,2,1,9,2,1,0,26,3,14,0,185,1,0,1
+35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
+37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
+32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
+8,10,3,3,1,19,1,1,0,11,3,8,0,0,0,4,1
+15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
+37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
+39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+36,5,2,3,1,9,1,1,3,26,8,2,11,0,0,4,0
+9,10,3,3,1,70,2,1,0,25,3,1,0,0,0,4,1
+12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
+8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
+37,10,2,2,1,14,2,1,3,26,8,5,11,0,0,4,0
+39,6,2,2,1,27,2,1,3,26,8,7,11,0,0,4,0
+17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
+25,10,0,4,1,26,2,1,3,26,8,4,0,0,0,4,0
+34,1,2,2,1,63,1,2,2,12,10,14,22,0,0,4,1
+14,8,3,2,1,2,2,1,3,13,8,12,22,0,0,4,1
+25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
+26,5,2,3,1,12,1,1,0,19,1,10,22,0,0,4,1
+38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
+10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
+21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
+24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
+16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
+28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
+17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+10,1,3,2,1,2,2,1,3,30,8,6,11,0,0,4,1
+35,10,2,3,1,71,1,1,0,12,1,4,38,0,0,4,1
+23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
+33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
+15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
+20,5,2,3,1,23,1,1,3,29,1,8,33,0,0,4,1
+17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
+23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
+23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
+34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
+21,7,3,3,1,47,1,1,3,9,6,0,0,0,0,4,1
+7,10,3,2,1,14,2,1,0,19,3,9,38,0,0,4,1
+24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
+19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
+35,5,0,2,1,9,1,2,2,14,2,2,0,0,0,4,1
+22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
+14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
+41,6,2,2,1,38,2,1,3,26,8,4,22,0,0,4,0
+19,11,3,2,1,44,2,1,3,29,8,16,11,0,0,4,1
+21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
+9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
+15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
+51,6,2,1,1,29,1,1,0,2,3,9,11,0,0,4,1
+24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
+18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
+14,5,0,3,1,68,1,1,0,3,1,3,43,0,0,4,1
+30,5,2,3,1,9,1,1,2,1,10,7,0,0,0,4,1
+38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
+28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
+26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
+14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
+23,5,2,1,1,54,2,1,0,8,10,16,0,0,0,4,1
diff --git a/DATA/Datasets/Bank/LR/DO_16.data b/DATA/Datasets/Bank/LR/DO_16.data
index 2bfd99d4..6ba4b09d 100644
--- a/DATA/Datasets/Bank/LR/DO_16.data
+++ b/DATA/Datasets/Bank/LR/DO_16.data
@@ -1,1600 +1,1600 @@
-34,1,2,4,1,9,2,1,0,30,5,4,0,0,0,4,1
-12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
-12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
-20,1,2,2,1,20,1,1,3,7,6,3,47,0,0,4,1
-11,5,3,3,1,19,1,1,0,9,3,7,45,0,0,4,1
-19,10,2,3,1,31,1,1,0,12,1,12,43,0,0,4,1
-28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
-7,10,3,2,1,14,2,1,0,19,3,9,38,0,0,4,1
-11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
-13,12,2,2,1,12,1,1,0,13,10,10,11,552,12,0,1
-30,5,2,3,1,54,2,1,3,12,6,13,0,0,0,4,1
-8,0,3,2,1,32,1,1,0,30,3,6,0,0,0,4,1
-5,8,3,2,1,61,2,1,3,20,8,2,0,0,0,4,1
-33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
-15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
-20,9,3,3,1,40,1,1,3,8,6,3,22,0,0,4,1
-39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
-39,6,2,2,1,50,1,1,0,26,1,12,11,0,0,4,1
-31,1,3,1,1,56,2,1,0,17,5,16,11,0,0,4,1
-31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
-26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
-16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
-12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
-13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
-20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-20,0,0,2,1,24,2,1,0,26,3,1,22,167,12,3,1
-38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
-8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
-27,1,2,2,1,58,2,1,3,18,8,13,33,0,0,4,1
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-12,1,3,2,1,71,2,1,3,11,6,13,11,0,0,4,1
-17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
-22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
-10,1,3,2,1,2,2,1,3,30,8,6,11,0,0,4,1
+18,5,2,3,1,9,2,1,2,15,11,4,0,49,24,0,1
+41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
+12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
 13,7,2,3,1,52,2,2,0,13,10,12,0,40,12,0,1
-36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
-8,0,2,2,1,63,2,2,3,27,6,3,11,0,0,4,1
-40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
-27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
-10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
-12,1,2,2,1,9,2,2,0,1,5,4,0,0,0,4,1
-13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
-38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
-16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
-19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
-22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
-12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
-23,10,2,3,1,53,1,1,0,26,1,14,11,0,0,4,1
-36,6,2,2,1,16,1,1,2,17,5,4,11,0,0,4,1
-21,8,2,2,1,35,2,1,3,10,6,11,0,0,0,4,1
-16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
-26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
-22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
-15,12,3,4,1,9,1,1,3,26,8,6,0,0,0,4,0
-28,10,0,2,1,9,1,2,2,8,11,7,0,0,0,4,1
-16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
-27,0,2,2,1,70,1,1,0,27,1,9,11,0,0,4,1
-8,0,3,1,1,1,2,1,3,15,6,12,22,0,0,4,1
-30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
-14,10,3,2,1,9,1,1,0,9,1,11,33,0,0,4,1
-9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
-51,6,2,1,1,29,1,1,0,2,3,9,11,0,0,4,1
-9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
-24,1,0,1,1,37,2,1,0,8,5,2,11,0,0,4,1
-16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
-7,5,2,2,1,28,2,1,0,15,5,13,0,0,0,4,1
-22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
-23,1,3,2,2,11,2,2,0,28,5,11,0,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
-22,1,2,1,1,22,2,1,3,7,8,2,22,0,0,4,1
-14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
-18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
-10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
-22,8,3,2,1,19,2,1,0,12,10,9,0,0,0,4,1
-11,5,2,3,1,38,1,1,3,20,8,15,11,0,0,4,1
-37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
-15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
-8,0,3,2,1,31,1,1,0,10,3,12,22,0,0,4,1
-18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
-20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
-8,1,3,2,1,67,2,1,3,30,8,12,0,0,0,4,1
+19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
+41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
+40,7,0,3,1,17,1,1,3,30,6,12,0,0,0,4,1
+24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
+13,10,3,3,1,12,1,1,0,26,3,12,0,74,12,0,1
+31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
+8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
+17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
+14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
+20,10,2,2,1,28,2,1,3,23,8,13,22,0,0,4,1
+22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
+39,10,0,2,1,37,1,1,0,5,1,13,11,0,0,4,1
+40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
+14,5,3,3,1,38,1,1,0,8,3,7,11,0,0,4,1
+41,1,2,1,1,23,2,1,3,26,8,11,22,0,0,4,0
+37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
+11,1,3,2,1,2,2,1,3,21,8,14,11,0,0,4,1
+9,5,3,3,1,19,2,1,0,7,5,10,0,0,0,4,1
+13,1,3,2,1,37,2,1,3,26,8,6,11,0,0,4,0
+15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
+26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+8,9,3,2,1,9,2,1,3,26,8,11,11,0,0,4,0
+22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
 23,0,3,2,1,10,2,1,3,10,8,14,0,0,0,4,1
-35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
-18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
-22,1,2,2,1,24,2,2,3,12,6,11,11,0,0,4,1
-22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
-31,0,0,2,1,21,2,2,3,29,8,10,0,0,0,4,1
-37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
-15,10,2,3,1,62,1,1,0,12,10,13,0,3,2,1,1
-11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
-25,1,2,1,1,45,1,1,0,11,7,5,0,0,0,4,1
+17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
+33,0,2,2,1,70,1,1,0,26,1,1,0,0,0,4,1
+14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
+20,5,2,3,1,23,1,1,3,29,1,8,33,0,0,4,1
+35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
+23,1,3,2,2,4,1,2,0,12,10,10,0,0,0,4,1
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
+13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
+30,2,2,3,2,4,1,1,0,24,5,13,33,0,0,4,1
+12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
 33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
-17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
-40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
-24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
-23,1,0,2,1,54,2,1,3,5,8,4,22,0,0,4,1
-36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
-17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
-20,5,3,3,1,59,2,1,3,27,6,10,33,0,0,4,1
-14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
-16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
-37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
-8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
-13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
-23,0,3,2,1,67,1,2,3,2,6,11,33,0,0,4,1
-40,5,0,2,1,38,1,1,2,23,5,11,11,0,0,4,1
-15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
-41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
-16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
-18,5,0,3,2,42,1,1,0,27,1,14,33,0,0,4,1
-41,6,2,2,1,38,2,1,3,26,8,4,22,0,0,4,0
-18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
-12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
-18,10,3,2,1,33,2,2,3,26,8,8,0,0,0,4,0
-18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
-12,0,3,2,1,4,1,1,0,7,5,11,47,0,0,4,1
-8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
-18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
-30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
-19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
-33,7,2,2,1,70,2,1,0,15,5,3,33,0,0,4,1
-22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
-11,0,3,2,1,67,2,2,3,26,8,11,0,0,0,4,0
-22,0,2,1,1,63,2,2,0,13,10,14,0,0,0,4,1
-8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
-12,8,0,2,1,40,2,1,0,12,10,10,0,0,0,4,1
-14,8,3,2,1,2,2,1,3,13,8,12,22,0,0,4,1
+39,6,2,3,1,9,2,2,3,20,8,12,0,0,0,4,1
+18,5,2,3,1,71,1,1,0,23,5,13,33,0,0,4,1
+10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
+32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
+12,0,2,2,1,68,2,1,3,21,8,13,22,0,0,4,1
+23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+22,1,2,2,1,24,2,2,3,12,6,11,11,0,0,4,1
+13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
+20,5,2,3,1,44,2,1,2,20,11,5,0,0,0,4,1
+31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
+17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
+19,10,3,2,1,12,1,1,0,18,3,4,0,0,0,4,1
 12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
-13,10,0,3,1,9,1,1,0,19,1,11,43,0,0,4,1
-12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
-20,10,3,3,1,11,1,1,3,8,6,1,22,0,0,4,1
-45,6,2,2,1,20,1,1,2,8,3,7,11,0,0,4,1
-20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
-36,10,2,2,1,12,1,1,0,23,5,10,22,0,0,4,1
-14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
-21,0,2,2,1,15,2,2,0,25,3,3,11,0,0,4,1
-30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
-19,5,3,3,1,58,2,1,3,26,8,4,0,0,0,4,0
-39,10,0,2,1,37,1,1,0,5,1,13,11,0,0,4,1
-17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
-31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
-13,5,2,3,1,39,2,1,0,9,5,1,11,0,0,4,1
-14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
-14,0,0,2,1,3,1,2,3,19,6,14,11,0,0,4,1
-37,10,2,3,1,21,1,2,0,26,1,12,11,0,0,4,1
-26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
-15,0,3,2,1,58,1,1,0,19,3,1,11,0,0,4,1
-42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
-30,11,2,2,1,46,2,1,3,26,8,6,11,0,0,4,0
-9,0,2,3,1,63,1,1,0,1,3,5,0,0,0,4,1
-15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
-27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
-33,11,0,3,1,9,1,1,0,24,5,11,11,0,0,4,1
-17,1,2,2,1,9,2,2,3,21,8,11,0,0,0,4,1
+41,6,0,2,1,53,1,1,0,22,3,7,0,0,0,4,1
+14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
+37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
+13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
+26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
+37,1,2,1,1,59,2,1,3,26,8,7,0,0,0,4,0
+17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
+22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
+26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
 12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
-40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
-35,6,2,2,1,39,2,1,3,26,8,7,11,0,0,4,0
-23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
+23,10,2,3,1,53,1,1,0,26,1,14,11,0,0,4,1
+39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
+7,10,3,2,1,14,2,1,0,19,3,9,38,0,0,4,1
+15,10,3,2,1,10,2,1,3,26,8,7,11,0,0,4,0
+31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
+24,1,0,1,1,37,2,1,0,8,5,2,11,0,0,4,1
+12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
+32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
+16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
+18,5,2,3,1,16,1,1,3,10,6,6,0,0,0,4,1
+42,6,2,1,1,58,2,1,3,26,8,7,0,0,0,4,0
+43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
+13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
+33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
+26,3,2,1,1,1,1,2,0,23,5,2,11,0,0,4,1
+25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
+35,10,2,3,1,71,1,1,0,12,1,4,38,0,0,4,1
 6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
-40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
-27,2,2,3,1,25,2,1,0,12,10,14,38,0,0,4,1
-43,6,2,2,1,65,1,1,0,27,1,10,33,0,0,4,1
-7,1,3,1,1,54,2,1,3,16,6,11,11,0,0,4,1
-22,10,3,3,1,21,2,1,0,11,3,7,0,157,12,0,1
-21,11,2,2,1,28,1,1,0,13,10,13,11,0,0,4,1
-35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
-19,10,3,3,1,58,1,1,0,27,3,4,0,0,0,4,1
-42,12,2,4,1,22,1,1,0,18,1,12,2,0,0,4,1
-29,5,2,2,1,35,1,1,3,8,6,11,0,0,0,4,1
-24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
-11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
-34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
-20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
-14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
-12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
-42,0,2,3,1,20,1,1,0,12,1,15,43,0,0,4,1
-20,5,2,3,1,59,1,1,0,22,3,7,0,0,0,4,1
-13,1,2,2,1,61,2,1,3,9,6,12,33,0,0,4,1
-12,7,2,3,1,22,1,1,3,8,11,7,0,0,0,4,1
-33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
-15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
-29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
-8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
-16,0,2,2,1,19,1,1,0,26,3,12,11,0,0,4,1
-16,8,3,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
-26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
+14,10,0,3,1,54,1,1,0,14,1,12,11,0,0,4,1
+13,0,2,2,1,37,2,1,3,30,8,11,0,0,0,4,1
+11,1,3,2,1,51,1,2,0,1,5,1,22,0,0,4,1
+16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
+42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
+37,0,3,2,1,66,2,2,3,26,8,0,11,0,0,4,0
+25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
+26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
+35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
+16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
+20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
+20,10,2,2,1,71,2,1,0,5,5,13,22,0,0,4,1
+33,1,2,2,1,32,2,1,3,26,8,13,0,0,0,4,0
+28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
+15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
+25,8,2,1,1,37,2,1,3,26,8,6,11,0,0,4,0
+13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
 30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
-37,10,2,2,2,4,1,1,0,11,3,13,0,0,0,4,1
-15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
-7,0,2,4,1,41,2,1,0,14,5,0,46,0,0,4,1
-41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
-12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
-15,8,2,2,1,41,2,1,2,13,11,4,0,550,30,0,1
-17,1,2,4,1,51,2,1,3,12,8,14,11,0,0,4,1
-10,5,2,2,1,36,2,1,3,20,8,10,0,0,0,4,1
-16,1,3,2,1,22,1,2,0,17,5,12,0,0,0,4,1
-19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
-28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
+9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
 30,5,3,3,1,56,1,1,0,3,3,7,0,0,0,4,1
-11,8,3,2,1,67,1,2,3,22,5,11,22,0,0,4,1
-13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
-35,3,2,1,1,10,1,2,3,26,6,12,0,0,0,4,1
-15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
-10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
-28,5,2,3,1,29,2,1,3,26,8,6,0,0,0,4,0
-16,10,3,3,1,72,2,1,0,26,3,13,11,0,0,4,1
-21,3,2,2,1,18,1,1,2,17,5,9,46,0,0,4,1
-26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
-12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
-12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
-8,8,3,2,1,11,1,1,0,23,4,1,11,0,0,4,1
-26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
-35,11,2,4,1,15,1,1,3,26,8,9,22,0,0,4,0
-11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
-15,1,0,2,1,42,2,1,3,15,8,13,11,0,0,4,1
-36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
-27,0,2,2,1,18,2,1,3,15,8,15,22,0,0,4,1
-21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
-27,1,0,1,1,2,1,1,0,6,5,14,11,0,0,4,1
-31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
-13,10,3,3,1,35,1,1,3,29,10,5,0,0,0,4,1
-31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
-38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
-7,1,2,2,1,7,2,1,3,26,8,9,0,0,0,4,0
-26,5,2,3,1,12,1,1,0,19,1,10,22,0,0,4,1
-31,8,2,2,1,44,1,1,2,24,5,0,33,0,0,4,1
-28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
-12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
-19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
-13,1,2,2,1,64,2,1,3,10,8,0,33,0,0,4,1
-39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
-38,1,2,1,1,9,2,1,0,7,5,2,0,0,0,4,1
-38,1,3,2,1,61,1,2,0,29,5,14,22,0,0,4,1
-35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
-12,1,3,2,1,23,2,1,0,9,5,11,0,0,0,4,1
-14,5,0,3,1,28,1,2,0,6,5,14,33,0,0,4,1
-31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
-10,7,2,3,1,9,2,1,0,25,3,11,22,106,30,0,1
-20,10,0,3,1,23,1,1,3,30,6,15,11,0,0,4,1
-31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
-28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
-10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
-32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
-32,0,2,2,1,63,2,1,0,27,1,3,33,0,0,4,1
-25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
-13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
-15,5,3,3,1,40,2,1,3,26,8,7,0,0,0,4,0
-17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
-26,8,2,2,1,16,2,2,3,26,8,7,0,0,0,4,0
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
+11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
+12,1,2,2,1,9,2,2,0,1,5,4,0,0,0,4,1
+41,6,2,1,1,20,2,2,0,26,1,14,0,0,0,4,1
+8,8,3,2,1,18,1,1,2,15,11,5,0,0,0,4,1
+9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
+33,11,0,3,1,9,1,1,0,24,5,11,11,0,0,4,1
+21,5,2,2,1,23,2,1,3,26,8,14,0,0,0,4,0
+26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
+16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
+28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
+37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
+19,1,2,1,1,9,2,1,3,26,8,13,0,0,0,4,0
+28,5,3,3,1,9,1,1,0,14,1,12,11,0,0,4,1
+11,7,2,2,1,47,2,1,3,26,6,11,6,0,0,4,1
+11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
+28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
+16,1,2,2,1,23,1,1,0,27,1,15,11,0,0,4,1
+36,1,2,1,1,41,2,1,3,26,8,11,11,0,0,4,0
+36,0,0,2,1,24,1,1,0,4,3,10,38,0,0,4,1
+23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
+34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
 7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
-17,8,2,2,1,9,2,1,3,26,8,10,0,0,0,4,0
-19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
-15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
-18,5,2,3,1,16,1,1,3,10,6,6,0,0,0,4,1
-55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
-16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
-33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
-35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
-40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
-36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
-19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
-33,2,2,3,1,54,2,1,3,15,11,3,0,0,0,4,1
-20,1,2,2,1,59,2,1,3,13,8,11,11,0,0,4,1
-39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
-5,10,3,3,1,12,2,1,3,20,8,14,0,0,0,4,1
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
-28,0,2,2,1,61,2,1,2,21,5,1,2,0,0,4,1
-25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
+21,0,2,2,1,15,2,2,0,25,3,3,11,0,0,4,1
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+26,5,0,3,1,57,1,1,3,15,8,11,43,0,0,4,1
+20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
+21,5,2,3,1,34,2,1,0,3,1,3,0,0,0,4,1
+16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
+16,5,3,3,1,71,2,1,0,4,1,14,33,0,0,4,1
+12,10,3,2,1,34,1,1,0,13,10,10,22,0,0,4,1
+41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
+24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
+23,5,2,1,1,54,2,1,0,8,10,16,0,0,0,4,1
+34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
+16,1,3,2,1,22,1,2,0,17,5,12,0,0,0,4,1
+16,1,3,2,1,54,2,2,3,26,8,8,0,0,0,4,0
+15,5,3,3,1,37,2,1,0,14,5,1,0,0,0,4,1
+31,8,2,2,1,15,1,1,0,5,1,14,5,0,0,4,1
+28,0,2,2,1,28,1,1,0,18,1,9,43,0,0,4,1
+18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
+36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
+42,6,2,3,1,32,2,1,0,11,3,9,0,0,0,4,1
+8,0,3,3,1,38,1,2,0,18,3,7,11,0,0,4,1
+18,1,2,2,1,22,1,1,3,26,6,6,0,0,0,4,1
+37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
+13,10,2,2,1,13,2,1,0,5,5,10,22,0,0,4,1
+36,6,0,3,1,9,1,1,3,4,8,12,0,0,0,4,1
+4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
 24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
-34,5,3,3,1,67,1,1,0,18,1,2,43,0,0,4,1
-25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
-41,8,2,2,1,2,2,1,3,18,8,13,22,0,0,4,1
-39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
-12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
-31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
-26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
-8,8,3,3,1,12,2,1,0,27,3,16,11,0,0,4,1
-13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
-41,6,0,2,1,53,1,1,0,22,3,7,0,0,0,4,1
-29,1,2,2,1,67,1,1,0,29,1,13,11,0,0,4,1
-28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
-38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
-40,2,2,3,1,65,2,1,2,30,5,16,0,0,0,4,1
-12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
-39,1,2,2,1,58,2,2,3,26,8,7,0,0,0,4,0
-26,0,0,2,1,20,2,1,0,5,5,5,11,0,0,4,1
-19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
-23,1,2,1,1,31,1,1,3,10,6,12,22,0,0,4,1
-40,5,2,3,1,47,2,1,2,5,10,5,0,0,0,4,1
-21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
-12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
-40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
-13,7,2,3,1,70,1,1,0,14,1,11,11,0,0,4,1
-33,1,2,2,1,32,2,1,3,26,8,13,0,0,0,4,0
+35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
+38,1,2,2,1,31,2,1,3,21,8,13,11,0,0,4,1
+24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
+33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
+37,10,2,2,2,4,1,1,0,11,3,13,0,0,0,4,1
+10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
+15,5,3,3,1,9,1,1,0,2,1,12,45,0,0,4,1
+19,8,2,2,1,19,2,1,0,7,3,4,11,0,0,4,1
+35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
+35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
+20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+8,9,3,2,1,59,1,1,0,8,3,0,0,0,0,4,1
+15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
 36,10,2,3,1,32,1,1,3,26,8,8,33,0,0,4,0
-31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
-24,1,3,1,1,20,2,1,0,17,5,11,46,0,0,4,1
-23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
-18,0,2,2,1,71,1,1,0,11,3,8,0,0,0,4,1
-11,11,3,1,1,55,1,1,0,21,4,14,0,0,0,4,1
-19,5,3,3,1,30,1,1,3,26,6,1,0,0,0,4,1
-31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
-19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
-18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-15,11,2,2,1,1,1,1,0,23,5,10,22,0,0,4,1
-32,10,2,2,1,47,2,1,3,26,6,10,38,0,0,4,1
-17,1,2,2,1,10,1,1,3,9,10,4,11,0,0,4,1
-14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
-28,1,2,2,1,49,1,2,0,9,1,12,43,0,0,4,1
-11,0,0,3,2,9,1,2,0,30,5,9,22,0,0,4,1
-15,5,2,3,1,24,1,1,0,4,1,2,11,0,0,4,1
-17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
-22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
-32,5,2,4,1,67,1,1,0,19,3,6,0,178,1,0,1
-9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
-20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
-15,5,3,3,1,37,2,1,0,14,5,1,0,0,0,4,1
-14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
-19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
-14,7,3,3,1,44,2,1,0,9,10,10,0,0,0,4,1
-13,7,3,3,1,18,2,1,3,7,8,12,0,0,0,4,1
-41,1,0,1,1,15,1,2,0,28,5,14,0,0,0,4,1
-19,10,2,3,1,55,1,1,0,11,7,7,0,0,0,4,1
-23,2,2,2,1,68,2,1,0,9,10,15,0,0,0,4,1
-32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
-14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
-25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
-13,5,3,3,1,13,1,1,0,9,1,9,2,0,0,4,1
-19,11,3,2,1,44,2,1,3,29,8,16,11,0,0,4,1
-28,7,2,3,1,30,1,1,0,10,10,1,0,3,30,0,1
-13,11,3,1,1,20,1,1,0,23,4,13,11,110,1,1,1
-30,1,2,1,1,63,1,2,0,2,1,9,38,0,0,4,1
-22,10,3,2,1,56,2,1,3,23,8,11,22,0,0,4,1
-17,10,3,3,1,54,1,1,0,13,10,15,11,0,0,4,1
-54,6,2,3,1,9,1,1,0,4,3,16,0,0,0,4,1
-41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
-17,10,2,2,1,2,1,2,0,4,1,14,11,0,0,4,1
-12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
-41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
-37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
-10,11,3,3,1,9,2,1,3,26,8,3,11,0,0,4,0
-12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
-31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
-19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
-10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
-16,5,3,3,1,33,2,1,0,13,10,12,43,0,0,4,1
-13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
-36,5,2,3,1,9,1,1,3,26,8,2,11,0,0,4,0
-25,5,2,3,1,17,2,1,0,10,10,0,0,108,12,1,1
-36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
-27,1,2,1,1,66,2,1,3,7,8,11,0,0,0,4,1
-10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
-26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
+34,5,2,3,1,34,2,1,3,26,8,16,0,0,0,4,0
+42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
+15,1,0,2,1,42,2,1,3,15,8,13,11,0,0,4,1
+12,10,3,3,1,22,1,1,0,8,5,12,22,0,0,4,1
 8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
-42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
-21,5,2,3,1,44,2,2,3,26,8,3,11,0,0,4,0
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
-25,8,2,1,1,37,2,1,3,26,8,6,11,0,0,4,0
-12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
-15,1,3,3,1,62,1,1,0,30,3,3,0,546,1,3,1
-26,2,2,3,1,59,1,1,2,5,1,11,11,0,0,4,1
-24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
-23,5,2,1,1,54,2,1,0,8,10,16,0,0,0,4,1
-11,5,2,3,1,18,2,1,0,25,3,14,11,0,0,4,1
-10,1,3,2,1,65,2,1,3,30,8,13,0,0,0,4,1
-16,10,2,2,1,10,1,1,0,17,1,4,1,0,0,4,1
-20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
-35,0,0,4,1,32,1,1,0,2,5,3,11,0,0,4,1
-10,7,3,2,1,56,2,1,0,30,3,12,33,0,0,4,1
-25,1,2,1,1,37,2,1,0,12,10,7,11,0,0,4,1
-27,5,0,2,1,60,2,1,3,25,6,12,0,0,0,4,1
-24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
-37,8,0,2,2,9,2,1,3,26,8,6,0,0,0,4,0
-39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
-13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
-17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
-12,8,2,2,1,9,2,1,0,13,10,12,33,0,0,4,1
-18,1,2,2,1,22,1,1,3,26,6,6,0,0,0,4,1
-17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
-9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
-19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
-29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
-37,6,0,2,1,3,1,2,0,16,5,4,0,0,0,4,1
-15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
-25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
-15,1,2,2,1,18,2,1,3,15,8,11,22,0,0,4,1
-37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
-35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
-9,12,3,2,1,13,1,1,2,18,3,7,0,4,1,0,1
-38,7,2,1,1,4,2,2,3,26,8,7,11,0,0,4,0
-8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
-28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
-26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
-11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
-36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
-17,10,2,3,1,20,1,1,0,17,5,12,33,0,0,4,1
-12,0,3,3,1,37,1,1,0,25,3,7,11,0,0,4,1
-29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
-21,5,2,2,1,23,2,1,3,26,8,14,0,0,0,4,0
-24,5,2,4,1,34,1,1,3,26,8,9,11,0,0,4,0
-40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
-8,1,3,1,1,46,2,1,0,13,5,11,11,0,0,4,1
-29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
-39,10,2,3,1,9,1,1,3,5,8,14,11,0,0,4,1
-20,1,0,2,1,23,2,1,0,20,5,1,33,0,0,4,1
-5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
-12,5,3,3,1,52,1,1,0,2,1,11,11,0,0,4,1
-27,1,2,1,1,31,2,1,3,26,8,9,0,0,0,4,0
-12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
-19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
-33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
-41,6,2,2,1,19,2,2,3,5,8,1,11,0,0,4,1
-17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
-37,10,0,2,2,45,1,1,0,20,4,1,0,0,0,4,1
-8,9,3,2,1,9,2,1,3,26,8,11,11,0,0,4,0
+24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
+12,7,2,3,1,22,1,1,3,8,11,7,0,0,0,4,1
+34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
+13,1,3,2,1,63,1,1,0,28,5,13,11,0,0,4,1
+16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
+21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
+28,1,2,2,1,49,1,2,0,9,1,12,43,0,0,4,1
+14,5,3,3,1,54,1,1,0,22,3,10,11,0,0,4,1
+32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
+29,0,2,2,1,35,2,1,0,14,5,3,11,0,0,4,1
+40,6,2,1,1,14,1,1,0,9,1,6,11,0,0,4,1
+36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
+18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
+14,7,2,3,1,17,1,1,0,27,1,3,33,0,0,4,1
+19,10,2,3,1,15,2,1,0,4,3,13,0,0,0,4,1
+17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
+35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+32,7,2,2,1,9,1,1,0,4,1,12,11,0,0,4,1
+13,5,0,3,1,12,2,1,3,18,8,3,33,0,0,4,1
+28,1,2,1,1,68,1,1,0,27,1,16,0,0,0,4,1
+16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
+13,2,3,2,1,9,1,1,2,4,10,5,0,0,0,4,1
+14,8,2,2,1,4,2,1,3,23,8,2,11,0,0,4,1
+34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
+40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
+33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
+14,0,0,2,1,3,1,2,3,19,6,14,11,0,0,4,1
+30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
+18,7,3,3,1,0,2,2,2,8,11,8,0,0,0,4,1
+30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
+12,10,3,3,1,60,1,1,0,4,1,14,46,0,0,4,1
+39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
+13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
+14,10,3,2,1,55,1,2,0,21,4,13,0,0,0,4,1
+42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
+23,8,0,2,1,67,2,1,0,11,3,15,0,0,0,4,1
+26,8,2,2,1,54,1,2,3,12,6,15,0,0,0,4,1
+14,10,3,3,1,14,2,1,0,25,3,6,11,0,0,4,1
+12,11,3,3,1,37,1,1,0,2,3,11,22,0,0,4,1
+21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
+30,1,2,1,1,63,1,2,0,2,1,9,38,0,0,4,1
+42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
+19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
+30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
+33,6,2,1,1,29,2,1,3,26,8,9,0,0,0,4,0
 24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
-15,1,3,2,1,62,1,1,0,27,3,14,11,0,0,4,1
-24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
-20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
-16,5,3,3,1,71,2,1,0,4,1,14,33,0,0,4,1
-15,8,2,2,1,28,2,1,3,26,8,13,0,0,0,4,0
-25,1,3,2,1,37,2,1,3,30,8,15,22,0,0,4,1
-11,8,3,2,1,3,2,1,3,25,6,11,0,0,0,4,1
-40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
-30,7,2,3,1,62,2,1,3,26,8,8,0,0,0,4,0
-38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
-20,8,0,2,1,58,1,1,3,26,6,12,0,0,0,4,1
+19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
+20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
+23,10,3,2,1,60,2,1,0,12,10,7,22,0,0,4,1
+41,5,2,2,1,16,1,1,3,30,6,9,22,0,0,4,1
+30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
+37,8,2,4,1,36,1,1,0,19,1,12,43,0,0,4,1
+7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
+13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
+32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
+32,5,3,3,1,13,1,1,0,5,1,15,22,0,0,4,1
+41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
+39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
 12,0,0,2,1,43,2,1,3,25,6,10,6,0,0,4,1
-12,8,3,2,2,4,2,1,0,9,5,10,0,0,0,4,1
+10,7,3,3,1,20,1,1,3,2,10,5,0,0,0,4,1
+35,6,2,2,1,39,2,1,3,26,8,7,11,0,0,4,0
+39,6,2,2,1,50,1,1,0,26,1,12,11,0,0,4,1
 20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
-32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
-30,1,2,2,1,17,2,1,3,5,8,12,11,0,0,4,1
-11,1,3,2,1,51,1,2,0,1,5,1,22,0,0,4,1
-10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
-15,5,3,3,1,63,1,1,0,19,1,10,46,0,0,4,1
-24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
-14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
-42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
-18,7,2,3,1,24,1,1,3,26,8,6,11,0,0,4,0
-29,1,2,4,2,20,1,1,0,17,1,9,22,0,0,4,1
-15,10,3,2,1,37,1,2,0,27,1,10,11,0,0,4,1
-13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-14,5,3,3,1,50,1,1,0,13,1,13,43,0,0,4,1
-4,9,3,2,1,9,1,1,0,27,3,7,43,0,0,4,1
-19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
-4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
-29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
-24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
-44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
-19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
-12,0,3,3,1,9,2,1,0,25,3,13,11,0,0,4,1
-32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
-14,1,3,3,1,62,1,1,3,4,10,15,0,0,0,4,1
-40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
-11,8,3,2,1,34,2,1,3,12,8,6,11,0,0,4,1
-31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
-16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
-22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
-14,5,3,3,1,65,1,1,0,21,1,12,11,0,0,4,1
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-21,1,3,2,1,9,1,1,0,14,5,14,33,0,0,4,1
-41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
-29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
-34,1,2,2,1,63,1,2,2,12,10,14,22,0,0,4,1
-29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
-16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
-40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-18,7,3,3,1,14,1,1,0,24,5,14,22,0,0,4,1
-14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
-25,10,0,4,1,26,2,1,3,26,8,4,0,0,0,4,0
-17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
-12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
-29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
-17,9,3,2,1,24,2,1,0,7,3,13,22,112,33,0,1
-27,1,2,1,1,9,2,1,3,3,8,10,38,0,0,4,1
-25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
-32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
-21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
-17,3,3,2,1,10,2,1,3,26,6,9,11,0,0,4,1
-33,3,0,2,1,70,1,1,0,9,5,12,33,0,0,4,1
-41,6,2,1,1,40,2,1,0,26,1,10,22,0,0,4,1
-36,1,2,1,1,41,2,1,3,26,8,11,11,0,0,4,0
-34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
-14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
-23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
-15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
-18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
-35,8,0,1,1,3,2,2,3,28,8,11,0,0,0,4,1
-7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
-13,1,3,2,1,37,2,1,3,26,8,6,11,0,0,4,0
-8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
-34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
-10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
-25,1,0,1,1,42,1,1,0,12,10,2,0,0,0,4,1
-22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
-7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
+9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
+34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
+10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
 11,1,3,4,1,62,2,2,0,7,5,6,33,0,0,4,1
-10,9,3,2,1,70,2,1,3,20,8,5,0,0,0,4,1
-29,8,2,2,1,46,1,2,0,29,1,16,11,0,0,4,1
+17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
+15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
+42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
+32,0,2,2,1,63,2,1,0,27,1,3,33,0,0,4,1
+24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
+28,0,2,2,1,61,2,1,2,21,5,1,2,0,0,4,1
+28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
+38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
 23,8,2,2,1,9,2,1,3,26,8,1,11,0,0,4,0
-18,5,2,3,1,9,2,2,3,26,8,9,0,0,0,4,0
-13,11,3,2,1,35,2,1,0,11,3,14,0,0,0,4,1
-17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
-28,10,2,2,1,16,1,1,0,9,1,11,38,0,0,4,1
+11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
+20,1,2,2,1,59,2,1,3,13,8,11,11,0,0,4,1
+33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
+30,0,0,2,1,42,1,1,0,4,1,11,0,0,0,4,1
+27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
+7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
+16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
+30,7,2,3,1,62,2,1,3,26,8,8,0,0,0,4,0
+13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
+41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
 24,10,2,3,1,64,1,1,0,1,3,5,0,0,0,4,1
-8,5,3,3,1,62,2,1,3,20,8,5,11,0,0,4,1
-15,5,0,3,1,35,1,1,0,26,1,1,11,0,0,4,1
-38,5,0,3,1,47,2,1,3,8,6,10,33,0,0,4,1
-27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
-13,5,2,3,1,61,1,1,0,28,1,2,0,0,0,4,1
-25,1,2,2,1,23,1,2,0,7,5,0,2,0,0,4,1
-26,0,2,2,1,4,2,1,3,26,8,5,0,0,0,4,0
-34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
-17,10,0,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-15,5,2,3,1,20,1,1,0,27,3,6,11,0,0,4,1
-14,8,3,4,1,30,1,1,0,8,10,1,11,0,0,4,1
-41,6,2,4,1,10,1,1,3,2,6,2,0,0,0,4,1
-9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
-17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
-23,1,2,1,1,18,2,1,3,27,6,11,11,0,0,4,1
-9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
-17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
-12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
-15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
-42,6,2,1,1,58,2,1,3,26,8,7,0,0,0,4,0
-22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
-10,10,3,2,1,16,1,1,0,19,3,13,0,0,0,4,1
-20,1,2,1,1,57,2,1,3,25,6,16,11,0,0,4,1
-29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
-15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
-21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
-27,7,2,2,1,62,1,1,0,12,10,12,0,0,0,4,1
-25,0,2,2,1,29,1,1,2,1,10,10,0,0,0,4,1
-12,5,2,3,1,15,2,1,0,2,1,9,43,0,0,4,1
-36,6,2,2,1,54,2,1,3,26,8,4,0,0,0,4,0
-16,1,2,1,1,41,2,1,0,13,10,0,0,0,0,4,1
-20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
-16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
-30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
-25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
-26,1,2,2,1,57,2,1,3,26,8,10,0,0,0,4,0
-40,6,2,4,1,71,2,1,3,26,8,12,0,0,0,4,0
-16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
-14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
-22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
-18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
-42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
-33,10,2,2,1,27,1,1,0,28,5,11,11,0,0,4,1
-33,11,2,1,1,13,2,1,0,17,5,6,0,0,0,4,1
-13,1,3,2,1,63,1,1,0,28,5,13,11,0,0,4,1
-14,8,2,1,1,29,2,1,0,13,5,0,43,0,0,4,1
-13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
-40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
-28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
-38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
-29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
-41,6,2,1,1,20,2,2,0,26,1,14,0,0,0,4,1
-11,1,3,1,1,27,2,1,3,27,6,7,22,0,0,4,1
-15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
-27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
-31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
-29,1,2,2,1,12,2,1,0,21,4,1,0,0,0,4,1
-12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
-38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
-14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
-18,5,3,3,1,8,2,1,3,11,6,1,0,0,0,4,1
-39,8,2,2,1,20,2,1,3,26,8,5,0,0,0,4,0
-14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
-27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
-8,8,3,2,1,18,1,1,2,15,11,5,0,0,0,4,1
-40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
-20,5,2,3,1,23,1,1,3,29,1,8,33,0,0,4,1
-31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
-7,8,3,2,1,40,1,2,0,6,5,1,11,0,0,4,1
-23,1,0,1,1,61,1,2,0,6,5,15,38,0,0,4,1
-6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
-9,9,3,3,1,43,2,1,2,4,3,8,43,0,0,4,1
-9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
-39,10,0,3,1,71,1,1,0,13,1,15,33,0,0,4,1
-33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
-25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
-7,9,3,2,1,30,1,1,0,26,3,7,45,0,0,4,1
-15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
-21,7,3,3,1,47,1,1,3,9,6,0,0,0,0,4,1
-28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
-17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
-14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
-12,10,3,3,1,22,1,1,0,8,5,12,22,0,0,4,1
-17,5,0,3,1,44,2,1,3,29,8,1,0,0,0,4,1
-16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
+28,10,3,3,1,48,1,1,0,9,1,10,45,0,0,4,1
+22,1,2,2,1,9,2,1,3,30,8,5,11,0,0,4,1
+12,0,3,2,1,38,2,1,0,25,3,1,11,0,0,4,1
+17,8,2,2,1,9,2,1,3,26,8,10,0,0,0,4,0
+40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
+35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
+20,9,3,3,1,40,1,1,3,8,6,3,22,0,0,4,1
+14,5,3,3,1,32,2,1,0,13,5,12,22,0,0,4,1
+9,10,3,3,1,70,2,1,0,25,3,1,0,0,0,4,1
+37,10,2,2,1,14,2,1,3,26,8,5,11,0,0,4,0
+33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
 10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
-28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
-32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
-14,5,2,3,1,9,2,1,3,26,8,6,0,0,0,4,0
-16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
-12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
-28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
-36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
+33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
+33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
+29,10,2,2,1,67,1,2,0,13,10,15,0,38,12,1,1
+28,10,2,2,1,55,2,1,3,7,6,13,11,0,0,4,1
+40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
+22,2,2,3,2,9,1,1,3,10,6,15,33,0,0,4,1
+21,10,2,2,1,9,2,1,3,26,8,6,0,0,0,4,0
+27,7,2,2,1,62,1,1,0,12,10,12,0,0,0,4,1
+10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+13,5,0,3,1,36,2,1,0,8,5,11,38,0,0,4,1
+31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
+15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
+41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
+18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
 39,11,2,2,1,43,1,1,0,26,3,1,11,0,0,4,1
-39,1,2,4,1,42,1,1,2,5,10,5,0,0,0,4,1
-11,5,3,3,1,56,2,1,2,29,10,8,0,0,0,4,1
-39,5,2,3,1,70,1,2,3,12,6,1,11,0,0,4,1
-31,2,0,4,2,7,2,1,0,23,5,16,11,0,0,4,1
-7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
-13,11,3,1,1,46,1,1,0,25,3,13,0,0,0,4,1
-14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
-46,6,2,1,1,48,1,1,0,27,3,10,0,0,0,4,1
-32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
-9,0,0,2,1,49,2,1,0,7,5,12,0,0,0,4,1
-40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
-13,9,2,1,1,50,2,1,0,1,5,10,0,0,0,4,1
-9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
-12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
-37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
-18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
-14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
-21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
-39,0,2,2,1,21,1,1,0,22,3,9,0,0,0,4,1
-24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
-20,10,3,2,1,21,2,1,3,26,8,6,0,0,0,4,0
-12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
-21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
-8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
-12,11,3,3,1,37,1,1,0,2,3,11,22,0,0,4,1
-7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
-21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
-30,5,2,3,1,23,2,1,0,18,3,7,0,0,0,4,1
-27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
-34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
-20,1,3,3,1,35,2,1,3,12,6,4,1,0,0,4,1
+36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
+11,5,3,3,1,19,1,1,0,9,3,7,45,0,0,4,1
 27,10,2,2,1,62,2,1,0,12,10,8,0,0,0,4,1
-17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
-35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
-35,5,2,3,1,20,1,1,0,26,3,5,22,0,0,4,1
+16,10,2,3,1,66,2,1,0,5,1,11,33,0,0,4,1
+24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
+7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
+16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
+13,12,2,2,1,12,1,1,0,13,10,10,11,552,12,0,1
+6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
+22,8,2,1,1,11,2,1,3,23,8,14,11,0,0,4,1
+18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
+42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
+15,1,2,2,1,18,2,1,3,15,8,11,22,0,0,4,1
+9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
+35,0,0,4,1,32,1,1,0,2,5,3,11,0,0,4,1
+41,6,2,2,1,19,2,2,3,5,8,1,11,0,0,4,1
+19,10,3,2,1,31,1,1,0,7,3,15,22,0,0,4,1
+12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
+25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
+13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
+41,6,2,2,1,38,2,1,3,26,8,4,22,0,0,4,0
+16,10,2,2,1,9,1,1,0,20,1,11,11,0,0,4,1
+23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
 21,10,3,3,1,50,2,1,3,26,8,6,0,0,0,4,0
-21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
-27,2,2,2,1,65,1,2,0,8,10,12,11,30,12,0,1
-34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
-32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
-20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
-43,5,2,2,1,71,1,1,0,9,1,16,43,0,0,4,1
-34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
-32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
+34,1,2,4,1,9,2,1,0,30,5,4,0,0,0,4,1
+33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
+16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
+17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
+35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
+27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
+32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
+11,9,3,3,1,52,1,1,0,6,5,14,38,0,0,4,1
 24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
-33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
-8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
-18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
-19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
-23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
-33,6,2,1,1,18,1,1,2,17,5,6,33,0,0,4,1
-42,1,2,1,1,52,1,1,0,9,1,12,33,0,0,4,1
-6,10,3,2,1,46,2,1,3,7,8,15,0,0,0,4,1
-11,7,3,3,1,14,2,1,3,23,8,4,11,0,0,4,1
-19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
-22,5,2,3,1,61,1,1,0,4,1,13,33,0,0,4,1
-13,5,3,3,1,39,1,1,0,11,3,7,0,502,1,0,1
-20,0,3,2,1,39,1,1,3,26,6,14,11,0,0,4,1
-17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
-13,10,3,3,1,12,1,1,0,26,3,12,0,74,12,0,1
-29,0,0,2,1,28,1,1,0,20,1,1,33,0,0,4,1
-10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
-18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
-14,10,3,3,1,50,2,1,3,13,8,14,11,0,0,4,1
+29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
+38,1,3,2,1,61,1,2,0,29,5,14,22,0,0,4,1
+29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
+27,1,0,1,1,2,1,1,0,6,5,14,11,0,0,4,1
+19,5,3,3,1,49,2,1,0,4,1,15,43,0,0,4,1
+42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
+41,6,2,1,1,40,2,1,0,26,1,10,22,0,0,4,1
+34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
+20,1,2,1,1,57,2,1,3,25,6,16,11,0,0,4,1
+12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
+13,5,0,3,1,43,1,1,0,1,3,3,43,0,0,4,1
+19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
+13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
+18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
 8,5,3,3,1,49,1,1,0,1,5,2,22,0,0,4,1
-23,1,3,2,2,4,1,2,0,12,10,10,0,0,0,4,1
-23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
-39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
-28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
-12,10,3,2,1,32,2,1,3,26,8,12,11,0,0,4,0
-11,5,3,3,1,71,2,1,0,2,5,15,11,0,0,4,1
-13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
-17,1,0,1,1,37,2,1,3,4,8,15,11,0,0,4,1
-17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
-25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
-35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
-35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
-36,0,0,2,1,24,1,1,0,4,3,10,38,0,0,4,1
-39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
-8,5,3,3,1,9,2,1,3,23,8,7,11,0,0,4,1
-14,1,2,1,1,46,2,1,3,11,6,13,33,0,0,4,1
-17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
-23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
-37,1,2,1,1,59,2,1,3,26,8,7,0,0,0,4,0
-51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
-10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
-36,5,2,2,1,12,2,1,0,17,5,3,22,0,0,4,1
-32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
-14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
-32,1,2,1,1,46,2,1,0,28,1,10,11,0,0,4,1
-26,5,0,3,1,57,1,1,3,15,8,11,43,0,0,4,1
-20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
-8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
-21,8,3,4,1,32,2,1,3,26,8,9,0,0,0,4,0
-28,10,2,2,1,41,1,2,0,19,3,2,0,0,0,4,1
-19,5,2,3,1,55,1,1,2,8,3,10,33,0,0,4,1
-22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
-40,0,2,2,1,18,2,1,2,21,5,12,4,0,0,4,1
-42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
-41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
-33,6,2,1,1,61,1,1,3,9,6,14,0,0,0,4,1
-19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
-16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
-38,1,2,2,1,14,1,1,3,2,6,15,0,0,0,4,1
-36,6,3,2,1,15,1,2,0,20,5,14,11,0,0,4,1
-13,5,2,3,1,66,1,1,0,12,1,13,5,0,0,4,1
-18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
-14,10,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
-37,6,0,2,1,20,1,2,3,10,6,0,0,0,0,4,1
-33,7,2,3,1,55,2,2,0,24,5,11,33,0,0,4,1
-7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
-12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
-29,11,2,1,1,39,1,1,0,13,10,10,11,0,0,4,1
-41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
-33,1,2,4,1,24,2,1,3,26,8,11,0,0,0,4,0
-42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
-38,6,0,3,1,20,1,2,0,13,5,14,0,0,0,4,1
-39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
-16,2,2,3,1,11,2,1,0,26,3,3,1,0,0,4,1
-34,5,2,3,1,34,2,1,3,26,8,16,0,0,0,4,0
-9,5,3,1,2,15,1,1,0,23,4,10,22,0,0,4,1
-9,5,3,3,1,63,2,1,3,26,6,11,22,0,0,4,1
-13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
-23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
-19,8,3,2,1,34,2,1,3,22,6,0,22,0,0,4,1
-16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
-21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
-39,6,2,3,1,9,2,2,3,20,8,12,0,0,0,4,1
-24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
-37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
-11,10,3,3,1,29,1,1,0,11,3,3,0,0,0,4,1
-27,10,2,3,1,43,2,1,3,10,6,14,22,0,0,4,1
-10,0,3,4,1,30,2,1,0,9,5,9,11,0,0,4,1
-7,9,3,2,1,22,2,1,0,16,5,15,0,0,0,4,1
-40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
-15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
-13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
-22,10,2,2,1,4,2,1,0,7,5,12,33,0,0,4,1
-17,5,2,3,1,68,2,1,3,11,6,7,22,0,0,4,1
-18,11,2,3,1,46,1,1,3,12,6,16,33,0,0,4,1
-34,3,2,1,1,44,2,1,0,8,5,2,0,0,0,4,1
-24,2,0,3,2,25,2,1,3,26,8,9,0,0,0,4,0
-40,7,0,3,1,17,1,1,3,30,6,12,0,0,0,4,1
-17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
-7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
-40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
-17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
-16,8,2,2,1,6,2,1,3,18,8,12,0,0,0,4,1
-34,3,2,2,1,45,2,1,3,5,8,15,22,0,0,4,1
+14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
+12,10,2,2,1,51,2,1,3,27,8,12,0,0,0,4,1
+15,5,2,3,1,24,1,1,0,4,1,2,11,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
+18,1,2,1,1,58,2,1,3,13,8,12,11,0,0,4,1
+5,10,3,3,1,12,2,1,3,20,8,14,0,0,0,4,1
+11,0,0,3,2,9,1,2,0,30,5,9,22,0,0,4,1
+22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
+20,5,2,3,1,22,2,1,0,1,5,10,0,0,0,4,1
+22,8,3,2,1,19,2,1,0,12,10,9,0,0,0,4,1
+24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
+15,5,3,3,1,48,1,1,2,12,1,11,43,0,0,4,1
+11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
+12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
+14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
 12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
-37,8,2,4,1,36,1,1,0,19,1,12,43,0,0,4,1
-18,5,2,3,1,32,1,1,0,22,3,8,11,0,0,4,1
-22,1,2,2,1,9,2,2,3,12,6,0,38,0,0,4,1
-31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
-36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
-42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
-23,2,2,1,1,44,2,1,0,13,10,11,11,0,0,4,1
-22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
-16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
-28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
-36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
-42,6,2,3,1,32,2,1,0,11,3,9,0,0,0,4,1
-30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
-32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
-36,6,0,3,1,9,1,1,3,4,8,12,0,0,0,4,1
-10,0,3,2,1,7,1,2,3,18,6,8,11,0,0,4,1
-30,11,2,2,1,36,2,1,3,26,8,7,0,0,0,4,0
-23,1,2,2,1,17,2,1,3,6,8,2,33,0,0,4,1
-11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
-35,10,2,3,1,71,1,1,0,12,1,4,38,0,0,4,1
-34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
-18,1,2,1,1,46,2,2,3,12,8,1,11,0,0,4,1
-28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
-18,5,2,3,1,71,1,1,0,23,5,13,33,0,0,4,1
-31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
-8,10,2,2,1,1,1,2,0,30,5,9,38,0,0,4,1
-34,5,2,3,1,14,1,1,0,14,1,1,33,0,0,4,1
-13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
-42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
-31,8,2,2,1,67,1,1,0,29,1,13,33,0,0,4,1
-5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
-24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
-23,8,2,4,2,9,1,2,0,23,5,2,33,0,0,4,1
+21,11,3,2,1,1,2,1,0,22,3,9,0,0,0,4,1
+21,1,2,2,1,51,2,1,3,26,8,8,0,0,0,4,0
+11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
+15,5,0,3,1,35,1,1,0,26,1,1,11,0,0,4,1
+35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
+13,8,2,2,1,31,2,2,3,26,8,5,0,0,0,4,0
+7,9,3,2,1,30,1,1,0,26,3,7,45,0,0,4,1
+26,11,2,2,1,9,2,1,0,11,3,12,0,190,1,0,1
 17,1,2,1,1,72,2,1,3,15,8,3,46,0,0,4,1
-43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
+31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
+14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
+18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
+28,10,2,2,1,16,1,1,0,9,1,11,38,0,0,4,1
+25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
+13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
+30,0,2,1,1,42,2,2,2,24,5,0,47,0,0,4,1
 25,1,3,2,1,64,2,1,3,12,6,11,11,0,0,4,1
-15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
-14,8,3,2,1,65,2,1,3,6,8,12,22,0,0,4,1
-29,10,2,2,1,9,1,1,0,13,10,11,0,2,1,0,1
-32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
-24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
-22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
-23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
-21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
-18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
-30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
-37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
-35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
-22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-17,5,0,3,1,9,2,1,2,21,11,5,0,0,0,4,1
-18,7,3,3,1,0,2,2,2,8,11,8,0,0,0,4,1
-37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
-18,8,3,4,1,35,2,1,3,7,8,10,0,0,0,4,1
-24,5,2,3,1,43,1,1,0,10,10,13,11,0,0,4,1
+37,5,2,3,1,56,1,1,0,3,1,15,1,0,0,4,1
+29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
+19,10,3,3,1,58,1,1,0,27,3,4,0,0,0,4,1
+14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
+31,10,3,2,1,2,2,2,0,8,10,10,0,0,0,4,1
+40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
+24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
+16,1,3,1,1,0,2,1,0,6,5,14,33,0,0,4,1
+56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
+33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
+5,8,3,2,1,61,2,1,3,20,8,2,0,0,0,4,1
+17,10,2,3,1,20,1,1,0,17,5,12,33,0,0,4,1
+17,2,3,3,1,18,2,1,0,9,5,14,11,0,0,4,1
+7,5,2,1,1,21,2,1,3,22,6,14,0,0,0,4,1
+14,5,2,3,1,9,2,1,3,26,8,6,0,0,0,4,0
+23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
+34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
+28,10,2,2,1,13,2,1,0,13,10,5,11,0,0,4,1
+23,2,2,1,1,44,2,1,0,13,10,11,11,0,0,4,1
+34,1,2,2,1,63,1,2,2,12,10,14,22,0,0,4,1
+12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
+15,8,2,2,1,28,2,1,3,26,8,13,0,0,0,4,0
+14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
 15,5,2,3,1,17,2,1,3,10,1,10,0,0,0,4,1
-26,3,2,1,1,1,1,2,0,23,5,2,11,0,0,4,1
+41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
+17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
+33,3,0,2,1,70,1,1,0,9,5,12,33,0,0,4,1
+12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
+26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
+24,5,2,4,1,34,1,1,3,26,8,9,11,0,0,4,0
+39,10,2,2,1,64,1,1,2,20,11,4,0,0,0,4,1
+31,5,2,2,1,20,2,1,0,10,10,1,11,0,0,4,1
+17,1,3,2,1,45,2,1,3,30,8,12,33,0,0,4,1
+19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
+12,5,3,3,1,52,1,1,0,2,1,11,11,0,0,4,1
+19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
+15,8,3,3,1,45,2,1,0,15,5,3,43,0,0,4,1
+24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
+20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
+27,0,0,3,1,19,1,1,0,20,5,9,33,0,0,4,1
+31,10,2,3,1,43,1,1,0,26,1,14,11,0,0,4,1
+20,10,2,3,1,25,1,1,0,26,1,3,11,0,0,4,1
+26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
+14,10,3,3,1,55,1,1,0,10,10,8,0,0,0,4,1
+20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
+21,3,2,2,1,18,1,1,2,17,5,9,46,0,0,4,1
+8,1,2,2,1,0,2,2,0,8,5,2,22,0,0,4,1
+33,7,2,3,1,55,2,2,0,24,5,11,33,0,0,4,1
+27,8,3,1,1,24,2,1,3,22,6,3,43,0,0,4,1
+15,1,3,1,1,15,2,1,3,21,8,1,11,0,0,4,1
+21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
+13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
+17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
+13,5,2,3,1,39,2,1,0,9,5,1,11,0,0,4,1
+9,10,3,2,1,45,1,1,0,20,5,14,22,0,0,4,1
+19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
+31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
+11,8,3,2,1,34,2,1,3,12,8,6,11,0,0,4,1
+12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
+40,5,2,4,1,11,2,1,3,26,8,7,22,0,0,4,0
+16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
+38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
+22,1,2,1,1,9,2,1,0,13,5,1,33,0,0,4,1
+23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
+10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
+9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
+35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
+9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
+16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
+39,1,2,4,1,42,1,1,2,5,10,5,0,0,0,4,1
+37,10,2,3,1,21,1,2,0,26,1,12,11,0,0,4,1
+12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
+30,1,2,2,1,17,2,1,3,5,8,12,11,0,0,4,1
+15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
 34,5,2,3,1,9,2,1,0,25,3,10,0,0,0,4,1
-14,10,3,2,1,45,1,1,0,29,1,9,11,0,0,4,1
-14,5,3,3,1,38,1,1,0,8,3,7,11,0,0,4,1
-25,5,3,3,1,51,1,1,0,10,1,15,43,0,0,4,1
-8,0,3,3,1,38,1,2,0,18,3,7,11,0,0,4,1
-8,11,3,2,1,12,1,1,0,30,5,11,0,0,0,4,1
-41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
-16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
-28,3,2,1,1,71,1,1,3,26,8,6,0,0,0,4,0
-37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
-13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
-31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
-35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
+17,10,0,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
 28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
-16,7,2,3,1,9,1,1,0,20,1,13,2,0,0,4,1
-14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
-34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
-27,2,0,3,1,4,2,1,3,4,8,10,0,0,0,4,1
-22,2,2,3,2,9,1,1,3,10,6,15,33,0,0,4,1
-5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
-35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
-22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
-15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
-33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
-19,10,3,3,1,9,1,1,3,0,5,1,11,0,0,4,1
-9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
-31,8,2,2,1,50,1,1,3,26,8,7,11,0,0,4,0
-28,0,2,2,1,14,1,1,3,9,6,3,0,0,0,4,1
-42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
-22,0,2,2,1,40,1,1,0,24,5,2,38,0,0,4,1
-39,0,0,2,1,61,1,1,0,1,5,13,0,0,0,4,1
-15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
-9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
-12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
-15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
-18,10,2,2,1,31,1,1,0,20,1,15,33,0,0,4,1
-16,10,2,2,1,9,1,1,0,20,1,11,11,0,0,4,1
-13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
-25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
-21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
-19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
-18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
+40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
+22,10,3,3,1,21,2,1,0,11,3,7,0,157,12,0,1
 39,1,2,2,1,19,2,1,0,8,10,11,0,0,0,4,1
-34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
-19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
-21,8,2,3,1,18,1,1,0,30,3,15,22,0,0,4,1
-18,0,2,3,1,27,2,1,3,26,8,4,11,0,0,4,0
-6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
-23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
-31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
-20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
-28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
-11,7,2,2,1,47,2,1,3,26,6,11,6,0,0,4,1
-26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
-25,7,2,2,1,17,2,1,0,13,10,10,0,0,0,4,1
-33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
-30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
-34,6,0,3,1,43,2,2,3,7,6,13,33,0,0,4,1
-23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
-15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
-19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
-7,1,2,2,1,9,1,2,0,29,5,10,22,0,0,4,1
-42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
-36,1,2,1,1,5,2,1,3,26,8,8,0,0,0,4,0
-6,1,2,2,1,62,2,1,3,18,8,15,22,0,0,4,1
-29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
-22,2,0,2,1,37,2,1,0,9,5,12,22,0,0,4,1
-12,1,3,2,1,9,2,1,3,26,8,10,11,0,0,4,0
-20,1,2,1,1,24,2,1,2,10,10,12,0,83,1,1,1
-29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
+36,6,3,2,1,15,1,2,0,20,5,14,11,0,0,4,1
+19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
+14,10,3,3,1,50,2,1,3,13,8,14,11,0,0,4,1
+33,2,2,3,1,54,2,1,3,15,11,3,0,0,0,4,1
+19,2,0,2,1,22,2,2,3,4,8,13,43,0,0,4,1
+5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
+19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
+10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
+39,5,2,3,1,43,1,1,0,13,10,11,22,0,0,4,1
+22,10,2,3,1,51,2,1,3,26,8,5,0,0,0,4,0
+12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
+29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
+19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
+14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
+8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
+20,10,3,2,1,21,2,1,3,26,8,6,0,0,0,4,0
+9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
+16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
+29,5,2,2,1,35,1,1,3,8,6,11,0,0,0,4,1
 32,10,2,1,1,17,1,1,3,26,8,1,11,0,0,4,0
-14,5,3,3,1,24,1,1,0,17,1,10,38,0,0,4,1
-41,0,2,2,1,9,2,1,0,1,5,16,0,0,0,4,1
-30,0,2,1,1,42,2,2,2,24,5,0,47,0,0,4,1
-13,7,2,3,1,21,1,1,0,25,3,6,11,0,0,4,1
-36,10,2,2,1,9,1,1,2,26,3,13,22,0,0,4,1
-36,10,3,3,1,50,2,1,0,9,5,12,22,0,0,4,1
-28,8,2,2,1,36,1,1,0,13,10,15,0,0,0,4,1
-17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
-24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
-41,3,2,1,1,9,1,1,0,26,1,1,0,0,0,4,1
-20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
-21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-33,0,2,2,1,70,1,1,0,26,1,1,0,0,0,4,1
-42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
-17,10,0,2,1,56,2,1,3,23,8,12,1,0,0,4,1
-14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
-25,6,2,2,1,68,1,1,2,23,11,3,0,0,0,4,1
-33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
-17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
+14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
+29,10,2,2,1,9,1,1,0,13,10,11,0,2,1,0,1
+25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+22,5,3,3,1,9,1,1,0,27,1,12,43,0,0,4,1
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
+31,1,3,1,1,56,2,1,0,17,5,16,11,0,0,4,1
+19,10,2,3,1,31,1,1,0,12,1,12,43,0,0,4,1
+19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
+40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
+12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
+18,1,2,1,1,46,2,2,3,12,8,1,11,0,0,4,1
 13,7,3,3,1,23,1,1,2,30,3,5,0,0,0,4,1
-19,10,3,2,1,71,1,1,0,29,1,3,38,0,0,4,1
-14,5,0,3,1,68,1,1,0,3,1,3,43,0,0,4,1
-23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
-11,8,3,2,1,38,2,1,3,25,6,11,0,0,0,4,1
-13,5,3,3,1,36,1,2,0,29,5,10,33,0,0,4,1
-10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
-9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
-12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
-15,5,3,3,1,9,1,1,0,2,1,12,45,0,0,4,1
-22,5,2,2,1,46,2,1,3,3,6,11,11,0,0,4,1
-22,5,2,2,1,48,1,1,0,3,1,9,22,0,0,4,1
-34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
-44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
-17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
-43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
-35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
-30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
-22,1,2,2,1,9,2,1,3,30,8,5,11,0,0,4,1
-14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
-51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
-13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
-37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
-19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
-35,1,2,1,1,56,1,1,0,20,1,7,43,0,0,4,1
-13,8,2,2,1,31,2,2,3,26,8,5,0,0,0,4,0
-33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
-19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
-15,8,3,2,1,21,1,1,0,28,5,13,0,0,0,4,1
-15,0,3,2,1,41,2,1,3,26,8,7,11,0,0,4,0
-13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
-14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
-38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
-39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
+12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
+13,5,3,3,1,67,2,1,3,13,8,10,11,0,0,4,1
 28,5,2,2,1,18,1,1,0,13,10,2,11,0,0,4,1
-12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
-26,1,2,2,1,18,2,1,3,26,8,7,11,0,0,4,0
-12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
-26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
-14,5,3,3,1,47,1,1,0,28,1,3,47,0,0,4,1
-15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
-10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
-15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
-9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
-39,6,0,3,1,64,1,1,0,27,1,3,33,0,0,4,1
-33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
-17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
-25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+9,8,2,2,1,9,2,1,0,14,5,5,4,0,0,4,1
+33,6,2,1,1,61,1,1,3,9,6,14,0,0,0,4,1
+9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
+14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
+22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
+13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
+6,1,2,1,1,61,2,1,3,7,8,15,0,0,0,4,1
+33,10,2,2,1,27,1,1,0,28,5,11,11,0,0,4,1
+10,8,2,2,1,53,2,2,0,29,5,6,11,0,0,4,1
+30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
 12,0,3,2,1,2,2,2,3,19,8,13,0,0,0,4,1
-9,5,3,3,1,19,2,1,0,7,5,10,0,0,0,4,1
-8,9,3,2,1,59,1,1,0,8,3,0,0,0,0,4,1
-15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
-18,5,2,3,1,9,2,1,2,15,11,4,0,49,24,0,1
-10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
-11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
-40,5,0,3,1,56,1,1,0,11,3,10,0,0,0,4,1
-26,8,0,2,1,53,2,2,3,19,8,8,11,0,0,4,1
-35,1,2,2,1,9,2,2,3,26,8,6,0,0,0,4,0
-14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
-26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
-39,10,2,2,1,11,2,1,3,26,8,0,33,0,0,4,0
-22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
-17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
-33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
-29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
-13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-27,5,2,3,1,54,2,1,3,26,8,14,11,0,0,4,0
-28,5,3,3,1,35,2,1,3,23,8,16,11,0,0,4,1
-28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
-33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
-37,1,2,2,1,44,1,1,3,26,8,8,0,0,0,4,0
-30,1,2,2,1,69,2,1,3,26,8,3,11,0,0,4,0
-15,10,3,2,1,10,2,1,3,26,8,7,11,0,0,4,0
-28,10,2,2,1,55,2,1,3,7,6,13,11,0,0,4,1
-29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
+21,10,2,2,1,29,1,1,0,9,3,6,33,0,0,4,1
+30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
+18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
+9,12,3,2,1,13,1,1,2,18,3,7,0,4,1,0,1
+12,0,3,3,1,9,2,1,0,25,3,13,11,0,0,4,1
+8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
+36,5,2,3,1,9,1,1,3,26,8,2,11,0,0,4,0
+18,7,2,3,1,24,1,1,3,26,8,6,11,0,0,4,0
+17,10,2,2,1,2,1,2,0,4,1,14,11,0,0,4,1
+13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
+26,2,2,3,1,59,1,1,2,5,1,11,11,0,0,4,1
+27,1,2,2,1,12,2,1,3,14,11,12,0,0,0,4,1
 30,1,2,2,1,20,2,1,3,5,8,13,0,0,0,4,1
-22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
-20,10,2,3,1,25,1,1,0,26,1,3,11,0,0,4,1
-37,5,2,3,1,56,1,1,0,3,1,15,1,0,0,4,1
-27,0,0,3,1,19,1,1,0,20,5,9,33,0,0,4,1
-17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
-41,6,0,2,1,10,1,1,3,26,10,12,0,0,0,4,1
-18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
-72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
-11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
-42,8,3,1,1,38,2,1,3,6,8,15,11,0,0,4,1
-32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
-15,7,3,3,1,58,1,1,0,10,1,14,22,0,0,4,1
-21,10,2,2,1,9,2,1,3,26,8,6,0,0,0,4,0
-43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
-37,3,2,1,1,27,1,1,3,10,6,15,11,0,0,4,1
+18,0,2,2,1,71,1,1,0,11,3,8,0,0,0,4,1
+11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
+41,8,2,2,1,2,2,1,3,18,8,13,22,0,0,4,1
 19,5,2,3,1,46,2,1,0,11,3,8,11,82,30,1,1
-17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
-16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
-9,9,3,2,1,61,1,1,2,5,10,7,0,0,0,4,1
-25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
-7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
-22,1,3,2,1,37,1,1,0,10,10,16,0,0,0,4,1
-39,11,2,3,1,47,1,1,3,26,8,10,0,0,0,4,0
-8,1,2,2,1,0,2,2,0,8,5,2,22,0,0,4,1
-19,10,3,2,1,3,2,1,0,4,1,2,43,0,0,4,1
-13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
-22,10,0,2,1,38,1,1,0,27,1,13,11,0,0,4,1
-19,1,2,1,1,9,2,1,3,26,8,13,0,0,0,4,0
-24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
-36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
-13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
+31,5,2,3,1,9,1,1,2,8,11,7,0,0,0,4,1
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
+13,1,2,1,1,39,2,1,0,16,5,15,11,0,0,4,1
+10,0,3,2,1,7,1,2,3,18,6,8,11,0,0,4,1
+14,5,3,3,1,65,1,1,0,21,1,12,11,0,0,4,1
+28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
+17,9,3,2,1,24,2,1,0,7,3,13,22,112,33,0,1
+11,8,3,2,1,3,2,1,3,25,6,11,0,0,0,4,1
+15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
+24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
+28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
+17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
+38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
+12,0,2,2,1,49,2,1,0,13,10,11,33,0,0,4,1
+28,8,2,2,1,36,1,1,0,13,10,15,0,0,0,4,1
+15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
+36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
+22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
+27,0,2,2,1,70,1,1,0,27,1,9,11,0,0,4,1
+22,5,2,2,1,46,2,1,3,3,6,11,11,0,0,4,1
+24,5,2,3,1,43,1,1,0,10,10,13,11,0,0,4,1
+40,2,2,3,1,65,2,1,2,30,5,16,0,0,0,4,1
+25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
+41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
+19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
+23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
 27,10,3,3,1,9,1,1,0,9,1,13,33,0,0,4,1
-33,1,2,1,1,25,2,1,0,8,5,11,11,0,0,4,1
-13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
-26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
-12,5,3,3,1,10,1,1,0,25,3,3,11,0,0,4,1
-18,7,2,2,1,14,2,1,3,27,6,4,47,0,0,4,1
-41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
-9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
-15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
-21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
-8,10,3,3,1,19,1,1,0,11,3,8,0,0,0,4,1
-17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
-21,11,3,2,1,1,2,1,0,22,3,9,0,0,0,4,1
-13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
-29,1,2,2,1,36,1,1,0,1,3,8,0,0,0,4,1
-24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
-10,0,3,4,1,34,1,1,0,29,5,12,0,0,0,4,1
-19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
-16,1,2,2,1,23,1,1,0,27,1,15,11,0,0,4,1
-30,5,2,2,1,33,2,1,0,20,5,10,45,0,0,4,1
-24,8,2,2,1,65,1,1,0,20,4,16,0,0,0,4,1
+57,6,2,1,1,42,1,1,0,8,3,9,2,0,0,4,1
+11,7,3,3,1,14,2,1,3,23,8,4,11,0,0,4,1
 22,7,3,3,1,20,1,1,2,20,5,0,45,0,0,4,1
-39,6,2,2,1,27,2,1,3,26,8,7,11,0,0,4,0
-20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
-14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
-10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
-40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
-33,6,2,1,1,29,2,1,3,26,8,9,0,0,0,4,0
-42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
-20,5,2,3,1,22,2,1,0,1,5,10,0,0,0,4,1
+29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
 28,10,2,2,1,41,2,2,3,26,8,3,0,0,0,4,0
-19,10,3,2,1,31,1,1,0,7,3,15,22,0,0,4,1
-18,1,2,2,1,39,2,2,0,7,5,14,0,0,0,4,1
-42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
-18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
-22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
-24,8,2,2,1,17,2,1,0,11,7,13,33,0,0,4,1
-23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
-21,1,2,3,1,58,1,1,0,7,5,12,43,0,0,4,1
-28,5,0,2,1,9,1,1,0,19,1,13,38,0,0,4,1
-21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
-39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
-37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
-25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
-30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
-33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
-55,6,2,3,1,50,1,1,0,8,3,8,0,0,0,4,1
-22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
-26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
-14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
-9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
-26,8,2,2,1,54,1,2,3,12,6,15,0,0,0,4,1
-23,10,3,2,1,60,2,1,0,12,10,7,22,0,0,4,1
-16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
-14,5,3,3,1,25,1,1,0,5,1,2,11,0,0,4,1
-7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
-17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
-38,10,0,2,1,23,1,1,0,9,5,11,0,0,0,4,1
-34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
-16,10,2,3,1,66,2,1,0,5,1,11,33,0,0,4,1
-29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
-39,10,2,2,1,64,1,1,2,20,11,4,0,0,0,4,1
-21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
-24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
-28,10,2,2,1,13,2,1,0,13,10,5,11,0,0,4,1
-34,5,2,3,1,57,1,1,0,9,1,13,22,0,0,4,1
-21,1,2,1,1,13,1,1,0,22,3,15,0,0,0,4,1
-28,10,3,2,1,68,1,1,0,10,10,14,22,0,0,4,1
-41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
-37,1,2,2,1,25,1,1,0,13,1,14,0,0,0,4,1
-23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
-18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
-16,8,2,2,1,2,2,2,3,26,8,13,0,0,0,4,0
-15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-30,11,3,3,1,39,1,1,3,7,6,1,0,0,0,4,1
-16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
-20,2,3,3,1,30,1,2,3,26,8,5,0,0,0,4,0
-30,5,2,3,1,9,1,1,2,1,10,7,0,0,0,4,1
-42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
-28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
-18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
-11,1,2,2,1,66,2,2,0,1,5,12,0,0,0,4,1
-23,1,2,1,1,31,2,1,3,6,8,1,0,0,0,4,1
-22,1,2,1,1,9,2,1,0,13,5,1,33,0,0,4,1
-48,6,2,1,1,26,1,1,0,30,3,10,0,0,0,4,1
-21,9,3,3,1,27,1,1,0,11,3,11,0,0,0,4,1
-21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
+20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
+28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
+23,1,2,1,1,31,1,1,3,10,6,12,22,0,0,4,1
+20,10,0,3,1,23,1,1,3,30,6,15,11,0,0,4,1
+19,10,3,3,1,9,1,1,3,0,5,1,11,0,0,4,1
+24,11,0,2,1,22,2,1,3,23,8,14,11,0,0,4,1
+27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
+33,2,2,2,1,8,1,2,0,6,5,0,22,0,0,4,1
+10,1,2,2,1,22,1,1,0,9,5,11,45,0,0,4,1
+13,5,3,3,1,39,1,1,0,11,3,7,0,502,1,0,1
 26,7,2,2,1,63,1,1,3,26,10,6,0,0,0,4,1
-14,8,2,2,1,4,2,1,3,23,8,2,11,0,0,4,1
-28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
-33,1,2,1,1,9,2,2,0,17,5,15,22,0,0,4,1
-8,0,3,2,1,10,1,2,0,29,5,12,11,0,0,4,1
-25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
-15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
-26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
-32,5,2,2,1,13,1,1,0,7,5,10,0,0,0,4,1
-33,2,2,4,1,58,2,1,3,20,8,11,47,0,0,4,1
-31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
-22,5,2,3,1,40,2,1,2,15,11,4,0,0,0,4,1
-42,5,2,3,1,29,1,1,0,26,3,7,11,0,0,4,1
-13,10,2,2,1,13,2,1,0,5,5,10,22,0,0,4,1
-38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
-10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
-10,1,2,2,1,63,2,2,3,26,8,7,0,0,0,4,0
-17,1,2,2,1,16,1,1,0,1,5,15,0,0,0,4,1
-10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
-19,2,0,2,1,22,2,2,3,4,8,13,43,0,0,4,1
-23,0,2,2,1,55,2,1,3,29,8,1,11,0,0,4,1
-14,10,0,3,1,54,1,1,0,14,1,12,11,0,0,4,1
-13,5,0,3,1,12,2,1,3,18,8,3,33,0,0,4,1
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-6,1,2,1,1,61,2,1,3,7,8,15,0,0,0,4,1
-23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
-26,11,2,2,1,9,2,1,0,11,3,12,0,190,1,0,1
-33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
-27,5,2,3,1,61,1,1,3,12,6,12,22,0,0,4,1
-14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
-25,7,0,2,1,41,1,1,0,10,10,4,22,0,0,4,1
-35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
-23,1,2,1,1,23,2,2,3,26,8,1,11,0,0,4,0
-11,1,3,2,1,2,2,1,3,21,8,14,11,0,0,4,1
-12,9,3,3,1,39,1,1,0,13,10,5,0,0,0,4,1
-38,5,2,3,1,59,1,1,0,27,3,5,0,0,0,4,1
-15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
-37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
-15,8,2,2,1,66,2,1,3,26,8,9,0,0,0,4,0
-18,2,0,3,1,65,1,2,0,28,5,13,22,0,0,4,1
+53,6,2,1,1,50,1,1,0,7,3,15,38,0,0,4,1
+29,1,2,2,1,12,2,1,0,21,4,1,0,0,0,4,1
+14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
+49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+8,8,3,2,1,11,1,1,0,23,4,1,11,0,0,4,1
+12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
+21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
+12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
+11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
+18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
+37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
+23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
+20,8,0,2,1,58,1,1,3,26,6,12,0,0,0,4,1
+22,10,2,2,1,4,2,1,0,7,5,12,33,0,0,4,1
+14,8,3,2,1,2,2,1,3,13,8,12,22,0,0,4,1
 24,0,2,2,1,10,1,1,3,2,6,2,33,0,0,4,1
-31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
-34,6,2,4,1,36,1,1,3,2,6,12,0,0,0,4,1
-14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
-36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
+15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
+24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
 7,10,3,2,1,51,1,1,0,16,5,13,0,0,0,4,1
-12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
-42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
-19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
-22,5,3,3,1,9,1,1,0,27,1,12,43,0,0,4,1
-7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
-41,6,3,2,1,37,2,1,3,26,8,10,0,0,0,4,0
-32,5,3,3,1,36,2,1,3,26,8,2,0,0,0,4,0
-37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
-18,8,2,2,1,17,2,2,3,26,8,9,0,0,0,4,0
-18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
-12,0,3,2,1,28,2,1,3,27,6,14,2,0,0,4,1
-28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
-13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
-18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
-26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-9,8,2,2,1,9,2,1,0,14,5,5,4,0,0,4,1
-10,8,3,2,1,53,2,1,3,27,8,3,22,0,0,4,1
+29,3,3,3,1,43,1,1,3,3,6,16,43,0,0,4,1
+31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
 17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
-28,5,2,2,1,9,1,1,0,9,10,6,0,0,0,4,1
-24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
-6,9,3,2,1,67,2,1,3,26,8,6,11,0,0,4,0
-31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
-19,5,3,3,1,49,2,1,0,4,1,15,43,0,0,4,1
-31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
-11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
-14,10,3,2,1,60,2,1,0,12,10,12,0,0,0,4,1
-23,10,2,3,1,61,2,1,0,10,10,14,0,0,0,4,1
-21,10,3,2,1,45,1,2,0,23,5,15,33,0,0,4,1
-17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
-16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
-9,10,3,3,1,70,2,1,0,25,3,1,0,0,0,4,1
-32,5,3,3,1,13,1,1,0,5,1,15,22,0,0,4,1
-13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
-15,3,2,1,1,26,1,1,0,17,1,10,43,0,0,4,1
-21,8,2,2,1,54,1,1,2,11,3,4,22,0,0,4,1
-57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
-12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
-13,1,2,2,1,19,2,2,0,29,5,14,0,0,0,4,1
-35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
-14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
-38,1,2,1,1,67,1,1,0,5,1,2,33,0,0,4,1
-21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
-14,10,3,3,1,55,1,1,0,10,10,8,0,0,0,4,1
-13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
-31,8,2,2,1,25,2,1,0,8,10,12,11,7,1,0,1
-22,8,2,1,1,11,2,1,3,23,8,14,11,0,0,4,1
-53,6,2,2,1,35,1,1,0,8,3,6,0,0,0,4,1
-12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
-20,2,2,3,1,9,1,1,0,15,5,11,11,0,0,4,1
-12,0,2,2,1,49,2,1,0,13,10,11,33,0,0,4,1
-25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
+19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
+10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
+38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
+12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
+30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
+22,5,2,2,1,48,1,1,0,3,1,9,22,0,0,4,1
+6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
+31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
+12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
+19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
 14,8,2,2,1,71,2,1,0,12,10,10,11,38,1,0,1
-22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
-25,10,2,2,1,16,1,1,0,17,1,9,45,0,0,4,1
-21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
-27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
-38,1,2,2,1,31,2,1,3,21,8,13,11,0,0,4,1
-20,8,3,2,1,56,2,1,3,26,8,13,11,0,0,4,0
-39,5,2,3,1,9,2,2,3,12,6,5,0,0,0,4,1
-4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
+27,5,0,2,1,60,2,1,3,25,6,12,0,0,0,4,1
+10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
+55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
+9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
+9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
+29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
+41,3,2,1,1,9,1,1,0,26,1,1,0,0,0,4,1
+28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
+18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
+17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
+36,10,3,3,1,50,2,1,0,9,5,12,22,0,0,4,1
+10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
+23,1,2,2,1,17,2,1,3,6,8,2,33,0,0,4,1
+15,1,3,3,1,62,1,1,0,30,3,3,0,546,1,3,1
+34,5,2,3,1,57,1,1,0,9,1,13,22,0,0,4,1
+29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
+16,5,3,3,1,33,2,1,0,13,10,12,43,0,0,4,1
+38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
+34,6,0,3,1,43,2,2,3,7,6,13,33,0,0,4,1
+31,2,0,4,2,7,2,1,0,23,5,16,11,0,0,4,1
+21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
+11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
+39,11,2,3,1,47,1,1,3,26,8,10,0,0,0,4,0
+17,2,0,2,1,7,2,1,3,26,8,8,0,0,0,4,0
+13,7,2,3,1,70,1,1,0,14,1,11,11,0,0,4,1
+8,8,3,3,1,12,2,1,0,27,3,16,11,0,0,4,1
+36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+17,1,2,2,1,9,2,2,3,21,8,11,0,0,0,4,1
+23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
+7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
+16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
+25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
+22,6,2,1,1,9,2,2,3,26,8,6,0,0,0,4,0
+18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
+13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
+12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
 36,5,2,2,1,46,1,1,3,26,8,4,0,0,0,4,0
-11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
-42,6,0,2,1,27,2,1,3,26,8,7,0,0,0,4,0
-12,5,2,2,1,68,1,1,0,3,1,10,11,0,0,4,1
-27,1,2,2,1,19,2,1,3,28,8,1,0,0,0,4,1
-18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
-23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
-13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
-29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
-33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
-37,0,3,2,1,66,2,2,3,26,8,0,11,0,0,4,0
-14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
+20,1,2,1,1,24,2,1,2,10,10,12,0,83,1,1,1
+40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
+15,10,2,3,1,62,1,1,0,12,10,13,0,3,2,1,1
+17,10,0,2,1,56,2,1,3,23,8,12,1,0,0,4,1
 23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
-28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
-37,8,0,2,1,69,1,1,3,26,8,8,0,0,0,4,0
-28,11,2,2,1,32,1,1,0,3,1,12,11,0,0,4,1
-23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
-13,5,0,3,1,36,2,1,0,8,5,11,38,0,0,4,1
-31,5,2,2,1,20,2,1,0,10,10,1,11,0,0,4,1
-13,5,0,3,1,43,1,1,0,1,3,3,43,0,0,4,1
-26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+36,5,2,2,1,12,2,1,0,17,5,3,22,0,0,4,1
+18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
+5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+28,7,2,3,1,30,1,1,0,10,10,1,0,3,30,0,1
+14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
+35,11,2,4,1,15,1,1,3,26,8,9,22,0,0,4,0
+34,3,2,2,1,45,2,1,3,5,8,15,22,0,0,4,1
+15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
+25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
+37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
+22,10,3,2,1,56,2,1,3,23,8,11,22,0,0,4,1
+23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
+20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
+27,2,2,4,1,38,2,2,0,1,5,14,0,0,0,4,1
+8,0,3,2,1,10,1,2,0,29,5,12,11,0,0,4,1
+39,0,0,2,1,61,1,1,0,1,5,13,0,0,0,4,1
+18,10,3,2,1,33,2,2,3,26,8,8,0,0,0,4,0
+27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
+15,5,2,3,1,22,1,1,0,3,3,9,0,0,0,4,1
+10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
+18,5,3,3,1,26,1,2,0,12,10,13,0,0,0,4,1
+29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
+27,1,2,2,1,19,2,1,3,28,8,1,0,0,0,4,1
+55,6,2,3,1,50,1,1,0,8,3,8,0,0,0,4,1
+12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
+15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
+16,1,2,2,1,31,2,1,3,15,8,15,0,0,0,4,1
+20,0,3,2,1,39,1,1,3,26,6,14,11,0,0,4,1
+13,9,2,1,1,50,2,1,0,1,5,10,0,0,0,4,1
+10,0,3,2,1,2,1,2,0,1,5,13,11,0,0,4,1
+12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
+8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
+20,10,3,3,1,11,1,1,3,8,6,1,22,0,0,4,1
+10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
+25,1,2,1,1,37,2,1,0,12,10,7,11,0,0,4,1
+31,5,2,2,1,31,1,1,2,27,10,7,0,0,0,4,1
+14,5,3,3,1,47,1,1,0,28,1,3,47,0,0,4,1
+17,1,0,1,1,37,2,1,3,4,8,15,11,0,0,4,1
+16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
+24,1,3,1,1,20,2,1,0,17,5,11,46,0,0,4,1
+32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
+13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
+29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
+15,8,3,2,1,21,1,1,0,28,5,13,0,0,0,4,1
+35,1,2,2,1,9,2,2,3,26,8,6,0,0,0,4,0
+7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
+40,5,0,2,1,38,1,1,2,23,5,11,11,0,0,4,1
+10,1,3,2,1,2,2,1,3,30,8,6,11,0,0,4,1
+39,6,2,2,1,27,2,1,3,26,8,7,11,0,0,4,0
+15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
+28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
+33,7,2,2,1,70,2,1,0,15,5,3,33,0,0,4,1
+33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
+28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
+44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
+8,0,3,2,1,32,1,1,0,30,3,6,0,0,0,4,1
+17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
+18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
+7,1,3,1,1,54,2,1,3,16,6,11,11,0,0,4,1
+14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
+22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
+43,6,2,2,1,65,1,1,0,27,1,10,33,0,0,4,1
+19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
+36,8,2,4,1,44,1,2,3,12,6,14,0,0,0,4,1
+37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
+10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
+14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
+14,8,2,1,1,29,2,1,0,13,5,0,43,0,0,4,1
+25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
+18,7,3,3,1,14,1,1,0,24,5,14,22,0,0,4,1
+21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
+38,1,2,1,1,9,2,1,0,7,5,2,0,0,0,4,1
+8,0,3,1,1,1,2,1,3,15,6,12,22,0,0,4,1
+35,11,0,2,1,57,1,1,0,10,10,11,0,0,0,4,1
+8,5,3,3,1,62,2,1,3,20,8,5,11,0,0,4,1
+18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+42,1,2,4,1,10,2,1,3,26,8,7,0,0,0,4,0
+46,6,2,1,1,48,1,1,0,27,3,10,0,0,0,4,1
+42,6,0,2,1,27,2,1,3,26,8,7,0,0,0,4,0
+34,1,2,2,1,6,2,1,3,30,6,10,46,0,0,4,1
+24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
+22,0,2,2,1,40,1,1,0,24,5,2,38,0,0,4,1
+12,5,3,3,1,10,1,1,0,25,3,3,11,0,0,4,1
+13,1,2,2,1,64,2,1,3,10,8,0,33,0,0,4,1
+22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
+12,9,3,3,1,39,1,1,0,13,10,5,0,0,0,4,1
+14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
+11,5,2,3,1,18,2,1,0,25,3,14,11,0,0,4,1
+39,5,2,3,1,9,2,2,3,12,6,5,0,0,0,4,1
+7,5,2,2,1,28,2,1,0,15,5,13,0,0,0,4,1
+19,3,2,2,1,64,1,2,0,26,3,12,22,0,0,4,1
+14,10,2,3,1,50,2,2,0,12,10,8,0,32,12,0,1
+31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
+23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
+42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
+7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
+35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
+29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
+22,10,0,3,1,56,2,1,3,16,11,1,0,0,0,4,1
+21,1,2,1,1,13,1,1,0,22,3,15,0,0,0,4,1
+15,5,3,3,1,63,1,1,0,19,1,10,46,0,0,4,1
+17,10,3,3,1,54,1,1,0,13,10,15,11,0,0,4,1
+35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+14,1,3,3,1,62,1,1,3,4,10,15,0,0,0,4,1
+17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
+11,5,3,3,1,71,2,1,0,2,5,15,11,0,0,4,1
+28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
+13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
+20,5,3,3,1,59,2,1,3,27,6,10,33,0,0,4,1
+24,2,0,3,2,25,2,1,3,26,8,9,0,0,0,4,0
+17,3,3,2,1,10,2,1,3,26,6,9,11,0,0,4,1
+12,8,0,2,1,40,2,1,0,12,10,10,0,0,0,4,1
+13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
+25,8,2,2,1,3,2,1,0,20,5,13,45,0,0,4,1
+13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
+32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
+21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
+38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
+31,8,2,2,1,67,1,1,0,29,1,13,33,0,0,4,1
+12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
+37,1,2,2,1,44,1,1,3,26,8,8,0,0,0,4,0
+14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
+14,10,3,2,1,45,1,1,0,29,1,9,11,0,0,4,1
+29,1,2,1,1,1,2,1,3,26,8,6,0,0,0,4,0
+14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
+32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
+15,0,3,2,1,58,1,1,0,19,3,1,11,0,0,4,1
+14,8,3,2,1,57,2,1,0,12,10,4,11,0,0,4,1
+29,1,2,2,1,34,1,1,0,2,1,10,0,0,0,4,1
+16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
+8,11,3,2,1,12,1,1,0,30,5,11,0,0,0,4,1
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
+22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
+30,5,2,2,1,33,2,1,0,20,5,10,45,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+26,7,2,3,1,13,1,1,0,12,1,11,38,0,0,4,1
+37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
+22,1,3,2,1,37,1,1,0,10,10,16,0,0,0,4,1
+39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
+10,0,3,4,1,30,2,1,0,9,5,9,11,0,0,4,1
+12,10,3,2,1,68,2,1,3,7,8,2,38,0,0,4,1
+12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
+18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
+18,5,3,3,1,8,2,1,3,11,6,1,0,0,0,4,1
+22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
+29,11,2,1,1,39,1,1,0,13,10,10,11,0,0,4,1
+20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
+19,11,3,2,1,44,2,1,3,29,8,16,11,0,0,4,1
+22,5,2,3,1,61,1,1,0,4,1,13,33,0,0,4,1
+33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
+26,1,2,4,1,18,2,1,3,6,8,10,0,0,0,4,1
+27,1,2,1,1,31,2,1,3,26,8,9,0,0,0,4,0
+41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
+40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
+27,2,2,3,1,25,2,1,0,12,10,14,38,0,0,4,1
+29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
+20,2,3,3,1,30,1,2,3,26,8,5,0,0,0,4,0
+13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
+23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
+8,2,3,2,1,9,2,1,0,26,3,14,0,185,1,0,1
+32,10,2,2,1,47,2,1,3,26,6,10,38,0,0,4,1
+31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
+13,5,3,3,1,9,2,1,3,26,8,11,0,0,0,4,0
+23,1,3,2,2,11,2,2,0,28,5,11,0,0,0,4,1
+7,8,3,2,1,40,1,2,0,6,5,1,11,0,0,4,1
+12,10,3,2,1,32,2,1,3,26,8,12,11,0,0,4,0
+21,5,2,3,1,44,2,2,3,26,8,3,11,0,0,4,0
+21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
+18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
+42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
+51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
+35,3,2,1,1,10,1,2,3,26,6,12,0,0,0,4,1
+37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
+16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
+39,0,2,2,1,27,1,1,0,10,1,12,33,0,0,4,1
+13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
+14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
+39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
+12,1,3,2,1,71,2,1,3,11,6,13,11,0,0,4,1
+24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
+19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
+38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
+9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
+41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
+31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
+19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
+23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
+19,10,3,2,1,3,2,1,0,4,1,2,43,0,0,4,1
+34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
+26,1,2,2,1,9,1,1,0,23,5,12,11,0,0,4,1
+36,10,0,2,1,68,1,2,0,13,5,13,0,0,0,4,1
+15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
+43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
+34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
+38,7,2,1,1,4,2,2,3,26,8,7,11,0,0,4,0
+23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
+23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
+18,5,0,3,2,42,1,1,0,27,1,14,33,0,0,4,1
+21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
+13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
+17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
+8,0,2,2,1,63,2,2,3,27,6,3,11,0,0,4,1
+34,5,3,3,1,67,1,1,0,18,1,2,43,0,0,4,1
+23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
+42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
+13,11,3,2,1,35,2,1,0,11,3,14,0,0,0,4,1
+28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
+14,5,3,3,1,25,1,1,0,5,1,2,11,0,0,4,1
+31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
+36,1,2,1,1,5,2,1,3,26,8,8,0,0,0,4,0
+31,8,2,2,1,44,1,1,2,24,5,0,33,0,0,4,1
+14,10,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+17,5,2,3,1,22,1,1,0,24,5,9,33,0,0,4,1
+8,10,2,2,1,1,1,2,0,30,5,9,38,0,0,4,1
+29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
+15,10,3,3,1,17,2,1,0,9,5,1,22,0,0,4,1
+37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
+23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
+8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
+26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
+20,8,3,2,1,56,2,1,3,26,8,13,11,0,0,4,0
+21,7,3,3,1,47,1,1,3,9,6,0,0,0,0,4,1
+11,5,3,3,1,70,1,1,0,11,7,6,38,0,0,4,1
+39,10,2,3,1,9,1,1,3,5,8,14,11,0,0,4,1
+18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
+40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
+9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
+19,10,3,2,1,71,1,1,0,29,1,3,38,0,0,4,1
+13,11,3,1,1,20,1,1,0,23,4,13,11,110,1,1,1
+25,1,2,2,1,23,1,2,0,7,5,0,2,0,0,4,1
+51,6,2,1,1,29,1,1,0,2,3,9,11,0,0,4,1
+30,11,3,3,1,39,1,1,3,7,6,1,0,0,0,4,1
+33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
+32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
+22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
+34,6,2,4,1,36,1,1,3,2,6,12,0,0,0,4,1
+39,6,0,3,1,64,1,1,0,27,1,3,33,0,0,4,1
+16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
+38,5,2,3,1,59,1,1,0,27,3,5,0,0,0,4,1
+23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
+40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
+31,0,0,2,1,21,2,2,3,29,8,10,0,0,0,4,1
+17,5,2,3,1,68,2,1,3,11,6,7,22,0,0,4,1
+16,2,2,3,1,11,2,1,0,26,3,3,1,0,0,4,1
 30,5,2,3,1,25,2,1,3,4,8,12,11,0,0,4,1
-22,6,2,1,1,9,2,2,3,26,8,6,0,0,0,4,0
-32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
-12,1,2,2,1,37,2,1,3,28,8,5,11,0,0,4,1
+12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
+17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
+26,10,2,2,1,33,1,1,0,14,1,10,11,0,0,4,1
+42,0,2,3,1,20,1,1,0,12,1,15,43,0,0,4,1
+19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
+39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
+12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
+9,0,2,3,1,63,1,1,0,1,3,5,0,0,0,4,1
+18,5,2,3,1,9,2,2,3,26,8,9,0,0,0,4,0
+10,10,3,2,1,69,1,2,0,28,5,11,0,0,0,4,1
+22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
+20,1,2,2,1,20,1,1,3,7,6,3,47,0,0,4,1
+14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
+28,10,2,2,1,41,1,2,0,19,3,2,0,0,0,4,1
+10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+26,1,2,2,1,18,2,1,3,26,8,7,11,0,0,4,0
+17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
+19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
+25,7,0,2,1,41,1,1,0,10,10,4,22,0,0,4,1
+31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
+54,6,2,3,1,9,1,1,0,4,3,16,0,0,0,4,1
+8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
+15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
+33,11,2,1,1,13,2,1,0,17,5,6,0,0,0,4,1
+28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
+38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
+19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
+8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
+10,1,3,2,1,65,2,1,3,30,8,13,0,0,0,4,1
+13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
+19,5,0,3,1,22,1,1,0,6,5,10,38,0,0,4,1
+19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
+22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
+8,2,3,3,1,63,1,1,0,26,3,6,11,98,23,1,1
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
+32,11,2,1,1,63,1,1,3,26,6,10,0,0,0,4,1
+36,8,2,2,1,27,2,1,3,26,8,10,11,0,0,4,0
+14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
+21,8,2,3,1,18,1,1,0,30,3,15,22,0,0,4,1
+32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
+14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
+15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
+39,8,2,2,1,20,2,1,3,26,8,5,0,0,0,4,0
+17,1,3,2,1,14,2,2,3,26,8,6,0,0,0,4,0
+16,8,3,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+30,11,2,2,1,36,2,1,3,26,8,7,0,0,0,4,0
+37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
+29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
+13,5,2,3,1,61,1,1,0,28,1,2,0,0,0,4,1
+29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
+32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
+28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
+28,5,0,3,1,15,1,1,0,2,1,13,22,0,0,4,1
+9,5,3,3,1,33,1,1,0,26,3,15,0,0,0,4,1
+20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
+14,8,3,2,1,65,2,1,3,6,8,12,22,0,0,4,1
+28,5,2,2,1,9,1,1,0,9,10,6,0,0,0,4,1
+10,5,2,2,1,36,2,1,3,20,8,10,0,0,0,4,1
+21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
+24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
+9,5,3,1,2,15,1,1,0,23,4,10,22,0,0,4,1
+17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
+26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
+31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
+35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
+19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
+33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
+33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
+30,1,2,2,1,69,2,1,3,26,8,3,11,0,0,4,0
+41,5,2,3,1,36,1,2,0,6,5,14,22,0,0,4,1
+26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
+30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
+21,10,3,2,1,45,1,2,0,23,5,15,33,0,0,4,1
+19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
+14,10,3,2,1,9,1,1,0,9,1,11,33,0,0,4,1
+9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
+42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
+15,5,3,3,1,40,2,1,3,26,8,7,0,0,0,4,0
+32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
+31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
+34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
+12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
+36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
+33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
+22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
+22,10,0,2,1,38,1,1,0,27,1,13,11,0,0,4,1
+33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
+39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
+15,12,3,4,1,9,1,1,3,26,8,6,0,0,0,4,0
+41,6,3,2,1,37,2,1,3,26,8,10,0,0,0,4,0
+38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
+10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
+9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
+16,5,2,3,1,54,2,1,0,3,1,3,33,0,0,4,1
+35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
+13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
+17,1,2,4,1,51,2,1,3,12,8,14,11,0,0,4,1
+39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
+13,10,2,2,2,4,2,1,0,9,5,10,11,0,0,4,1
+23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
+33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
+15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
+28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
+38,1,2,1,1,67,1,1,0,5,1,2,33,0,0,4,1
+19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
+29,0,0,2,1,28,1,1,0,20,1,1,33,0,0,4,1
+36,6,2,2,1,54,2,1,3,26,8,4,0,0,0,4,0
+18,1,2,2,1,39,2,2,0,7,5,14,0,0,0,4,1
+30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
+41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
+17,6,3,1,1,48,1,1,3,26,8,4,0,0,0,4,0
+12,5,2,3,1,15,2,1,0,2,1,9,43,0,0,4,1
+13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+23,1,0,1,1,61,1,2,0,6,5,15,38,0,0,4,1
+35,10,0,1,1,18,2,1,3,5,8,10,0,0,0,4,1
+27,1,2,2,1,58,2,1,3,18,8,13,33,0,0,4,1
+15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
+24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
 31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
-49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
-7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
-15,8,3,3,1,45,2,1,0,15,5,3,43,0,0,4,1
-20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
-25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
-24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
+26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
+18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
+40,5,0,3,1,56,1,1,0,11,3,10,0,0,0,4,1
+25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
+22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
+36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
+22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
+42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
+11,10,3,3,1,29,1,1,0,11,3,3,0,0,0,4,1
+20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
+16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
+7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
+40,2,2,3,1,68,1,1,3,26,6,2,11,0,0,4,1
+32,5,2,2,1,13,1,1,0,7,5,10,0,0,0,4,1
+21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
+37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
+36,10,2,2,1,9,1,1,2,26,3,13,22,0,0,4,1
+8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
+18,11,2,3,1,46,1,1,3,12,6,16,33,0,0,4,1
+37,1,2,2,1,25,1,1,0,13,1,14,0,0,0,4,1
+33,5,2,3,1,31,2,1,0,13,5,11,0,0,0,4,1
+38,5,2,3,1,65,2,1,3,26,8,5,0,0,0,4,0
+11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
+29,8,2,2,1,46,1,2,0,29,1,16,11,0,0,4,1
+18,0,2,3,1,27,2,1,3,26,8,4,11,0,0,4,0
+40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
+19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
+33,1,2,4,1,24,2,1,3,26,8,11,0,0,0,4,0
+35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+29,10,2,2,1,40,1,1,0,8,3,7,0,0,0,4,1
+16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
+41,10,0,2,1,30,1,1,0,12,10,10,0,0,0,4,1
+41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
+32,1,2,1,1,46,2,1,0,28,1,10,11,0,0,4,1
+12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
+45,6,2,2,1,20,1,1,2,8,3,7,11,0,0,4,1
+33,5,2,2,1,13,2,1,3,26,8,13,0,0,0,4,0
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
+22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
+33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
+25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
+24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
+28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
+32,5,2,4,1,67,1,1,0,19,3,6,0,178,1,0,1
+34,5,2,3,1,14,1,1,0,14,1,1,33,0,0,4,1
+8,1,3,2,1,67,2,1,3,30,8,12,0,0,0,4,1
+42,1,2,1,1,52,1,1,0,9,1,12,33,0,0,4,1
+15,5,2,3,1,20,1,1,0,27,3,6,11,0,0,4,1
+42,5,2,3,1,29,1,1,0,26,3,7,11,0,0,4,1
+9,9,3,3,1,43,2,1,2,4,3,8,43,0,0,4,1
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
+40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
+26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
+21,1,3,2,1,9,1,1,0,14,5,14,33,0,0,4,1
+9,5,3,3,1,63,2,1,3,26,6,11,22,0,0,4,1
+18,8,3,4,1,35,2,1,3,7,8,10,0,0,0,4,1
+37,3,2,1,1,27,1,1,3,10,6,15,11,0,0,4,1
+27,11,2,2,1,26,1,1,2,11,3,14,0,0,0,4,1
+16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
+21,1,2,3,1,58,1,1,0,7,5,12,43,0,0,4,1
+14,10,3,2,1,60,2,1,0,12,10,12,0,0,0,4,1
+39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
+27,1,2,1,1,9,2,1,3,3,8,10,38,0,0,4,1
+28,5,2,3,1,29,2,1,3,26,8,6,0,0,0,4,0
+16,1,2,1,1,41,2,1,0,13,10,0,0,0,0,4,1
+17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+33,2,2,4,1,58,2,1,3,20,8,11,47,0,0,4,1
+42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
+23,1,2,1,1,18,2,1,3,27,6,11,11,0,0,4,1
+28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
+26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
+25,0,2,2,1,29,1,1,2,1,10,10,0,0,0,4,1
+21,7,2,3,1,33,1,1,3,3,6,12,38,0,0,4,1
+31,8,2,2,1,25,2,1,0,8,10,12,11,7,1,0,1
+22,1,2,2,1,53,1,1,0,1,3,5,11,552,1,3,1
+14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
+39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
+42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
+33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
+7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
+4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
+40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
+30,5,2,3,1,9,1,1,2,1,10,7,0,0,0,4,1
+15,8,2,2,1,66,2,1,3,26,8,9,0,0,0,4,0
+4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
+14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
+12,1,3,2,1,9,2,1,3,26,8,10,11,0,0,4,0
+12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
+37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
+11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
+8,5,3,3,1,9,2,1,3,23,8,7,11,0,0,4,1
+38,5,0,3,1,47,2,1,3,8,6,10,33,0,0,4,1
+17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
+17,1,2,2,1,10,1,1,3,9,10,4,11,0,0,4,1
+38,6,0,3,1,20,1,2,0,13,5,14,0,0,0,4,1
+14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
+20,2,2,3,1,9,1,1,0,15,5,11,11,0,0,4,1
+20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
+13,5,3,3,1,13,1,1,0,9,1,9,2,0,0,4,1
+15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
+22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
+25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
+34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
+15,10,3,2,1,37,1,2,0,27,1,10,11,0,0,4,1
+9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
+7,1,2,2,1,7,2,1,3,26,8,9,0,0,0,4,0
+34,3,2,1,1,44,2,1,0,8,5,2,0,0,0,4,1
+40,5,2,3,1,47,2,1,2,5,10,5,0,0,0,4,1
+25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
+6,1,3,2,1,21,1,2,0,9,3,3,11,0,0,4,1
+24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
+39,5,2,3,1,70,1,2,3,12,6,1,11,0,0,4,1
+35,1,2,1,1,56,1,1,0,20,1,7,43,0,0,4,1
+35,1,2,1,1,64,2,1,0,22,3,4,11,0,0,4,1
+28,10,3,2,1,68,1,1,0,10,10,14,22,0,0,4,1
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+27,5,2,3,1,61,1,1,3,12,6,12,22,0,0,4,1
+11,0,3,2,1,67,2,2,3,26,8,11,0,0,0,4,0
+10,0,3,4,1,34,1,1,0,29,5,12,0,0,0,4,1
+14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
+15,0,3,2,1,41,2,1,3,26,8,7,11,0,0,4,0
+14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
+11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
+35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
+29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
+10,7,2,3,1,9,2,1,0,25,3,11,22,106,30,0,1
+17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
+12,0,3,3,1,37,1,1,0,25,3,7,11,0,0,4,1
+12,7,2,3,1,33,1,1,0,25,3,10,0,0,0,4,1
+30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
+19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
+37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
+15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
+11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
+30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
+27,10,2,3,1,43,2,1,3,10,6,14,22,0,0,4,1
+25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
+13,5,3,3,1,23,1,1,0,3,1,10,22,0,0,4,1
+22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
+18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
+35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
+29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
+14,5,3,3,1,50,1,1,0,13,1,13,43,0,0,4,1
+33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
+42,6,2,2,1,34,1,1,0,3,1,10,11,0,0,4,1
+24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
+34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
+21,8,2,2,1,35,2,1,3,10,6,11,0,0,0,4,1
+38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
+31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
+11,1,2,2,1,66,2,2,0,1,5,12,0,0,0,4,1
+21,11,2,2,1,28,1,1,0,13,10,13,11,0,0,4,1
+31,8,2,2,1,50,1,1,3,26,8,7,11,0,0,4,0
+16,8,2,2,1,2,2,2,3,26,8,13,0,0,0,4,0
+6,10,3,2,1,46,2,1,3,7,8,15,0,0,0,4,1
+16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
+12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
+13,0,3,2,1,64,2,1,3,18,8,11,11,0,0,4,1
+17,5,0,3,1,44,2,1,3,29,8,1,0,0,0,4,1
+42,12,2,4,1,22,1,1,0,18,1,12,2,0,0,4,1
+21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
+20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
+10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
+30,5,2,3,1,23,2,1,0,18,3,7,0,0,0,4,1
+28,5,0,2,1,9,1,1,0,19,1,13,38,0,0,4,1
+6,9,3,2,1,67,2,1,3,26,8,6,11,0,0,4,0
+27,1,2,1,1,66,2,1,3,7,8,11,0,0,0,4,1
+13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
+23,2,2,2,1,68,2,1,0,9,10,15,0,0,0,4,1
+21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
+21,10,2,2,1,46,2,1,0,9,3,4,11,181,1,1,1
+9,9,2,2,1,13,2,1,0,7,5,13,11,0,0,4,1
+32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
+20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
+26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
+41,6,2,4,1,10,1,1,3,2,6,2,0,0,0,4,1
+15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
+27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
+14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
+32,5,3,3,1,36,2,1,3,26,8,2,0,0,0,4,0
+44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
+14,1,2,1,1,46,2,1,3,11,6,13,33,0,0,4,1
+10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
+42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
+13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
+10,8,3,2,1,53,2,1,3,27,8,3,22,0,0,4,1
+37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
+20,0,0,2,1,24,2,1,0,26,3,1,22,167,12,3,1
+27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
+8,1,3,1,1,46,2,1,0,13,5,11,11,0,0,4,1
+26,8,0,2,1,53,2,2,3,19,8,8,11,0,0,4,1
+36,10,2,2,1,12,1,1,0,23,5,10,22,0,0,4,1
+14,5,0,3,1,68,1,1,0,3,1,3,43,0,0,4,1
+28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
+5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
+13,10,0,3,1,9,1,1,0,19,1,11,43,0,0,4,1
+26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
+11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
+14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
+12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
+12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
+29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
+35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
+7,9,3,2,1,22,2,1,0,16,5,15,0,0,0,4,1
+14,5,0,3,1,28,1,2,0,6,5,14,33,0,0,4,1
+41,6,0,2,1,10,1,1,3,26,10,12,0,0,0,4,1
+27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
+25,10,2,2,1,16,1,1,0,17,1,9,45,0,0,4,1
+21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
+26,0,2,2,1,4,2,1,3,26,8,5,0,0,0,4,0
+15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
+8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
+9,0,0,2,1,49,2,1,0,7,5,12,0,0,0,4,1
+23,0,3,2,1,67,1,2,3,2,6,11,33,0,0,4,1
+25,7,2,2,1,17,2,1,0,13,10,10,0,0,0,4,1
+22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
+11,5,3,3,1,56,2,1,2,29,10,8,0,0,0,4,1
+10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
+26,5,2,3,1,12,1,1,0,19,1,10,22,0,0,4,1
+16,10,2,2,1,10,1,1,0,17,1,4,1,0,0,4,1
+41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
+27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
+36,6,2,2,1,16,1,1,2,17,5,4,11,0,0,4,1
+17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
+23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
+23,0,2,2,1,55,2,1,3,29,8,1,11,0,0,4,1
+16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
+23,8,2,4,2,9,1,2,0,23,5,2,33,0,0,4,1
+27,2,2,2,1,65,1,2,0,8,10,12,11,30,12,0,1
+31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
+17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
+15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
+18,5,2,3,1,59,1,1,0,11,3,8,0,0,0,4,1
+41,1,0,1,1,15,1,2,0,28,5,14,0,0,0,4,1
+7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
+28,3,2,1,1,71,1,1,3,26,8,6,0,0,0,4,0
+16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
+18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
+14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
+22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
+30,5,2,3,1,54,2,1,3,12,6,13,0,0,0,4,1
+16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
+57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
+23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
+16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
+25,1,0,1,1,42,1,1,0,12,10,2,0,0,0,4,1
+26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
+28,10,0,2,1,9,1,2,2,8,11,7,0,0,0,4,1
+27,0,2,2,1,18,2,1,3,15,8,15,22,0,0,4,1
+24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
+26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
+13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
+22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
+23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
+10,1,2,2,1,63,2,2,3,26,8,7,0,0,0,4,0
+23,1,0,2,1,54,2,1,3,5,8,4,22,0,0,4,1
 31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
-41,5,2,2,1,16,1,1,3,30,6,9,22,0,0,4,1
-29,3,3,3,1,43,1,1,3,3,6,16,43,0,0,4,1
-22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
-10,7,3,3,1,20,1,1,3,2,10,5,0,0,0,4,1
-35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
+25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
+22,5,2,3,1,40,2,1,2,15,11,4,0,0,0,4,1
+16,10,3,3,1,72,2,1,0,26,3,13,11,0,0,4,1
+41,5,0,3,1,32,2,1,2,21,11,7,0,0,0,4,1
+10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
+23,1,2,1,1,31,2,1,3,6,8,1,0,0,0,4,1
+29,1,2,4,2,20,1,1,0,17,1,9,22,0,0,4,1
+32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
+10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+17,10,2,2,1,49,2,1,0,9,10,14,0,0,0,4,1
+37,6,0,2,1,20,1,2,3,10,6,0,0,0,0,4,1
+13,1,2,2,1,61,2,1,3,9,6,12,33,0,0,4,1
+27,5,2,3,1,54,2,1,3,26,8,14,11,0,0,4,0
+25,10,0,4,1,26,2,1,3,26,8,4,0,0,0,4,0
+22,1,2,2,1,9,2,2,3,12,6,0,38,0,0,4,1
+29,1,2,2,1,67,1,1,0,29,1,13,11,0,0,4,1
+22,1,2,1,1,22,2,1,3,7,8,2,22,0,0,4,1
+23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
+9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
+15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
+41,0,2,2,1,9,2,1,0,1,5,16,0,0,0,4,1
+40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
+21,8,2,2,1,54,1,1,2,11,3,4,22,0,0,4,1
+13,1,2,2,1,19,2,2,0,29,5,14,0,0,0,4,1
+12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
+36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
+19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
+7,1,2,2,1,9,1,2,0,29,5,10,22,0,0,4,1
+15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
+10,5,3,3,1,42,1,1,0,18,3,4,11,0,0,4,1
+8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
+11,1,3,1,1,27,2,1,3,27,6,7,22,0,0,4,1
+28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
+51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
+19,5,2,3,1,55,1,1,2,8,3,10,33,0,0,4,1
+22,0,2,1,1,63,2,2,0,13,10,14,0,0,0,4,1
+10,11,3,3,1,9,2,1,3,26,8,3,11,0,0,4,0
+17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
+31,5,0,3,1,64,1,1,0,24,5,2,33,0,0,4,1
+14,7,3,3,1,44,2,1,0,9,10,10,0,0,0,4,1
+37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
+13,10,3,3,1,35,1,1,3,29,10,5,0,0,0,4,1
+29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
+18,5,2,3,1,32,1,1,0,22,3,8,11,0,0,4,1
+31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
+10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
+21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
+28,11,2,2,1,32,1,1,0,3,1,12,11,0,0,4,1
+13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
+41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
+25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
+13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
+27,11,0,2,1,40,2,1,3,21,8,13,0,0,0,4,1
+25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
+11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
+40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
+32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
+44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
+31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
+25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
+37,6,0,2,1,3,1,2,0,16,5,4,0,0,0,4,1
+40,0,2,2,1,18,2,1,2,21,5,12,4,0,0,4,1
+7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
+17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
+35,5,2,3,1,20,1,1,0,26,3,5,22,0,0,4,1
+7,5,3,3,1,31,1,1,0,8,3,10,0,0,0,4,1
+15,3,2,1,1,26,1,1,0,17,1,10,43,0,0,4,1
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+35,5,0,2,1,9,1,2,2,14,2,2,0,0,0,4,1
+14,8,3,4,1,30,1,1,0,8,10,1,11,0,0,4,1
+42,8,3,1,1,38,2,1,3,6,8,15,11,0,0,4,1
+27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
+33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
+31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
+25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
+37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
+39,10,0,3,1,71,1,1,0,13,1,15,33,0,0,4,1
+12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
+21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
+28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
+25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
+17,1,2,2,1,16,1,1,0,1,5,15,0,0,0,4,1
+16,1,2,2,1,14,2,1,3,13,8,15,0,0,0,4,1
+41,6,0,2,1,61,1,1,0,23,5,13,33,0,0,4,1
+19,5,3,3,1,30,1,1,3,26,6,1,0,0,0,4,1
+13,11,3,1,1,46,1,1,0,25,3,13,0,0,0,4,1
+31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
+19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
+8,0,3,2,1,31,1,1,0,10,3,12,22,0,0,4,1
+21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
+16,7,2,3,1,9,1,1,0,20,1,13,2,0,0,4,1
+23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+11,8,3,2,1,67,1,2,3,22,5,11,22,0,0,4,1
+32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
+10,9,3,2,1,62,1,1,0,23,4,11,11,0,0,4,1
+12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
 36,5,3,3,1,48,2,1,3,7,8,3,22,0,0,4,1
+17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
+29,1,2,2,1,36,1,1,0,1,3,8,0,0,0,4,1
+72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
+36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
+29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
+39,1,2,2,1,58,2,2,3,26,8,7,0,0,0,4,0
+23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
+11,5,2,3,1,38,1,1,3,20,8,15,11,0,0,4,1
+20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
+15,7,3,3,1,58,1,1,0,10,1,14,22,0,0,4,1
+25,1,2,1,1,45,1,1,0,11,7,5,0,0,0,4,1
+33,1,2,1,1,9,2,2,0,17,5,15,22,0,0,4,1
+53,6,2,2,1,35,1,1,0,8,3,6,0,0,0,4,1
+14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
+21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
+14,10,2,2,1,62,2,1,3,11,6,14,0,0,0,4,1
+11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
+19,8,3,2,1,34,2,1,3,22,6,0,22,0,0,4,1
+25,1,3,2,1,37,2,1,3,30,8,15,22,0,0,4,1
+33,1,2,2,1,63,2,1,3,5,8,15,0,0,0,4,1
+4,9,3,2,1,9,1,1,0,27,3,7,43,0,0,4,1
+26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
+18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
+17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
+38,10,0,2,1,23,1,1,0,9,5,11,0,0,0,4,1
+28,7,0,3,1,26,1,1,0,23,5,11,11,0,0,4,1
+15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
+18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
+13,7,2,3,1,21,1,1,0,25,3,6,11,0,0,4,1
+18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
 25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
-30,2,2,3,2,4,1,1,0,24,5,13,33,0,0,4,1
-25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
-40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
-12,0,2,2,1,68,2,1,3,21,8,13,22,0,0,4,1
 41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+10,7,3,2,1,56,2,1,0,30,3,12,33,0,0,4,1
+35,8,0,1,1,3,2,2,3,28,8,11,0,0,0,4,1
+6,1,2,2,1,62,2,1,3,18,8,15,22,0,0,4,1
+8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
+14,5,3,3,1,24,1,1,0,17,1,10,38,0,0,4,1
+43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
+21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
+36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
+23,1,2,1,1,23,2,2,3,26,8,1,11,0,0,4,0
+12,8,2,2,1,9,2,1,0,13,10,12,33,0,0,4,1
+26,8,2,2,1,16,2,2,3,26,8,7,0,0,0,4,0
+40,6,2,4,1,71,2,1,3,26,8,12,0,0,0,4,0
+6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
+13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
+14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
+21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
+21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
+8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
 39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
-19,10,2,3,1,15,2,1,0,4,3,13,0,0,0,4,1
-37,10,2,2,1,14,2,1,3,26,8,5,11,0,0,4,0
-12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
-17,5,2,3,1,22,1,1,0,24,5,9,33,0,0,4,1
-19,8,2,2,1,25,2,1,2,26,10,7,0,0,0,4,1
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
-13,0,3,2,1,64,2,1,3,18,8,11,11,0,0,4,1
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
-41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
-17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
-24,11,0,2,1,22,2,1,3,23,8,14,11,0,0,4,1
-39,5,2,3,1,43,1,1,0,13,10,11,22,0,0,4,1
-15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
-30,0,0,2,1,42,1,1,0,4,1,11,0,0,0,4,1
-32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
-35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
-18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
-13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
-36,8,2,4,1,44,1,2,3,12,6,14,0,0,0,4,1
-41,5,0,3,1,32,2,1,2,21,11,7,0,0,0,4,1
-18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
-9,9,2,2,1,13,2,1,0,7,5,13,11,0,0,4,1
-26,7,2,3,1,13,1,1,0,12,1,11,38,0,0,4,1
-14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
-16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
-35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
-57,6,2,1,1,42,1,1,0,8,3,9,2,0,0,4,1
-56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
-27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
-16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
-20,10,2,2,1,28,2,1,3,23,8,13,22,0,0,4,1
-32,11,2,1,1,63,1,1,3,26,6,10,0,0,0,4,1
-39,6,2,2,1,51,2,1,3,26,8,6,11,0,0,4,0
-20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
-11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
-13,10,2,2,2,4,2,1,0,9,5,10,11,0,0,4,1
-38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
-35,11,0,2,1,57,1,1,0,10,10,11,0,0,0,4,1
-18,5,3,3,1,26,1,2,0,12,10,13,0,0,0,4,1
-20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
-13,0,2,2,1,37,2,1,3,30,8,11,0,0,0,4,1
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
-13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
-7,10,3,2,1,10,1,2,0,29,5,11,11,0,0,4,1
+13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
+15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
+31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
+16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
+26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
+23,10,2,3,1,61,2,1,0,10,10,14,0,0,0,4,1
+13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
+19,10,2,3,1,55,1,1,0,11,7,7,0,0,0,4,1
+12,1,3,2,1,23,2,1,0,9,5,11,0,0,0,4,1
+12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
+25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
+26,0,0,2,1,20,2,1,0,5,5,5,11,0,0,4,1
+22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
+8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
+16,8,2,2,1,6,2,1,3,18,8,12,0,0,0,4,1
+14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
+41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+12,0,3,2,1,4,1,1,0,7,5,11,47,0,0,4,1
+35,0,0,2,1,12,2,1,3,26,8,9,0,0,0,4,0
+26,1,2,2,1,57,2,1,3,26,8,10,0,0,0,4,0
+21,9,3,3,1,27,1,1,0,11,3,11,0,0,0,4,1
+16,10,3,2,1,20,1,1,0,4,1,16,0,0,0,4,1
+12,5,2,2,1,68,1,1,0,3,1,10,11,0,0,4,1
+17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
+14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
+25,5,2,3,1,17,2,1,0,10,10,0,0,108,12,1,1
+18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
+21,1,2,2,1,15,2,1,2,24,11,5,0,0,0,4,1
+23,1,2,2,1,55,2,1,0,1,5,11,0,0,0,4,1
+25,5,3,3,1,51,1,1,0,10,1,15,43,0,0,4,1
+12,8,3,2,2,4,2,1,0,9,5,10,0,0,0,4,1
+13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
+38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
+9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
+12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
 23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
-14,5,3,3,1,54,1,1,0,22,3,10,11,0,0,4,1
-7,5,3,3,1,31,1,1,0,8,3,10,0,0,0,4,1
-16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
-41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
-19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
-31,10,3,2,1,2,2,2,0,8,10,10,0,0,0,4,1
-37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
-40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
-27,11,0,2,1,40,2,1,3,21,8,13,0,0,0,4,1
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
-15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
-14,10,3,3,1,14,2,1,0,25,3,6,11,0,0,4,1
-25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
-42,1,2,4,1,10,2,1,3,26,8,7,0,0,0,4,0
-33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
-36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
-21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
-18,5,2,3,1,59,1,1,0,11,3,8,0,0,0,4,1
-28,1,2,1,1,68,1,1,0,27,1,16,0,0,0,4,1
-11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
-18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
-20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
-8,7,3,2,1,55,1,1,0,29,5,11,0,0,0,4,1
-27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
-10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
-12,10,3,2,1,34,1,1,0,13,10,10,22,0,0,4,1
-37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
-21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
-16,1,3,1,1,0,2,1,0,6,5,14,33,0,0,4,1
-28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
-32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
-8,2,3,2,1,9,2,1,0,26,3,14,0,185,1,0,1
-29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
-22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
-25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
-19,10,3,2,1,12,1,1,0,18,3,4,0,0,0,4,1
-29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
-16,1,2,2,1,31,2,1,3,15,8,15,0,0,0,4,1
-19,8,2,2,1,19,2,1,0,7,3,4,11,0,0,4,1
-14,7,2,3,1,17,1,1,0,27,1,3,33,0,0,4,1
-35,1,2,1,1,47,2,1,0,12,10,12,0,0,0,4,1
-33,5,2,2,1,13,2,1,3,26,8,13,0,0,0,4,0
-8,2,3,3,1,63,1,1,0,26,3,6,11,98,23,1,1
-20,5,2,3,1,44,2,1,2,20,11,5,0,0,0,4,1
-33,2,2,2,1,8,1,2,0,6,5,0,22,0,0,4,1
-28,5,3,3,1,9,1,1,0,14,1,12,11,0,0,4,1
-15,10,3,3,1,17,2,1,0,9,5,1,22,0,0,4,1
-14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
-16,1,2,2,1,14,2,1,3,13,8,15,0,0,0,4,1
-22,10,0,3,1,56,2,1,3,16,11,1,0,0,0,4,1
-12,0,3,2,1,38,2,1,0,25,3,1,11,0,0,4,1
-53,6,2,1,1,50,1,1,0,7,3,15,38,0,0,4,1
-14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
-37,1,2,4,1,69,1,1,0,14,1,3,11,0,0,4,1
-12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
+22,2,0,2,1,37,2,1,0,9,5,12,22,0,0,4,1
+31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
+8,10,3,3,1,19,1,1,0,11,3,8,0,0,0,4,1
+11,11,3,1,1,55,1,1,0,21,4,14,0,0,0,4,1
+28,0,2,2,1,14,1,1,3,9,6,3,0,0,0,4,1
+24,8,2,2,1,17,2,1,0,11,7,13,33,0,0,4,1
+28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
+27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
+28,5,3,3,1,35,2,1,3,23,8,16,11,0,0,4,1
+17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
+10,10,3,2,1,16,1,1,0,19,3,13,0,0,0,4,1
+67,6,0,1,1,65,1,1,0,9,3,9,22,0,0,4,1
+18,2,0,3,1,65,1,2,0,28,5,13,22,0,0,4,1
 35,1,2,2,1,59,1,1,0,22,3,7,0,0,0,4,1
-21,1,2,2,1,15,2,1,2,24,11,5,0,0,0,4,1
-34,1,2,2,1,6,2,1,3,30,6,10,46,0,0,4,1
-18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
-28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
-22,1,2,2,1,53,1,1,0,1,3,5,11,552,1,3,1
-14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
-10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
-13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
-13,5,3,3,1,9,2,1,3,26,8,11,0,0,0,4,0
-22,10,2,3,1,51,2,1,3,26,8,5,0,0,0,4,0
-35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
-12,10,3,3,1,60,1,1,0,4,1,14,46,0,0,4,1
-10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
-41,5,2,3,1,36,1,2,0,6,5,14,22,0,0,4,1
-27,1,2,2,1,12,2,1,3,14,11,12,0,0,0,4,1
-25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
-9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
-41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
-41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
-23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
-14,10,3,2,1,55,1,2,0,21,4,13,0,0,0,4,1
-41,1,2,1,1,23,2,1,3,26,8,11,22,0,0,4,0
-31,5,0,3,1,64,1,1,0,24,5,2,33,0,0,4,1
-36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
-23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
-23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
-41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
-9,10,3,2,1,45,1,1,0,20,5,14,22,0,0,4,1
-24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
-10,1,2,2,1,22,1,1,0,9,5,11,45,0,0,4,1
-15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
-41,10,0,2,1,30,1,1,0,12,10,10,0,0,0,4,1
-15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
-14,5,3,3,1,32,2,1,0,13,5,12,22,0,0,4,1
-9,5,3,3,1,33,1,1,0,26,3,15,0,0,0,4,1
-35,5,0,2,1,9,1,2,2,14,2,2,0,0,0,4,1
-40,6,2,1,1,14,1,1,0,9,1,6,11,0,0,4,1
-26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
-13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
-21,10,2,2,1,46,2,1,0,9,3,4,11,181,1,1,1
-16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
-13,5,3,3,1,23,1,1,0,3,1,10,22,0,0,4,1
-26,1,2,4,1,18,2,1,3,6,8,10,0,0,0,4,1
-26,1,2,2,1,9,1,1,0,23,5,12,11,0,0,4,1
-35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
-35,1,2,1,1,64,2,1,0,22,3,4,11,0,0,4,1
-27,8,3,1,1,24,2,1,3,22,6,3,43,0,0,4,1
-27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
-40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
-44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
-28,0,2,2,1,28,1,1,0,18,1,9,43,0,0,4,1
-28,5,0,3,1,15,1,1,0,2,1,13,22,0,0,4,1
-11,5,3,3,1,70,1,1,0,11,7,6,38,0,0,4,1
-39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
+18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
+17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
+25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
+12,1,2,2,1,37,2,1,3,28,8,5,11,0,0,4,1
+9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
+41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
+18,10,2,2,1,31,1,1,0,20,1,15,33,0,0,4,1
+15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
+36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
+17,5,0,3,1,9,2,1,2,21,11,5,0,0,0,4,1
+17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
+18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
+13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
+35,1,2,1,1,47,2,1,0,12,10,12,0,0,0,4,1
+9,9,3,2,1,61,1,1,2,5,10,7,0,0,0,4,1
+18,7,2,2,1,14,2,1,3,27,6,4,47,0,0,4,1
+16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
+48,6,2,1,1,26,1,1,0,30,3,10,0,0,0,4,1
+17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
+13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
+13,7,3,3,1,18,2,1,3,7,8,12,0,0,0,4,1
+8,7,3,2,1,55,1,1,0,29,5,11,0,0,0,4,1
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+21,8,3,4,1,32,2,1,3,26,8,9,0,0,0,4,0
+10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
+18,8,2,2,1,17,2,2,3,26,8,9,0,0,0,4,0
+18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
+39,10,2,2,1,11,2,1,3,26,8,0,33,0,0,4,0
+39,0,2,2,1,21,1,1,0,22,3,9,0,0,0,4,1
+18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
 21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
-13,2,3,2,1,9,1,1,2,4,10,5,0,0,0,4,1
-17,1,3,2,1,14,2,2,3,26,8,6,0,0,0,4,0
-31,10,2,3,1,43,1,1,0,26,1,14,11,0,0,4,1
-11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
-17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
-8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
-38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
-35,10,0,1,1,18,2,1,3,5,8,10,0,0,0,4,1
-23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
-14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
-14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
-10,0,3,2,1,2,1,2,0,1,5,13,11,0,0,4,1
-22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
-23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
-40,5,2,4,1,11,2,1,3,26,8,7,22,0,0,4,0
+11,8,3,2,1,38,2,1,3,25,6,11,0,0,0,4,1
+20,1,3,3,1,35,2,1,3,12,6,4,1,0,0,4,1
+17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
+19,8,2,2,1,25,2,1,2,26,10,7,0,0,0,4,1
+12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
 9,1,3,2,1,31,2,1,3,21,8,13,0,0,0,4,1
-13,1,2,1,1,39,2,1,0,16,5,15,11,0,0,4,1
-31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
-21,1,2,2,1,51,2,1,3,26,8,8,0,0,0,4,0
-16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
-24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
-34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
-8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
-31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
-32,7,2,2,1,9,1,1,0,4,1,12,11,0,0,4,1
-14,10,2,2,1,62,2,1,3,11,6,14,0,0,0,4,1
-22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
-19,3,2,2,1,64,1,2,0,26,3,12,22,0,0,4,1
-23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
+10,9,3,2,1,70,2,1,3,20,8,5,0,0,0,4,1
+37,10,0,2,2,45,1,1,0,20,4,1,0,0,0,4,1
+24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
+34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
 35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
-18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
-38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
-27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
-10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
-19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
-28,10,3,3,1,48,1,1,0,9,1,10,45,0,0,4,1
-12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
-28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
-24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
-27,2,2,4,1,38,2,2,0,1,5,14,0,0,0,4,1
-7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
-16,10,3,2,1,20,1,1,0,4,1,16,0,0,0,4,1
-19,5,0,3,1,22,1,1,0,6,5,10,38,0,0,4,1
-12,10,3,2,1,68,2,1,3,7,8,2,38,0,0,4,1
+15,8,2,2,1,41,2,1,2,13,11,4,0,550,30,0,1
+27,2,0,3,1,4,2,1,3,4,8,10,0,0,0,4,1
+16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
+37,8,0,2,2,9,2,1,3,26,8,6,0,0,0,4,0
+40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
+38,1,2,2,1,14,1,1,3,2,6,15,0,0,0,4,1
+19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
+43,5,2,2,1,71,1,1,0,9,1,16,43,0,0,4,1
+28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
 30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
-23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
-13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
-9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
-12,7,2,3,1,33,1,1,0,25,3,10,0,0,0,4,1
-14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
-34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
-16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
-29,10,2,2,1,40,1,1,0,8,3,7,0,0,0,4,1
-15,5,2,3,1,22,1,1,0,3,3,9,0,0,0,4,1
-35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
-35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
-17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
-25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
-27,11,2,2,1,26,1,1,2,11,3,14,0,0,0,4,1
-17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
+20,5,2,3,1,59,1,1,0,22,3,7,0,0,0,4,1
+12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
+10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
+15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
+37,1,2,4,1,69,1,1,0,14,1,3,11,0,0,4,1
+13,5,3,3,1,36,1,2,0,29,5,10,33,0,0,4,1
+16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
+40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
+41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
+28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
+7,10,3,2,1,10,1,2,0,29,5,11,11,0,0,4,1
+35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
+25,6,2,2,1,68,1,1,2,23,11,3,0,0,0,4,1
+8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
+15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
+22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
+15,1,3,2,1,62,1,1,0,27,3,14,11,0,0,4,1
+30,11,2,2,1,46,2,1,3,26,8,6,11,0,0,4,0
+37,8,0,2,1,69,1,1,3,26,8,8,0,0,0,4,0
+17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
+16,0,2,2,1,19,1,1,0,26,3,12,11,0,0,4,1
+35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
+33,6,2,1,1,18,1,1,2,17,5,6,33,0,0,4,1
+13,5,2,3,1,66,1,1,0,12,1,13,5,0,0,4,1
+33,1,2,1,1,25,2,1,0,8,5,11,11,0,0,4,1
+12,0,3,2,1,28,2,1,3,27,6,14,2,0,0,4,1
+12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
+14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
 42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
-17,6,3,1,1,48,1,1,3,26,8,4,0,0,0,4,0
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
-41,6,0,2,1,61,1,1,0,23,5,13,33,0,0,4,1
-31,5,2,3,1,9,1,1,2,8,11,7,0,0,0,4,1
-10,9,3,2,1,62,1,1,0,23,4,11,11,0,0,4,1
-18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
-33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
+34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
+20,1,0,2,1,23,2,1,0,20,5,1,33,0,0,4,1
+18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
+39,6,2,2,1,51,2,1,3,26,8,6,11,0,0,4,0
+17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
+19,5,3,3,1,58,2,1,3,26,8,4,0,0,0,4,0
+27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
+7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
+24,8,2,2,1,65,1,1,0,20,4,16,0,0,0,4,1
 14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
-16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
-16,1,3,2,1,54,2,2,3,26,8,8,0,0,0,4,0
-9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
-23,1,2,2,1,55,2,1,0,1,5,11,0,0,0,4,1
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
-35,0,0,2,1,12,2,1,3,26,8,9,0,0,0,4,0
-30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
-33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
-15,1,3,1,1,15,2,1,3,21,8,1,11,0,0,4,1
-41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
-13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-31,5,2,2,1,31,1,1,2,27,10,7,0,0,0,4,1
-26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
-10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
-25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
-41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
-36,10,0,2,1,68,1,2,0,13,5,13,0,0,0,4,1
-37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
-33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
-6,1,3,2,1,21,1,2,0,9,3,3,11,0,0,4,1
-16,5,2,3,1,54,2,1,0,3,1,3,33,0,0,4,1
-33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
-28,7,0,3,1,26,1,1,0,23,5,11,11,0,0,4,1
-30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
-20,10,2,2,1,71,2,1,0,5,5,13,22,0,0,4,1
-12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
-29,1,2,1,1,1,2,1,3,26,8,6,0,0,0,4,0
-29,1,2,2,1,34,1,1,0,2,1,10,0,0,0,4,1
-18,1,2,1,1,58,2,1,3,13,8,12,11,0,0,4,1
-10,5,3,3,1,42,1,1,0,18,3,4,11,0,0,4,1
-28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
-22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
-12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
-33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
-29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
-29,0,2,2,1,35,2,1,0,14,5,3,11,0,0,4,1
-17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
-18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
-21,7,2,3,1,33,1,1,3,3,6,12,38,0,0,4,1
-23,8,0,2,1,67,2,1,0,11,3,15,0,0,0,4,1
-33,5,2,3,1,31,2,1,0,13,5,11,0,0,0,4,1
-32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
-21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
-17,2,0,2,1,7,2,1,3,26,8,8,0,0,0,4,0
-10,8,2,2,1,53,2,2,0,29,5,6,11,0,0,4,1
-32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
-21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
-17,10,2,2,1,49,2,1,0,9,10,14,0,0,0,4,1
-10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
-42,6,2,2,1,34,1,1,0,3,1,10,11,0,0,4,1
-14,8,3,2,1,57,2,1,0,12,10,4,11,0,0,4,1
-16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
-33,1,2,2,1,63,2,1,3,5,8,15,0,0,0,4,1
-25,8,2,2,1,3,2,1,0,20,5,13,45,0,0,4,1
-17,2,3,3,1,18,2,1,0,9,5,14,11,0,0,4,1
-12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
-29,10,2,2,1,67,1,2,0,13,10,15,0,38,12,1,1
-17,1,3,2,1,45,2,1,3,30,8,12,33,0,0,4,1
-14,10,2,3,1,50,2,2,0,12,10,8,0,32,12,0,1
-12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
-18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
-18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
-9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
-40,2,2,3,1,68,1,1,3,26,6,2,11,0,0,4,1
-13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
-11,9,3,3,1,52,1,1,0,6,5,14,38,0,0,4,1
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
-23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
-31,8,2,2,1,15,1,1,0,5,1,14,5,0,0,4,1
-10,10,3,2,1,69,1,2,0,28,5,11,0,0,0,4,1
-13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
-27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
-38,5,2,3,1,65,2,1,3,26,8,5,0,0,0,4,0
-8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
-12,10,2,2,1,51,2,1,3,27,8,12,0,0,0,4,1
-19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
-29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
-20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
-26,10,2,2,1,33,1,1,0,14,1,10,11,0,0,4,1
-35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
-10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
-24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
-39,0,2,2,1,27,1,1,0,10,1,12,33,0,0,4,1
-67,6,0,1,1,65,1,1,0,9,3,9,22,0,0,4,1
-7,5,2,1,1,21,2,1,3,22,6,14,0,0,0,4,1
-4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
-36,8,2,2,1,27,2,1,3,26,8,10,11,0,0,4,0
-21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
-21,5,2,3,1,34,2,1,0,3,1,3,0,0,0,4,1
-13,5,3,3,1,67,2,1,3,13,8,10,11,0,0,4,1
-15,5,3,3,1,48,1,1,2,12,1,11,43,0,0,4,1
-34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
-12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
-21,10,2,2,1,29,1,1,0,9,3,6,33,0,0,4,1
-29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
-15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
-37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
+7,0,2,4,1,41,2,1,0,14,5,0,46,0,0,4,1
+26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
+21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
+17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+15,11,2,2,1,1,1,1,0,23,5,10,22,0,0,4,1
diff --git a/DATA/Datasets/Bank/LR/DO_2.data b/DATA/Datasets/Bank/LR/DO_2.data
index a46cb1ac..8047810b 100644
--- a/DATA/Datasets/Bank/LR/DO_2.data
+++ b/DATA/Datasets/Bank/LR/DO_2.data
@@ -1,200 +1,200 @@
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
-49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
-28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
+39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
+33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
+27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
+17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
+12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
+21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
+16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
+15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
+11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
+10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
+29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
 17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
+30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
+24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
+33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
+13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
+13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
+40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
+12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
 29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
-31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
-9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
-7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
-22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
-11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
+32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
+16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
+27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
 34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
-16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
+14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
+19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
+40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
+16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
 21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
-30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
-11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
+26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
+31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
 18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
-16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
-14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
+25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
+42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
+37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
 22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
-31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
 51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
-12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
-17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
+28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
+26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
 18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
-12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
-28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
 12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
-19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
-40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
-25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
-24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
-42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
-29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
-21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
-13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
-11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
-32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
-27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
-40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
-16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
-35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
-12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
-34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
-16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
-42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
-14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
 15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
-27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
-30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
-13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
-21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
-35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
-10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
-21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
-23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
-23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
-17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
-14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
+12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
+12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
+13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
+10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
 32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
-33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
-22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
-36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
-25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
-35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
-14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
-17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
-23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
-18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
+10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
+17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
+31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
 13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
-5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
-44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
-17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
-26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
+35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
+42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
 39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
-16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
-26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
-20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
-27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
-35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
 30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
-14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
 15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
-11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
-20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
-41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
-13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
-38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
-28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
-13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
+30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
+28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
+14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
 29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
-23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
-29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
-10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
-20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
-26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
-18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
-17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
 10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
-10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
+28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
 12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
-35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
-14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
+18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
+26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
+12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
+72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
+23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
+25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
 15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
+21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
+49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
+17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
+20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
 22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
-17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
+14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
+25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
+35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
+16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
+37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
+36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
+40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
 18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
-37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
+26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
 15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
-11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
+41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
+17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
+37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
+12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
+16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
+12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
+12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
+40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
+19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
+23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
+29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
 14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
-25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
-40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
-8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
 31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
-27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
-40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
-72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
-12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
-42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
-6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
-29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
-41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
-15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
-21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
+13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
+14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
 15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
-24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
-7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
-12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
-18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
-33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
-37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
-10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
-20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
-24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
-21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
-15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
-36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
-20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
+11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
+12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
+42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
+28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
 13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
-25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
-18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
-40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
-42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
+20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
+21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
+35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
+23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
+26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
+44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
+19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
diff --git a/DATA/Datasets/Bank/LR/DO_3.data b/DATA/Datasets/Bank/LR/DO_3.data
index 666d2f2c..eda7dc67 100644
--- a/DATA/Datasets/Bank/LR/DO_3.data
+++ b/DATA/Datasets/Bank/LR/DO_3.data
@@ -1,300 +1,300 @@
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
-18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
-16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
-20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
-19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
-12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
-8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
-17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
-31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
-13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
+33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
+15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
+17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
+28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
+26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
+15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
+25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
+11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
+6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
 14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
-42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
-26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
-41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
-18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
-24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
-31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
-30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
-34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
-31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
-17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
-30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
-28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
-9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
-21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
-44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
-39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
-32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
-10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
-33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
-12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
-18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
-16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
-18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
-12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
-25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
+35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
 11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
-27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
-6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
+37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
+12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
+12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
+22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
+14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
 21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
-19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
-39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
-22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
-19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
-9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
+13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
+12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
+16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
+23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
+29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
+21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
+12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
+10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
+20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
+38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
+18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
+21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
 7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
-6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
-24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
-35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
-26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
-12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
-21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
-35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
-38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
-35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
-27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
-15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
+16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
+40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
 9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
-35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
 13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
-18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
-13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
-10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
-34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
-23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
-14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
-20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
-29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
-21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
-21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
-30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
-12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
-18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
-7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
-28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
-40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
 22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
-17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
-42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
 31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
-14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
-40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
-39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
-16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
-20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
-9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
-12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
-72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
-7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
-33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
-37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
 42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
-15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
-5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
 25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
-22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
-12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
-40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
-33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
-16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
-28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
-26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
-11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
-32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
-26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
-36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
-29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
-28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
-14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
-23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
-25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
+17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
+13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
+17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
+40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
+9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
+5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
+26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
+19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
+37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
 33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
-20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
-24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
-15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
-21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
-13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
-16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
-18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
-11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
-12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
+20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
+14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
+33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
+35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
+30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
+20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
+24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
+25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
+31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
+18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
+17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
 13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
-38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
-15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
-15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
-34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
-18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
-51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
+23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
+17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
+40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
+39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
+24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
+10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
+34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
+36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
+42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
+27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
+14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
+20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
 17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
-22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
-33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
 29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
-10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
+37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
+18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
+16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
+13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
+34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
+33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
+22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
 14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
-18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
-17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
-15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
-34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
-30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
-10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
-9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
-11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
-13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
-18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
-20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
-20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
-7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
-21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
-17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
-14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
+39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
+16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
+39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
+12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
+18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
 10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
+26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
+28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
 13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
-13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
-17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
-36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
-39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
-19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
-23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
-18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
-21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
-17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
-10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
-24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
-8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
-22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
-12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
-35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
-18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
-16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
-13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
-24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
+28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
+18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
 35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
-12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
-24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
+39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
+23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
+33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
+14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
+28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
 29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
-18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
-17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
-27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
-20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
-19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
-31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
-26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
-20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
+34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
+16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
+19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
+36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
+35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
+18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
 15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
-35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
+39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
+17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
+20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
+18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
+38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
+35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
+72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
+34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
+15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
+26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
+26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
+29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
+26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
+17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
+24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
+23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
+16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
+15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
+36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
+13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
+11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
+20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
+10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
+33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
+35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
+19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
+13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
+13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
+17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
+35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
 15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
+42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
+18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
+12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
+17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
+26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
+17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
+27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
+40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
+18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
 40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
-33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
-16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
-10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
-41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
-14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
-35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
-27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
+21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
 40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
-29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
+27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
+41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
 10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
-26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
-49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
+34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
+9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
 28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
-19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
-10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
-38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
-17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
+16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
+30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
 11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
-33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
-39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
-42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
-18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
-25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
-30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
-17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
-38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
-12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
-12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
-35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
-16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
-15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
-37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
-25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
-11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
-13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
-57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
-26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
+23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
+32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
 13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
-40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
-11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
-14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
-22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
-23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
 21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
-17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
-18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
-41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
-37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
-17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
-23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
-32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
-16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
-36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
-8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
-15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
+12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
+27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
+57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
+19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
+25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
+37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
+31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
+11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
+15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
+10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
+19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
+28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
+30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
+29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
+31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
 13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
-29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
+35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
+16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
+31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
+29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
+44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
+22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
+14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
+18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
+36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
+18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
+22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
+25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
+38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
+33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
+35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
+37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
+18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
+9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
+18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
+18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
+25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
+12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
+51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
+22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
+24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
+7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
diff --git a/DATA/Datasets/Bank/LR/DO_4.data b/DATA/Datasets/Bank/LR/DO_4.data
index 4c73098e..dc621f34 100644
--- a/DATA/Datasets/Bank/LR/DO_4.data
+++ b/DATA/Datasets/Bank/LR/DO_4.data
@@ -1,400 +1,400 @@
-35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
-13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
-13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
-15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
-21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
+31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
+25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
+38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
+35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
+31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
+12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
+33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
+34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
+41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
+14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
+18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
 15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
-16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
+14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
+35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
+10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
+35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
+28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
+37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
+11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
+37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
+23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
+34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
+34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
+18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
+27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
+35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
+12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
+8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
+11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
+20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
+27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
+17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
+39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
+38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
 16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
-21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
-25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
-14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
-24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
+22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
+11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
+30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
+35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
+41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
+12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
 17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
-21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
-20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
-12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
-26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
+15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
+33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
+33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
+13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
+32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
+22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
+28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
+17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
+18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
+39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
 15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
-24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
-21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
-21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
-33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
-42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
-40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
+26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
+31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
+35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
+12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
+21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
+42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
+37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
 34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
-18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
-43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
+26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
+18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
+7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
+41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
+32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
+40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
+5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
+15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
+14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
+26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
+9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
 16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
-25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
-39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
-14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
-18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
-20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
-12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
-11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
-29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
-21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
-41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
-18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
-18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
-35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
+12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
+21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
+12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
+10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
+16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
+6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
+21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
+19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
+40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
+13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
+51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
+16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
+15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
+11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
+17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
+27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
+14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
+24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
+9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
+37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
+26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
+18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
+20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
+10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
+5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
 18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
-12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
-49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
-14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
-13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
-24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
-15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
-15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
-11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
-9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
-26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
-20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
+33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
+16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
+10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
+8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
+21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
+40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
+11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
+51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
+14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
+21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
+14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
+26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
+24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
+32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
 7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
-40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
-40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
-41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
-31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
-17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
-17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
-42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
+36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
+35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
+11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
+8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
+9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
+18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
 20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
-30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
-15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
-23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
-29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
-21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
-39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
+19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
+16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
 16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
-20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
-27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
-17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
-26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
-42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
-40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
-37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
+17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
+18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
+12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
+12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
+10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
 14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
-32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
-32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
-18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
+18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
+25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
 12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
-37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
-36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
-15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
-8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
-18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
-14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
-21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
-16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
-13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
-10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
-29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
-36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
-39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
-5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
-41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
-28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
-21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
-24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
-10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
-12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
-17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
-10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
-9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
-36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
-22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
-20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
-36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
-9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
-13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
-13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
-17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
-22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
-31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
-42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
-12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
-12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
-21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
-41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
-19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
-24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
+34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
+13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
+29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
 7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
-8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
-9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
-33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
+24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
+19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
+15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
+10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
+15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
+22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
+19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
+24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
+15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
+12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
+15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
+16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
+22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
 11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
-7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
-22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
-6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
-26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
-33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
-6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
-13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
-37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
+15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
+18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
+29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
+42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
+43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
+28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
+13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
+13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
+31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
+40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
+21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
+10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
 22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
-18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
-34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
-41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
-35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
-51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
-12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
+30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
+32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
+22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
+17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
 29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
-19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
-40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
-18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
-15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
-16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
-8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
-39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
-15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
-20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
-27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
-72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
-15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
-29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
-27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
-23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
-14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
-9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
-34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
-39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
-18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
+17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
+21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
+12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
 17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
-24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
-13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
-27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
-16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
-13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
-17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
-8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
-6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
-10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
-35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
-8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
+42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
 37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
-41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
-12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
-31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
-32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
-17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
-37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
-18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
+37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
+21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
+29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
+21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
+30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
 13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
-12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
-51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
-38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
-26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
-22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
-15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
-18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
-26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
-25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
-16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
-10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
-38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
+25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
+13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
+36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
+19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
 38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
-37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
-30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
-35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
-30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
-28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
-18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
-41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
-16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
-17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
-18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
-39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
-39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
-13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
-22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
-35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
-11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
-37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
+41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
+10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
+23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
+12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
+29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
+24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
+33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
+17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
+8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
+21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
+16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
+36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
+15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
+25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
+22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
+14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
+6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
+13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
+39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
+13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
+16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
+31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
+25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
+13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
+15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
+21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
 9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
-14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
-40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
-16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
-28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
 30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
-7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
-15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
-15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
-16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
-21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
-11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
-37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
-21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
-29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
-14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
-12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
-31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
-22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
-42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
-31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
-35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
+39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
+16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
+30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
+13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
+12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
+29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
 20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
+8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
+23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
 35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
-28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
-26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
 28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
-16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
-14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
-24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
-27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
-30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
-19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
-17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
-25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
-14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
-42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
-35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
+22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
+19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
+18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
+18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
+17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
+34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
+27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
+12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
+40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
+28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
+18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
+29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
+20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
+41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
 14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
-22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
+25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
+13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
+18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
+29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
 19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
-25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
-15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
-14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
-11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
-18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
-35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
+26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
+39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
+31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
+35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
+26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
+20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
+29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
+20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
+13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
+37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
+36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
+24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
+35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
+22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
+41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
+23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
+40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
+21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
+24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
+42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
+14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
+9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
+10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
+34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
+29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
+21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
 57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
-9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
-12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
-28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
-31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
-16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
 23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
-35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
-35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
+33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
+11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
+14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
+17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
+9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
+18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
+16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
+40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
 17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
-33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
+18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
+24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
+25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
+36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
 24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
+33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
+26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
+7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
 19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
+16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
+20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
+35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
 7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
-14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
-16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
-20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
-14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
-22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
-36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
-32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
-13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
-12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
-22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
-23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
-14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
+13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
 12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
-10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
-17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
+17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
+18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
+35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
 10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
-21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
-26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
-16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
-19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
-18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
-20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
-34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
-18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
-44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
-23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
-28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
-14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
-18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
-29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
-33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
-27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
-25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
-12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
-11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
-26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
-23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
-21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
-29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
-19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
-12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
-17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
-19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
-40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
-24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
-13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
-29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
-19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
-37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
-11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
-15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
-31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
-25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
-19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
-17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
-34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
-38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
-18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
-40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
-21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
-33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
-5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
-26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
-17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
-12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
-19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
+17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
+16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
+16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
diff --git a/DATA/Datasets/Bank/LR/DO_5.data b/DATA/Datasets/Bank/LR/DO_5.data
index ca35469e..444be733 100644
--- a/DATA/Datasets/Bank/LR/DO_5.data
+++ b/DATA/Datasets/Bank/LR/DO_5.data
@@ -1,500 +1,500 @@
-19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
-23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
-13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
-39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
-13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
-23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
-12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
-12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
-35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
-26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
-16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
-12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
-14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
-26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
+17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
+17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
+15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
+41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
+11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
+19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
+31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
+34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
+37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
+32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
 15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
-27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
-10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
-22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
-17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
-18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
-32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
-44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
-28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
+24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
+40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
+6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
+9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
+29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
+10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
+19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
+10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
+39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
 29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
-14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
+18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
+10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
+39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
+22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
+9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
 14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
-40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
-6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
-12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
-18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
-28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
 10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
-12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
-18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
-33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
-38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
+14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
+12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
+21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
+12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
+12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
+17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
+18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
+9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
+19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
+22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
+35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
+10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
+20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
+21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
+42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
+19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
+24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
+24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
+23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
+11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
+57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
+26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
+39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
+12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
+20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
+35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
+15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
+13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
+15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
+26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
+13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
+12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
+16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
+40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
+10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
+34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
+27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
+29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
+27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
 20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
-10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
-18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
-21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
-15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
-14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
+41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
+41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
+16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
+28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
+18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
+41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
+7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
+23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
 17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
-34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
-36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
+15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
+16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
+16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
+22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
 14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
-34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
-39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
-17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
-26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
-23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
-39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
+33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
+20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
+12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
+28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
+15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
+14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
+13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
+38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
+13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
+37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
+30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
+8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
+17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
+22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
+14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
+28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
+26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
+36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
+40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
+35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
+23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
+22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
+15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
+13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
+19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
+16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
+51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
+12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
+30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
+12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
+18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
+13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
+15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
+21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
+24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
+16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
+32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
+32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
 14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
-29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
 34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
-21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
-36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
-20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
+35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
+16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
+32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
+14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
+29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
 15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
-14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
-31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
-41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
+12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
+7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
+12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
+24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
+9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
+39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
+11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
+27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
+35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
 8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
-10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
+35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
+40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
+14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
+19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
+26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
+21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
+29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
+42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
+19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
+29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
+11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
+42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
+24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
+36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
+17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
+31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
+24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
+36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
+22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
 16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
+12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
+16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
+9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
+18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
+23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
 23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
-27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
-24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
-39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
-21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
-24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
-10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
-28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
-15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
-14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
-42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
-17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
-16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
-32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
-16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
-13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
-43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
-20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
-8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
-30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
-34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
-25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
-26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
-27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
-15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
-42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
-18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
-5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
-36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
-42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
-21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
-7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
-41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
-14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
-15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
-13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
-15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
-37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
-29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
-23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
-35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
-12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
-9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
-38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
-31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
+41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
+35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
 38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
-12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
-33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
-24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
-14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
-11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
-31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
+13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
+14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
+72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
 14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
-17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
-39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
-19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
-12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
-26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
-17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
-14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
-13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
-15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
-11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
-28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
-13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
-10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
-24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
-36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
-12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
-23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
-21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
-28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
-23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
-40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
-37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
-17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
-33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
-28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
-35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
-22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
-14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
-42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
-20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
-38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
-17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
-9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
-35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
-34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
-21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
-14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
-9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
-24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
-27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
-20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
-31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
-29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
-18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
-37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
-28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
-33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
-25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
-22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
-19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
-21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
-20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
+14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
+26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
+24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
+20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
+18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
+18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
+23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
 25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
-21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
+49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
+32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
+18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
+18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
+41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
 10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
-8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
-25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
-21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
-72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
-10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
-14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
-9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
-7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
-38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
-18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
-35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
-37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
-26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
-14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
-29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
-18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
-13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
-25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
-13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
-16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
-21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
-24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
-26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
-35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
-33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
-32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
-29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
-10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
-14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
-34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
-23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
-13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
-16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
-19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
-36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
-29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
-18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
-9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
-14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
-7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
-16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
-29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
-13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
-36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
-40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
-12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
-15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
-33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
-19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
-15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
-9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
-29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
-57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
-8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
-41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
-23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
-19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
-11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
-20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
-19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
-39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
-23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
-17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
+43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
 19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
-21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
-15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
-33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
-25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
-12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
-22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
-20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
-38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
-18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
-22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
+19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
+17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
+40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
 6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
-12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
-8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
-19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
-22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
-34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
-31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
-35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
-17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
-32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
-18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
-5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
-24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
-17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
+9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
+10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
+31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
+31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
+35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
+23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
+15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
+21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
 17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
-30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
-21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
-40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
-27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
-14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
-29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
-17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
-29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
-9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
-42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
-24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
-15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
-18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
+18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
 40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
-19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
-34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
-34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
-15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
-10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
-18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
-28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
-35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
+25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
+13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
+24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
+35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
+30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
+34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
+5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
 41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
-8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
-32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
-13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
-37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
-21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
-36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
-17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
-27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
-11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
+18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
+35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
+41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
+39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
 21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
-21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
-15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
-37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
-19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
-18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
-51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
-19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
-24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
-17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
-11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
-12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
-22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
-24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
-26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
-14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
-51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
-16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
-26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
-31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
-12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
-31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
-16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
-22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
-18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
-35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
-12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
-21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
-41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
-29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
-17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
-11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
-20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
-26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
-9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
-12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
+17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
+14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
+24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
+9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
+13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
 8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
-19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
-15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
-38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
-32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
-15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
+13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
+31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
+28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
+24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
+15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
+38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
+18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
+25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
+16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
+40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
+17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
 36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
-16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
-17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
+20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
+35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
+18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
 34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
-41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
-13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
-16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
-12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
-25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
-18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
+31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
+11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
+34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
+17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
+32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
+33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
+10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
+37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
+23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
+32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
+44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
+25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
+14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
+10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
+37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
+32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
+21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
+18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
+25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
+15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
+9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
+15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
+8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
 22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
-21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
+17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
+36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
+8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
+38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
+15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
+21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
+29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
+15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
+9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
+28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
+33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
+21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
+18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
+36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
+19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
+14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
+33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
+9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
 10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
-12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
-18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
-13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
-35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
-24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
-13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
-24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
-13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
-24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
+28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
+15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
+34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
+13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
 10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
-35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
-13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
-16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
-31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
-26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
-35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
-22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
-10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
-23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
-9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
-36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
-9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
-7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
-18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
-22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
-28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
 15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
-31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
-11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
-18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
-12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
+16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
+22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
+34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
+31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
+25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
+17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
+35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
+29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
+11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
 16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
-17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
+21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
 16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
+43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
+12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
+21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
+14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
+15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
+29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
+33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
+26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
+31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
+12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
+31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
+39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
+18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
+16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
+8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
+20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
+9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
+33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
+7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
+8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
+29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
+22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
+37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
+11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
+11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
+42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
+17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
+6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
+42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
+19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
+10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
+37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
+39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
 43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
-37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
-13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
-40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
-11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
+36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
+23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
+16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
+22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
+34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
+34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
+29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
+42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
+17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
+14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
+16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
+19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
+18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
+35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
+24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
+21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
+29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
+21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
+21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
+17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
+18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
+22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
 33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
-42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
+9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
+21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
 37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
+25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
+26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
+15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
+35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
+36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
+18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
+33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
+7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
+42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
+29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
 13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
-41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
-30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
-22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
-21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
-11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
-9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
-40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
+40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
+13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
+11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
+14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
+29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
+22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
+28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
+30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
+16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
+26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
+8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
+10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
+27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
+37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
+24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
+14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
+27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
+25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
 20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
-12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
-41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
-24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
-16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
-15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
-33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
-18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
-9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
-32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
-7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
-16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
-16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
-36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
-39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
-17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
-32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
+38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
+14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
+12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
+13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
+17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
+42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
+37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
+23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
+19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
+18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
+20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
+36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
+21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
+13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
 16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
-42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
-12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
-19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
-32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
-13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
-35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
-20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
-10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
-22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
-29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
-37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
-18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
-29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
-25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
-37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
-8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
-31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
-40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
-35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
-27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
-21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
-20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
-28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
+18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
+17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
diff --git a/DATA/Datasets/Bank/LR/DO_6.data b/DATA/Datasets/Bank/LR/DO_6.data
index 464961f7..25c27ef7 100644
--- a/DATA/Datasets/Bank/LR/DO_6.data
+++ b/DATA/Datasets/Bank/LR/DO_6.data
@@ -1,600 +1,600 @@
-13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
-12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
-15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
-34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
-22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
-40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
-13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
-15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
-25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
-16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
-28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
-22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
-14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
-34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
-16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
-17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
-13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
-14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
-19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
-31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
-24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
-27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
-26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
-18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
-40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
-19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
-14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
-35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
-12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
-11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
-31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
-17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
-14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
-18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
-11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
-25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
-35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
-17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
-39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
-32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
-20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
-20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
-40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
-6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
-20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
-14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
-14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
-7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
-20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
-29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
-18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
-11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
-29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
-49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
-23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
-9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
-17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
-42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
-21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
-42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
-13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
-41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
-17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
-21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
-19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
-21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
-10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
-15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
-21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
-38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
-31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
-51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
-15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
-29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
-13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
-18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
-13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
-14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
-34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
-33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
-11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
-8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
-15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
-7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
-21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
-16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
-15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
-13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
-8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
-9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
-22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
-36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
-23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
-36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
-7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
-18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
-22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
-22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
-16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
-20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
-13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
-23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
-29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
-40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
-25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
-37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
-8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
-6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
+30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
+33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
+8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
+20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
 22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
-28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
-14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
-20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
-33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
+51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
+32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
+21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
 41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
-18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
-30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
-21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
-12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
-30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
-13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
-18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
-38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
-30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
-25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
-24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
-13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
-23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
-29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
-35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
-37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
-17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
-12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
-29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
-36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
-12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
-21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
-37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
-41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
-10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
-31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
-22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
-28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
-39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
-39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
-15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
-17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
+33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
+28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
+7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
+16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
+14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
 10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
 23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
-12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
-20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
-42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
+6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
+9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
+37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
+33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
+29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
+33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
+38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
+18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
+23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
+22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
+21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
+17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
+20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
+25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
+14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
+8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
+17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
+15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
+21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
+25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
+18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
+16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
+33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
+9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
+18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
+26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
+42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
+28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
 15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
-51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
-10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
-19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
-9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
-28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
+34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
+35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
+16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
+34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
+17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
+13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
+17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
+12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
+6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
+14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
+27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
+36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
+11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
+14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
+34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
+37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
+24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
+13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
+35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
+21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
+16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
+12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
+15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
+39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
+57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
+35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
+13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
+22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
+19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
+43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
+28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
+18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
+29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
+21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
+14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
+37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
+30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
+24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
 13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
-17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
+16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
+22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
+9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
+22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
 26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
-43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
-19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
-23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
-34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
-29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
-21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
-14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
-13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
-13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
-19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
-33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
-28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
-23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
-29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
-30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
-34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
-11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
-19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
-10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
-17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
-17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
-32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
-34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
-29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
-13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
-18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
-21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
-16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
-8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
-12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
-36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
-29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
-33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
-35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
-43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
-33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
-22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
-22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
-21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
-16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
-21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
-41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
 24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
-16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
-24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
-40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
-40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
-28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
-35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
-42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
-16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
-40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
+31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
+15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
+36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
+10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
+7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
+22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
+36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
 24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
-33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
-23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
-28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
-31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
-28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
-10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
-26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
-14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
-8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
-26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
-7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
-15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
+42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
+10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
+21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
+27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
+38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
+19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
+28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
+13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
+14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
+12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
+21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
+40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
+39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
+20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
+19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
+11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
+36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
+24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
+36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
 18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
-29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
-29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
-10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
-5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
-27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
-17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
-40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
-24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
-24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
-13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
+35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
+21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
+39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
+43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
+33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
+19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
+18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
 42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
-16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
-32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
-34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
+13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
 19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
-27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
-41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
-20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
+22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
+22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
+33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
+30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
+15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
+20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
+13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
+29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
+18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
+29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
+9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
+17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
+18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
+12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
+29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
+15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
+13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
+42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
+37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
+17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
 21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
-37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
-14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
-16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
-9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
-12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
-16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
-26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
-18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
-22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
-12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
+19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
+12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
+19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
+12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
+16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
+33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
+10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
+16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
+28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
+24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
+40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
+17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
+29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
+10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
+19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
+26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
+9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
 32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
-35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
-41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
-9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
-28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
-39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
-32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
-32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
-16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
-38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
-19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
-19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
-42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
-9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
-12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
+21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
+39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
+15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
+18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
+14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
+29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
+37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
 17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
-15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
-17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
-26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
-28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
-13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
+27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
+19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
+16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
+20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
+10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
+20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
+18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
+26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
+10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
+35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
+12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
 33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
+32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
+28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
+40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
+7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
+37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
+35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
+8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
+16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
+18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
+25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
+32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
+24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
+11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
 42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
-20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
-29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
-12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
-20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
-13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
-39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
-38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
+14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
+17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
+26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
+24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
+39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
+9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
+34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
+16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
+26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
+31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
+19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
+35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
+24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
+30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
+29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
+25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
+12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
+8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
 10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
-19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
-22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
-17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
-19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
-31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
-14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
+22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
+30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
+37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
+18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
+20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
+12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
+19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
+7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
+20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
+22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
+10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
+18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
+12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
+41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
+18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
+29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
+17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
+38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
+29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
+16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
+14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
+18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
+18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
 19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
-21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
-13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
-16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
-8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
-11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
-20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
-16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
-24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
-41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
-9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
+13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
+12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
+15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
+18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
+8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
+31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
+42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
+35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
+17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
 28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
-37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
-21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
-12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
-10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
-26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
-26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
+31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
+49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
+37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
+51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
+35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
+9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
+25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
+44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
+33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
+24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
+14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
+22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
+26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
+6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
+38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
+19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
+8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
+23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
+12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
+41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
+15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
+17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
+32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
+7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
 12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
-21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
-35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
-22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
-15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
-24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
-28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
-28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
-14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
+42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
+26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
+24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
+8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
+33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
+9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
+8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
+14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
+19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
+37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
+32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
+40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
+30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
+21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
+21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
+23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
+22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
+28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
+5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
+22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
+18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
+18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
+13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
+27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
+41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
+14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
+17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
+23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
+20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
 32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
-18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
-23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
-16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
-36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
-35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
-31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
-12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
-14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
-16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
-18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
-7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
-18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
-28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
-18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
-23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
 7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
-18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
-9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
-19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
-16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
-16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
-14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
-34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
-16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
-22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
-14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
-17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
-33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
-37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
-9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
 24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
-8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
-24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
-24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
-22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
-12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
-37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
-24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
-15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
-15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
-25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
-27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
-40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
-12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
-37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
+10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
+24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
+23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
 4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
-35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
-37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
-40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
+16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
+31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
+34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
+19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
+16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
+14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
+42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
+5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
+7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
+38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
 15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
-30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
-12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
-18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
-17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
-42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
-37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
-12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
-12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
-26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
-26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
-14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
-16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
-14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
+12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
+9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
+34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
+38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
+40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
+33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
+20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
+38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
+20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
+28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
+14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
+39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
+16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
+12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
+13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
+15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
+15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
+29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
+36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
 11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
-12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
-16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
-14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
-26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
-10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
-32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
-5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
-41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
-14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
-39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
-9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
-38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
-18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
-29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
-11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
-19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
-21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
-26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
-21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
-6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
-19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
+16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
+29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
+29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
+13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
 37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
-41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
-9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
+12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
+14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
+14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
+27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
+11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
+21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
+33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
+35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
+41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
+29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
 12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
-35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
-10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
-15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
-13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
-11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
-40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
-12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
-15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
-19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
+16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
+31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
 35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
-33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
-15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
-33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
-31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
-14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
-17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
-39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
-9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
-22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
-30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
-18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
-14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
-41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
-32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
-8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
-22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
-34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
-23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
-10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
-17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
-39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
-57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
-19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
-29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
-14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
-17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
-12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
-35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
-26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
-41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
-38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
-18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
-23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
-72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
+11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
+22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
+17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
+10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
+33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
+21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
+13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
+21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
+21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
+40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
+19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
+28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
+24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
 7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
-8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
-38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
-15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
-23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
+23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
+30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
+8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
+43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
+19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
 17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
-33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
-15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
-27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
-25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
-24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
-36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
-25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
-13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
-23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
-37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
-27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
-31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
-21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
-28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
-35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
-22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
-24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
-33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
-35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
-10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
+40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
+27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
+23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
+23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
+40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
+26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
+41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
+31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
+14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
+16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
+25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
+35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
+20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
+40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
+25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
+23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
 15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
-36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
-33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
-21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
-18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
-14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
-17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
-30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
-20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
-12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
-10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
-18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
+14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
+28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
+9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
 17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
-29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
-21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
-18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
-22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
-10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
-24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
-19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
-25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
-29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
+12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
+23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
+28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
+19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
+15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
+11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
+28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
+17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
+29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
+29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
+23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
+41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
+16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
+16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
 19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
+10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
+12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
+14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
+26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
+14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
+14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
+9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
+41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
+39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
+13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
+20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
+15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
+42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
+21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
+32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
+15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
+34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
+17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
+23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
+13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
+13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
+39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
+16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
+35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
 10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
-33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
-13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
-9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
-16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
-12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
-43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
-30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
-35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
-20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
-23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
+23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
+24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
 38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
-24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
-29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
-25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
-42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
-36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
-15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
-37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
-9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
-39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
-21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
-32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
-20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
-17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
-34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
-8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
-14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
-7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
-28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
-13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
-36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
-14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
+37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
+18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
+15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
+8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
 10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
-11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
-17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
+16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
+13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
 18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
-7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
-25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
-17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
-7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
+39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
+15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
+9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
+32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
+17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
+36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
+25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
+72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
+19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
+39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
+35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
+41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
+16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
+12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
+37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
+18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
+15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
+36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
+17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
+12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
+14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
+25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
+12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
+13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
+7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
+29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
+12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
+17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
+17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
+24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
+26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
+23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
+34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
+35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
+10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
+14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
+12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
+21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
+21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
+28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
+41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
+23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
+14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
+30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
+26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
+18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
+20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
+9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
+10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
+21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
diff --git a/DATA/Datasets/Bank/LR/DO_7.data b/DATA/Datasets/Bank/LR/DO_7.data
index ca1f0bdc..4b78acb0 100644
--- a/DATA/Datasets/Bank/LR/DO_7.data
+++ b/DATA/Datasets/Bank/LR/DO_7.data
@@ -1,700 +1,700 @@
-17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
-16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
-14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
-32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
-13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
-13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
-35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
-19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
-51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
-13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
-19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
-41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
-12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
-18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
-10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
-25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
-20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
-24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
-19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
-22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
-38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
-16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
-39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
-12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
-41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
-13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
-14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
-12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
-36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
-22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
-26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
-14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
-21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
-27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
-18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
-16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
-31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
-37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
-13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
-32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
-10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
-18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
-16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
-28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
-9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
-20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
-40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
-21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
-15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
-17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
-12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
-20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
-18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
-40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
-42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
-19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
-15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
-15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
-23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
-9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
-29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
-25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
-18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
-15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
-16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
-14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
-19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
-11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
-11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
-36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
-31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
-20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
-17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
-31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
-14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
-26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
-29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
-37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
-13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
-12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
-22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
-40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
-9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
-34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
-33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
-26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
-42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
-9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
-38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
-40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
-18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
-23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
-23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
-9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
-33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
-17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
-29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
-20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
-16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
-19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
-15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
-17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
-18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
-18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
-18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
-10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
-18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
-14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
-6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
-21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
-40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
-21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
-15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
-40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
-21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
-13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
-21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
-33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
-16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
-16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
-22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
-14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
-25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
-24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
-27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
-19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
-31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
-18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
-26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
-28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
-13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
-33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
-13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
-8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
-14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
-16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
-12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
-12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
-33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
-41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
-16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
-25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
-9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
-23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
-10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
-41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
-34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
-19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
-26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
-39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
-18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
-15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
-19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
+25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
 31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
-22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
-16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
-19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
-17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
-31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
-37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
-25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
-7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
+42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
+33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
+8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
+16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
+35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
+13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
 17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
-29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
-30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
-24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
-17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
-24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
-22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
-11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
-22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
-28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
-28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
-44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
-16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
-23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
-44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
-33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
-15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
-40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
-38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
-12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
-24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
-31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
-41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
-10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
-11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
-33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
-8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
-10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
-25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
-13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
-18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
-13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
-26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
-27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
-27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
-39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
-31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
-17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
-20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
-14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
-29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
-21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
-22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
-21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
-13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
-23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
-41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
-8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
-18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
-36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
+14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
+13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
+29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
+26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
+42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
+16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
+14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
+25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
+17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
 39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
-22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
-28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
-15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
-41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
-26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
-24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
-23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
-18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
-40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
-13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
-13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
-19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
-7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
-14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
-38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
+10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
+11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
 32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
-31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
-19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
-13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
-12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
-31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
-28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
-31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
-12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
-18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
-16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
-13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
-29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
-19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
-39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
-34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
-14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
+25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
+17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
+16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
+28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
+25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
+42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
+18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
+23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
+12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
+19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
+17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
+28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
 14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
-26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
-15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
-7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
-22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
+21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
+28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
+11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
+18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
+15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
+7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
+19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
+39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
+9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
+15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
+41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
+26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
+14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
+36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
+33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
+13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
+31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
 37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
-22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
-14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
-21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
-18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
-23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
-9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
-39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
-33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
-38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
-16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
-36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
-28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
-16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
-22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
-12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
-7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
-42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
-34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
-4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
-8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
-23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
-35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
-15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
+11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
+19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
+31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
+28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
+25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
+19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
+38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
+23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
+12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
 9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
-29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
-12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
-39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
-21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
-19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
-39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
-28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
-29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
-10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
-28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
-8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
-27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
+24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
 37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
-13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
-22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
-35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
-41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
-13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
-7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
-17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
-42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
-13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
-16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
-12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
+14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
+7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
+8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
+34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
+37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
+18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
+21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
+37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
 33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
-17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
-29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
-8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
-16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
-32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
-5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
-15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
-14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
-14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
-14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
-26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
-23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
+30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
+19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
+21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
+22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
+30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
+15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
+20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
+51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
+29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
+35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
+33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
 23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
-39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
+27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
+8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
+11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
+19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
+15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
+13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
+22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
+35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
+42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
+20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
+41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
+22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
+39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
 35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
-32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
-24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
-6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
-43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
-30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
-41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
-19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
-36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
-7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
-28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
-29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
-12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
-27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
-35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
-27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
+31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
+9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
+16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
+13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
+33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
+6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
 26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
-19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
-15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
-16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
+18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
+14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
+20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
+9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
+22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
+12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
+11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
+24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
 36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
-8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
+21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
+33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
+12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
+15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
 30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
-25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
-42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
-18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
-22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
-10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
+19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
+8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
+9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
+29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
+19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
+29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
+19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
+40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
+26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
+17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
+19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
+17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
+9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
+25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
+16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
+19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
+13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
 40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
-41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
-42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
-9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
-10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
-19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
-26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
-11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
-16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
-21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
-12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
-8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
-33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
-28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
-29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
-30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
-15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
-12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
-40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
-14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
-29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
-17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
-20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
-35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
-49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
+9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
+39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
+27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
+25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
+19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
+31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
+12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
+11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
+29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
+41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
+25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
+27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
 31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
-13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
-44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
-24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
-40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
-17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
-29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
-20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
-14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
-35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
-17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
+36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
+36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
+28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
+36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
+12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
+19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
+51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
+12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
+16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
+24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
+32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
+13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
+39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
 20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
-12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
-40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
-37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
-28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
-29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
-24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
-5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
-10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
-12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
-12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
-23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
-18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
-39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
-15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
-41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
-30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
-18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
-25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
-17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
-26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
-32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
-14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
-23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
-37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
-13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
-10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
-40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
-28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
-38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
-37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
-14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
-31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
-10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
-17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
-28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
-7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
-32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
-24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
-13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
-23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
+10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
+9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
+16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
+14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
+35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
+33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
+32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
+20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
+35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
 34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
-43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
-24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
-19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
-35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
-10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
-13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
-8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
-17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
-13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
-30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
-12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
-15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
-32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
-34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
+19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
+18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
+19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
+20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
+18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
+25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
+35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
+21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
+32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
+15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
 17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
-42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
-12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
-8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
-14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
-19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
-30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
-30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
-14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
-15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
-17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
-41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
-34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
+13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
+29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
+17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
+16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
+14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
 37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
-36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
-35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
-33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
-41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
-17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
-42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
+14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
+41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
+23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
+13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
+29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
+9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
+21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
+14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
+41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
+16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
 14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
-15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
-38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
-21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
-20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
-15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
-9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
-35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
-39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
-23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
-10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
-35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
-36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
-19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
+26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
 21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
-34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
-13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
-32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
-19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
+44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
+7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
+18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
+10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
+16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
+28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
+13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
+43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
+13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
+9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
+38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
+13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
+15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
+10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
+17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
+14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
+14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
+13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
+12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
+8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
+7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
+23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
+24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
+31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
+10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
+15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
+18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
+40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
+9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
+32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
+35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
+10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
+31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
+12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
+17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
+13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
+16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
+13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
+11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
+26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
+37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
+42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
+44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
+43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
+41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
+24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
+34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
+40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
+29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
+26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
+23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
+17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
+30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
+28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
+37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
+41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
+43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
+11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
+13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
+41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
+22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
+40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
+29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
+36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
+15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
+19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
+29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
+14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
+28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
+31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
+18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
+13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
+11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
+29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
+19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
+19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
+13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
+16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
+37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
+18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
+21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
+9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
+18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
+13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
+14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
+21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
+32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
+12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
 12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
-31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
-14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
-41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
-13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
-34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
-35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
-8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
-30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
-11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
-24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
-37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
-36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
-34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
-42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
-37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
-6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
-10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
-16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
-25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
+12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
+34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
+16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
 24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
+17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
+23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
+18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
+16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
+27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
+23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
+15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
+49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
+9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
+22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
+22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
+25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
+9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
+29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
+21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
+21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
+18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
+15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
+17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
+16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
+35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
+19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
+12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
+21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
+33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
+33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
+12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
+35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
+35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
+39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
+23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
+15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
+28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
 10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
-35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
-13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
-16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
-42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
-11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
+28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
+18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
+31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
+13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
+28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
 29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
-25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
-7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
-29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
-26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
-17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
-17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
-11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
-25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
 15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
-12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
-17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
-21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
-41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
-33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
-33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
-16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
-14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
-12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
-31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
-21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
-35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
-10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
-19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
-18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
-36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
-25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
-13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
-28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
-23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
-35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
-10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
-23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
-16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
-17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
+36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
+39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
+4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
 12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
-17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
-31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
-10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
-24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
-22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
-20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
-17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
-15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
+19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
+15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
 28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
-11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
-12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
-33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
-42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
-16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
-37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
-35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
-25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
-26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
+14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
+41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
+10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
+37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
+18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
+41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
+15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
+22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
+38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
+15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
+16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
+12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
+15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
+12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
+27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
+29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
+18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
+13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
+24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
+40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
+24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
+21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
+13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
+39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
+12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
+42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
+22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
+37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
+14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
+9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
+33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
+16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
 10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
-14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
-33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
-29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
-9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
-33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
+39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
+35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
+19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
+28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
+19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
+22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
+35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
+34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
+25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
+15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
+31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
+20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
+40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
+15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
+21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
+18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
+34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
+30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
+26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
+18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
+18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
+23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
+30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
+17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
+33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
+17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
+41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
+33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
+22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
+35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
+23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
+17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
+16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
+31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
+41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
+42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
+28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
+20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
+8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
+35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
+33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
+13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
+35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
+8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
+20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
+72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
+19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
+41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
+12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
+20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
+42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
+20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
+10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
+23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
+23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
+32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
+17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
+31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
+23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
+26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
+33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
+9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
+6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
+8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
 26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
-56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
-12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
-25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
+16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
+16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
+16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
+19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
+35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
+10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
+22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
+37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
+8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
+12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
+17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
+32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
+14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
+25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
+41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
+14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
+10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
+17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
+17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
+16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
+31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
+34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
+13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
+12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
+12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
+34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
+13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
+14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
+14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
+40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
+26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
+21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
+8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
+12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
+24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
+22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
+5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
+12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
+37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
+17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
+15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
+28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
+18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
+17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
+29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
+17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
 11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
-57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
-24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
-7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
-28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
-35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
+16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
+23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
+19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
+14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
+26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
+28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
+31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
+24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
+25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
+6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
+12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
+22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
+29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
+12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
+42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
+20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
 21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
-35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
+36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
+40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
+14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
+9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
+13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
+21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
+14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
+5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
+37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
+17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
+17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
+10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
+44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
+10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
+15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
+36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
+31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
+20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
+12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
+29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
+30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
+30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
+33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
+32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
+31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
 42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
-38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
-36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
+21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
 12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
-12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
-72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
-26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
-19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
-37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
-16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
-14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
-43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
-22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
+27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
+56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
+24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
+38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
+26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
+18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
+38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
+40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
+40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
+7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
+14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
+16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
+20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
+13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
+32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
 21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
-27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
-9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
-9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
-8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
-21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
-17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
+17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
+28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
+19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
 11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
-32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
-15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
-9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
-17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
+35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
+40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
+14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
+15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
+22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
+38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
+35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
+42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
+28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
+36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
 19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
-15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
-35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
-18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
-20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
-9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
-32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
-16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
-33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
-8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
-26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
-31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
-17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
-34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
-29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
-15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
-21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
-32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
-9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
-51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
-30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
-14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
+18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
+33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
+26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
+24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
+17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
+26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
+22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
+24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
+18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
+57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
+34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
+14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
+17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
+7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
+11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
+30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
+11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
+10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
+12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
+12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
 38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
-19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
-15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
-31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
-17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
-19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
-11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
-32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
-31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
-15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
-11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
-19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
-23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
-9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
-14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
-17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
-12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
-20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
-20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
+29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
+33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
+14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
+42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
+29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
+16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
+38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
+25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
+27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
+17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
+32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
+9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
diff --git a/DATA/Datasets/Bank/LR/DO_8.data b/DATA/Datasets/Bank/LR/DO_8.data
index f87b48ef..3179082d 100644
--- a/DATA/Datasets/Bank/LR/DO_8.data
+++ b/DATA/Datasets/Bank/LR/DO_8.data
@@ -1,800 +1,800 @@
-28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
-29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
-22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
-36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
+35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
+15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
+42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
+8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
+7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
+29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
+41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
+20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
+35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
+41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
+12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
+24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
+12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
+28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
+41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
+13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
+27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
+17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
+14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
+13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
+26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
+20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
+41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
+20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
+18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
+35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
+39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
+26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
+35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
+22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
+11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
+22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
+14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
 10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
-17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
-33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
-13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
-12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
+18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
+24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
 35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
-26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
-15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
-20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
-14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
-31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
-14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
-5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
-22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
-22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
-11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
-17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
-19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
-38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
-15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
-20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
-21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
-18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
+13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
+37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
+8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
+11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
+34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
+37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
+10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
+42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
+12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
+26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
+16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
+23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
+30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
+16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
+10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
+18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
+17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
+9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
+19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
+22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
+13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
+24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
+42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
+15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
+38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
+26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
 13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
-9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
-37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
-22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
-14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
-14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
-13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
-39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
-33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
-42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
-9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
+16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
+39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
+21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
 30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
-19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
-42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
-31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
+21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
+26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
+17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
+14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
+26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
+24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
+9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
+15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
+28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
+19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
+18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
+5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
+16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
+13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
+6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
+21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
+30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
+4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
+25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
+35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
+23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
 21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
-24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
-18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
-35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
-37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
-7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
-42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
-36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
-20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
-8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
-22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
-25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
-16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
-18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
-33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
-14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
-22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
-31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
-33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
+37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
+13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
+12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
+14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
+14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
+32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
+12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
+9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
+37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
+9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
+21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
+14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
+25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
+30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
+41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
+40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
+18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
 11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
-17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
-22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
-30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
-35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
-26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
 16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
-29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
-33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
-31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
-15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
-16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
-16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
-12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
-37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
-35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
-20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
-16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
-9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
-16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
-9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
-29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
-25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
-9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
-19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
-30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
-14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
+17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
+34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
 12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
-30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
-18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
-6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
-29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
 33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
-13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
-16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
-30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
-24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
-25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
-19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
-25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
-11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
 19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
-38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
-20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
-15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
-10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
-29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
-11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
-26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
-26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
-15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
-12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
-13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
-16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
-18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
-12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
-29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
-13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
-24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
+26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
+23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
+10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
 14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
-28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
-13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
-10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
-12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
-38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
-9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
-10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
-32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
-26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
-39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
-38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
-32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
-15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
-28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
-17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
-7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
-21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
-24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
-12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
-32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
-28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
-12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
-35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
-8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
-15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
-41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
-10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
-10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
-12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
-15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
-31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
-30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
-23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
-23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
-12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
-8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
-17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
-16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
-25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
-8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
-35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
-7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
-13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
-17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
-19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
-28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
-15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
-8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
-14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
-15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
-11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
-36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
-14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
-9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
-26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
-12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
-17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
+17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
+23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
+15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
+6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
+40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
+32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
+17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
+35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
+20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
+15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
+42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
+13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
 26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
-19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
-21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
-36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
-21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
-12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
-13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
-13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
-41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
-11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
-42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
-29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
-33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
-33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
-19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
-7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
+19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
+33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
+9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
+18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
+12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
+32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
+34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
+19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
+37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
+36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
+22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
+6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
 14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
-31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
-13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
-35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
-35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
-17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
-41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
 28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
-14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
-22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
-36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
-14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
-22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
-38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
-16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
-43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
-23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
-9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
-43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
-43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
-41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
-44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
+15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
+11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
+31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
+16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
+19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
+24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
+36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
+41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
+28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
+12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
+30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
+42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
+31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
+14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
+33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
+15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
+40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
+11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
+18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
+14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
 13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
-11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
-38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
-11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
-12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
-26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
-37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
-17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
-32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
+27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
+9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
+19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
+38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
+21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
+14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
+26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
+12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
+14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
+25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
+43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
+20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
+12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
+13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
+24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
+15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
+25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
+10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
+36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
+14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
+35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
+36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
 20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
-34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
-39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
-32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
-35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
-27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
-18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
-27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
-26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
-17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
-29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
-19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
-18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
-34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
-35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
-31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
-12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
-32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
-35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
-27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
 14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
-24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
-9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
-23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
-12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
-20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
-35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
-4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
-30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
-39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
-19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
-13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
-25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
-15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
-24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
-13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
-12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
-13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
-20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
-7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
-17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
-17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
-14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
-15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
-17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
-38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
-16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
-21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
-23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
-42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
-23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
-42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
-40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
-42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
-20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
-25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
-10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
-14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
-41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
-17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
-7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
-20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
-12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
-21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
-17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
-72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
-40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
-30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
-19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
-24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
-26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
-5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
-8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
-27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
-16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
-33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
-16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
-23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
-17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
-23,8,2,2,1,9,2,1,3,26,8,1,11,0,0,4,0
-57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
+27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
+38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
+14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
+12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
+26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
+13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
+9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
+9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
+14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
+10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
+32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
+24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
+27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
+37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
+21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
+17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
+28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
+31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
+29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
+18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
+24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
+22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
+18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
+31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
+16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
+13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
+20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
 33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
+17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
+13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
+10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
+16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
 49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
-22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
-12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
-35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
-28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
-14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
-40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
-24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
-32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
-41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
-14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
-15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
-16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
-10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
-13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
-9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
-13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
 15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
-41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
-24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
-18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
-21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
-12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
-33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
-18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
-40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
-21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
-24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
-23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
-9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
-17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
-16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
-24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
-24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
-14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
-40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
-24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
-9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
-9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
-33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
-33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
-35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
-18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
-15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
-26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
-17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
-34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
-17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
-42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
-29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
-24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
-26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
-15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
-13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
+25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
+12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
+37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
 18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
-40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
-12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
-28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
-19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
-29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
-40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
-40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
-26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
-21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
-35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
-42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
-29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
-26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
-8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
-7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
-19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
-14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
-14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
-32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
+12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
+33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
+35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
+22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
+34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
+24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
+15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
+35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
+19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
+8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
+19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
+19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
+24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
+22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
+13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
+15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
+57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
 40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
-21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
-18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
+13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
+39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
+29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
+23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
+13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
+40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
+18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
+31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
+18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
+13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
+14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
+21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
 33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
-29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
-14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
-13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
-27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
-20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
-15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
-24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
-38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
-8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
-25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
-28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
+21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
+16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
+11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
+41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
+12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
+28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
+39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
+33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
+22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
+11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
+20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
+8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
+26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
+37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
 41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
-18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
-12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
-27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
-37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
-10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
-36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
-18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
-6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
-44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
-24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
-9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
-7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
-14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
-33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
-22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
-14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
-37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
-21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
-8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
-19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
-39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
-30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
-40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
-16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
-29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
-18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
-34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
-14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
-23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
-31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
-16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
-28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
-41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
-32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
-34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
-20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
-32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
-33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
-24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
-12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
+13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
+25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
+24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
+20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
+20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
+26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
 20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
-16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
-23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
-27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
-15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
-29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
-15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
-39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
-28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
-18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
-16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
-27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
-31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
-16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
 42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
-42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
-17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
-10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
+32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
+32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
+39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
+16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
+19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
+18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
+23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
+29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
+56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
+39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
+24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
+32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
 22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
-28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
-10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
-25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
-18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
-8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
-13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
-10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
-26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
-38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
-20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
-13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
-12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
-10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
-20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
-17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
-17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
-12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
-23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
-22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
-18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
-36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
-42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
-10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
-16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
-37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
-25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
-22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
-31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
-14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
-18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
-28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
-36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
+13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
 14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
-11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
-13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
-23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
-9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
-28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
-18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
-25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
-26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
+16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
+12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
+18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
+31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
+12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
+32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
+34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
+21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
+28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
+23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
+17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
 34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
-37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
-21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
-17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
-13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
-13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
-13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
-18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
-23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
-17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
-13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
-23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
+31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
+18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
+25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
 34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
-8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
-19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
-24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
-41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
-14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
-10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
-28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
-31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
-18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
-26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
-36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
+7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
+17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
 24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
-16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
-28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
-36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
-28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
-14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
-31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
-56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
-18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
-22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
-17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
-14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
-12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
-40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
-27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
-14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
-16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
-19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
-31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
+44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
+38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
+29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
+10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
+26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
+15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
+29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
+24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
+15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
+11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
+32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
 16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
-29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
-28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
-31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
-11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
-13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
-24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
-26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
-30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
-35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
-12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
-13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
-25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
-41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
-37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
-14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
-25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
-18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
-32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
-19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
-40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
-20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
-22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
-28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
-31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
-16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
-23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
-15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
 33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
-31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
-31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
+27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
+37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
+16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
+14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
+17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
 5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
-36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
-21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
-21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
-39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
-12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
-21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
-13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
-13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
-14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
-36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
-22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
-51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
-12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
-44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
-18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
-26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
-34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
-31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
-32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
-17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
-10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
-12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
-39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
-16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
-33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
-17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
-40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
-15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
-22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
-37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
-15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
-35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
-13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
-12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
-34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
-41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
-15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
-42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
-10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
-22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
-41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
-23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
+19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
+31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
+41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
+21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
+34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
+30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
+19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
+38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
+19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
+37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
+36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
+17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
+11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
+14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
+17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
+16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
+32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
+34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
+35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
+25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
+22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
+9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
 30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
-35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
-16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
-9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
-29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
+12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
+13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
+8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
+22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
+16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
+39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
+25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
+16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
+13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
+18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
+32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
+17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
+17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
+23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
 26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
-20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
-23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
-10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
-12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
-14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
+15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
+20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
+26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
+8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
+9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
+19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
+17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
+8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
+42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
+21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
+31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
+43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
+14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
+25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
+12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
+19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
+16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
 42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
-27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
-51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
-19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
-18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
-13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
-12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
+23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
+22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
+10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
+35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
+42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
+18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
+28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
+25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
+17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
+29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
+18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
+27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
+9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
+14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
+33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
+11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
+34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
+12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
+27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
+37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
+17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
+72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
+15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
+13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
+34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
+44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
+12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
+20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
+18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
+41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
+6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
+9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
+16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
+35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
+36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
+30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
+35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
+36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
+29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
+8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
+31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
+13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
+8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
+19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
+43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
+16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
+12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
+37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
+23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
+40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
+14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
+16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
+15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
+33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
+12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
+17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
+29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
+26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
+18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
+18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
+38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
+27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
+33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
+17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
+13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
+14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
+40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
+21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
+14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
+13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
+36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
+18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
+16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
+9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
+21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
+16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
+27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
+17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
+15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
 34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
+24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
+17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
+34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
+51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
+23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
+13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
+35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
+26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
 22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
-19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
-6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
-18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
+10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
+35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
+36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
+12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
+22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
+30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
+42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
+29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
+41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
+21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
+7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
+10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
+19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
+33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
+29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
+14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
+13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
+12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
+35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
+19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
+21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
+32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
+15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
+19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
+12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
+23,8,2,2,1,9,2,1,3,26,8,1,11,0,0,4,0
+20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
+23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
+25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
+29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
+12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
 7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
-37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
-29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
-21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
-32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
-22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
+19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
+27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
+11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
+15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
+40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
+7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
 39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
-37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
-22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
-8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
-35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
+29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
+12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
+18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
+17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
+42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
+14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
+33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
+14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
+17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
+13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
+37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
+24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
+19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
+18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
+17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
+27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
+31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
+33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
+32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
+29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
+42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
+20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
+18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
+16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
+23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
+38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
+39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
+27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
+17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
+10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
+38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
+25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
+18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
+33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
+23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
+19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
+42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
+22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
+7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
+13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
+18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
+40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
+28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
+41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
+28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
+15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
+10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
+29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
+19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
+14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
+33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
+15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
+35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
 12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
-17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
-19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
-31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
+31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
+18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
+40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
+23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
+14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
+24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
+19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
+17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
+16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
+44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
+41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
+22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
+16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
+15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
+13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
+12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
+25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
+28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
+14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
+16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
+26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
+15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
+34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
+36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
+40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
+30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
+12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
+20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
+36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
+28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
+17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
+30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
+30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
+14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
 11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
-41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
-23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
-33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
-19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
-34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
-39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
-10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
-37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
-24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
-21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
-32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
-33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
-19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
-17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
 28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
-35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
-40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
-29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
-27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
+28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
+29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
+21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
+20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
+11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
+24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
+10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
+12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
+38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
+21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
+17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
+17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
+31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
 21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
-21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
-17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
-20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
-12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
-34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
-34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
-12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
-27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
-17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
-18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
-19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
-19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
-12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
-18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
-12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
-25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
-8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
-11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
-13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
-35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
-41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
-9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
-33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
-18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
-29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
-15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
-19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
-4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
-15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
-30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
-11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
+9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
 40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
-17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
-15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
-38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
-19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
-41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
-32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
-21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
-17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
-25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
-10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
-14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
-38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
-28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
-37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
-17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
-23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
-13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
-14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
-15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
-14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
-21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
+28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
+7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
+16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
+8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
+31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
+12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
+10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
+14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
+13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
+28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
+30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
+5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
+16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
+23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
+17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
+28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
 23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
-14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
-19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
+17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
+10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
+23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
+17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
+15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
+12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
+37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
+26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
 31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
-39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
-29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
+15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
+21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
+21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
+12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
+16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
+18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
+32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
+28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
+9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
+19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
+51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
+29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
+36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
+22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
+13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
+19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
+33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
+7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
+23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
+12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
+40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
+39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
+42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
+38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
+15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
+23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
+7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
+12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
+14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
 14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
-30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
-10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
-12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
-9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
-17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
-11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
-12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
+13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
+31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
+23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
+18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
+17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
+25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
+29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
+32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
+38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
+22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
+12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
+29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
+13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
+15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
+19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
+16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
+22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
+22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
+31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
+33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
+28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
+41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
+31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
+10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
diff --git a/DATA/Datasets/Bank/LR/DO_9.data b/DATA/Datasets/Bank/LR/DO_9.data
index 94500674..3912ebfe 100644
--- a/DATA/Datasets/Bank/LR/DO_9.data
+++ b/DATA/Datasets/Bank/LR/DO_9.data
@@ -1,900 +1,900 @@
-10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
-12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
-13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
-37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
-29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
-44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
-24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
-20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
-29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
-40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
-10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
-24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
-25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
-16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
-22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
-13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
-27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
-25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
-17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
-12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
-12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
-40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
-9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
-21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
-14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
-13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
-33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
-29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
-12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
-32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
-42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
-14,10,0,3,1,54,1,1,0,14,1,12,11,0,0,4,1
-36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
-12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
-13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
-25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
-12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
-21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
-29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
-40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
-22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
-32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
-37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
-39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
-31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
-21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
-16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
-28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
-31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
-25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
-13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
-41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
-29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
-22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
-35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
-21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
-35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
-33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
-9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
-14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
-30,2,2,3,2,4,1,1,0,24,5,13,33,0,0,4,1
-41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
-25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
-18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
-40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
-20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
-12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
-23,8,2,2,1,9,2,1,3,26,8,1,11,0,0,4,0
-17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
-11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
-36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
-11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
-16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
-16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
-17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
-25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
-15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
-10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
-39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
-40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
-12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
-19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
-12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
-40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
-19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
-51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
-15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
-15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
-4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
-42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
-21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
-33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
-32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
-19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
-14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
-13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
-18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
-22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
-17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
-20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
-9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
-10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
+17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
+43,5,2,2,1,71,1,1,0,9,1,16,43,0,0,4,1
 8,11,3,3,1,67,1,1,0,20,4,4,0,0,0,4,1
-22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
-14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
-15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
-33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
-15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
-37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
-37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
-11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
-17,1,3,2,1,14,2,2,3,26,8,6,0,0,0,4,0
-8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
-18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
-26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
-11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
-34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
-33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
-25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
-30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
-7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
-37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
-12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
-11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
-29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
-29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
-9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
-34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
-33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
-16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
-23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
-24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
-16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
-17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
-19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
-38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
-18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
-5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
-11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
-5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
-12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
-19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
-37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
-37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
-18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
-29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
-28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
-33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
-35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
-39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
-26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
-15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
-27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
-10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
-14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
-13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
-16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
-29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
-9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
-42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
-16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
-19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
-27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
-15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
-41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
-16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
+35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
+39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
+26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
+23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
+23,8,0,2,1,67,2,1,0,11,3,15,0,0,0,4,1
+12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
+12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
+8,11,3,2,1,12,1,1,0,30,5,11,0,0,0,4,1
+24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
+19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
 33,8,2,2,1,28,2,1,3,26,8,13,11,0,0,4,0
-12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
-12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
-41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
-10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
-8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
-15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
-31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
-18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
-35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
-19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
-18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
-32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
-20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
-20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
-12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
-17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
-38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
-17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
-31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
-14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
-32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
-25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
-31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
-9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
-12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
-30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
-22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
-23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
-14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
-42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
-34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
-41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
-41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
-27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
+26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
+10,1,3,2,1,65,2,1,3,30,8,13,0,0,0,4,1
+15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
+13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
+29,8,2,2,1,43,2,1,0,1,5,10,33,0,0,4,1
+25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
+32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
+17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
+23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
 9,1,2,3,1,40,2,1,3,18,6,10,22,0,0,4,1
-11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
-30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
-20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
-7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
-37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
-31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
-23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
-15,1,3,3,1,62,1,1,0,30,3,3,0,546,1,3,1
-15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
-8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
-11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
-14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
-32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
-14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
-26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
-28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
-20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
+13,8,2,2,1,44,2,1,3,26,8,13,11,0,0,4,0
+23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
 15,1,2,2,1,9,2,1,3,13,8,10,22,0,0,4,1
-31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
-10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
-17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
-22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
-15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
-16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
-14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
-9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
-28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
-35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
-19,0,2,2,1,25,1,1,2,19,11,9,0,0,0,4,1
-12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
-17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
-18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
-13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
-20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
-17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
-7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
-26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
-34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
-42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
-25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
-14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
-21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
-16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
-29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
-14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
-30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
-35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
-29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
-29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
-9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
-14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
-15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
-38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
-22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
-33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
-10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
-22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
-19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
-32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
-38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
-24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
-39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
-31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
-12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
-24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
-28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
-37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
-35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
-24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
-17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
-15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
-32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
-30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
-57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
-40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
-28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
-37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
-24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
-37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
-42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
-21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
-19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
-7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
-10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
-38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
-7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
-26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
-40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
-14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
-42,5,2,3,1,29,1,1,0,26,3,7,11,0,0,4,1
-20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
-14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
+17,8,2,2,1,54,2,1,0,11,7,9,33,0,0,4,1
+26,5,2,3,1,46,2,2,2,13,10,1,0,0,0,4,1
 17,2,2,2,1,31,1,2,0,5,5,4,22,0,0,4,1
-17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
-20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
-18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
-23,1,2,2,1,35,2,1,3,5,8,14,0,0,0,4,1
-14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
-31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
-34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
-22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
-12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
-39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
-42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
-23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
-10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
-13,1,2,2,1,36,2,1,3,15,8,4,11,0,0,4,1
-17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
-41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
-28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
-12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
-19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
-10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
-28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
-15,8,0,2,1,48,1,2,0,15,5,11,0,0,0,4,1
-42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
-14,1,3,3,1,62,1,1,3,4,10,15,0,0,0,4,1
-39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
-11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
-37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
-17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
-28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
-27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
-24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
-23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
-35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
-36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
-12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
-10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
-30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
-17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
-31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
+24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
+28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
+19,0,3,2,1,9,2,1,3,26,8,3,0,0,0,4,0
+29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
 20,0,0,2,1,24,2,1,0,26,3,1,22,167,12,3,1
-31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
-14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
-24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
-30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
-13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
-7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
-8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
-14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
-16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
-16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
-19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
+14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
+23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
+29,8,0,2,1,20,1,1,3,26,8,7,0,0,0,4,0
+35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
+14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
+24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
+16,10,2,2,1,24,2,1,3,26,8,9,33,0,0,4,0
+8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
+8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
+37,6,2,2,1,9,1,2,3,26,8,3,0,0,0,4,0
+13,10,3,3,1,28,2,1,3,30,8,10,22,0,0,4,1
+25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
+27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
+24,10,3,3,1,33,1,1,0,21,5,7,11,0,0,4,1
+19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
+17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
+9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
+40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
+17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
+10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
+23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
 21,10,2,2,1,31,2,1,0,8,5,8,11,0,0,4,1
-34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
-15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
-15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
-18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
-41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
-8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
-18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
-15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
-13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
-27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
-34,3,2,2,1,45,2,1,3,5,8,15,22,0,0,4,1
-13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
-32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
-35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
-33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
-13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
-38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
-21,10,3,2,1,50,2,1,0,9,10,10,0,0,0,4,1
-12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
-25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
-16,8,3,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
-17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
-27,5,2,3,1,61,1,1,3,12,6,12,22,0,0,4,1
-23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
-33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
-30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
-26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
-31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
+22,10,0,3,1,9,1,1,3,8,6,10,0,0,0,4,1
+24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
+36,6,2,1,1,37,1,1,0,4,1,15,11,0,0,4,1
+11,5,2,3,1,11,1,1,3,6,8,2,11,0,0,4,1
+11,1,2,2,1,35,2,1,0,7,5,16,0,0,0,4,1
+31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
+16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
+37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
+13,10,2,3,1,32,1,2,0,9,10,9,0,31,37,1,1
 19,8,2,2,1,65,1,2,0,17,5,0,0,0,0,4,1
-35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
-14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
-10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
-8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
-8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
-26,0,0,2,1,61,2,1,3,26,8,6,0,0,0,4,0
-36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
-29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
-15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
-17,5,2,3,1,36,2,2,0,29,1,13,22,0,0,4,1
-9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
-12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
-15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
-15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
-10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
-21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
-28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
-16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
-28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
-39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
-29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
-31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
-27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
-43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
-18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
-34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
-12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
-17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
+35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
 72,6,0,2,1,9,1,1,0,4,3,4,22,0,0,4,1
-28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
-22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
-16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
-15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
-33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
-19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
-21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
-18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
-7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
+42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
+16,5,3,3,1,18,2,1,0,9,10,11,0,91,1,1,1
+31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
+15,1,3,2,1,5,2,1,3,7,8,13,11,0,0,4,1
+23,1,2,1,1,14,2,1,3,12,8,4,11,0,0,4,1
+12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
+31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
+25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
+42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
+29,10,3,2,1,12,2,1,0,15,5,15,22,0,0,4,1
+18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
+28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
 11,0,3,2,1,10,2,1,0,11,3,6,0,0,0,4,1
-40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
-19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
-16,5,2,3,1,63,1,1,0,25,3,9,11,0,0,4,1
-16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
-23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
-22,2,0,2,1,37,2,1,0,9,5,12,22,0,0,4,1
-12,0,0,2,1,43,2,1,3,25,6,10,6,0,0,4,1
-29,2,2,3,1,9,1,1,0,7,3,7,11,0,0,4,1
-24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
-10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
-20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
-22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
-33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
-18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
-33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
-35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
+41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
 6,9,3,2,1,67,2,1,3,26,8,6,11,0,0,4,0
-21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
-30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
-17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
-12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
-24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
-34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
-26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
-27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
-41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
-34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
-4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
-42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
-31,10,2,2,1,46,1,1,0,10,1,3,46,0,0,4,1
-8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
-13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
-8,10,3,2,1,61,2,1,3,20,8,11,22,0,0,4,1
-10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
-7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
-18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
-22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
-14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
-30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
-16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
-37,6,2,2,1,19,2,2,0,8,10,13,0,0,0,4,1
-14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
-24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
-40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
-14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
-21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
-40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
-22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
-16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
-26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
-23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
-11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
-32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
-14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
-16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
-13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
-14,1,2,2,1,24,1,1,0,27,3,11,46,0,0,4,1
-14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
-23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
-18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
-7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
-40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
-31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
-27,0,0,2,1,2,1,2,0,28,5,11,0,0,0,4,1
-17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
-27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
-25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
-34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
-13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
+33,1,2,1,1,58,2,1,0,16,5,14,11,0,0,4,1
+37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
+10,5,3,3,1,15,2,1,0,18,3,12,0,0,0,4,1
+9,10,3,2,1,22,2,1,3,7,8,13,0,0,0,4,1
+36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
+8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
+10,8,3,2,1,40,2,1,0,16,5,14,11,0,0,4,1
+32,8,2,2,1,20,1,1,3,30,6,14,0,0,0,4,1
+38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
+55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
+39,3,2,1,1,34,1,1,0,2,1,11,33,0,0,4,1
+24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
+9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
+38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
+34,10,2,3,1,62,1,2,3,26,8,6,0,0,0,4,0
+30,5,3,3,1,67,1,1,0,17,1,15,33,0,0,4,1
 13,5,2,3,1,19,1,1,0,4,1,12,45,0,0,4,1
-32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
-20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
-24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
-14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
-23,1,2,1,1,28,1,2,3,9,6,5,22,0,0,4,1
-42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
-13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
-41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
-29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
-23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
-19,1,0,2,1,38,2,1,3,18,8,12,11,0,0,4,1
-25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
-27,5,2,3,1,54,2,1,3,26,8,14,11,0,0,4,0
-12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
-19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
-16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
-19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
-6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
+23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
+16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
+22,2,0,2,1,37,2,1,0,9,5,12,22,0,0,4,1
+12,0,0,2,1,9,2,1,0,9,5,12,11,0,0,4,1
+16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
+11,1,3,2,1,32,2,1,3,11,6,13,5,0,0,4,1
+36,10,2,2,1,24,1,2,0,20,5,11,22,0,0,4,1
+25,5,3,3,1,15,1,1,0,27,1,10,11,0,0,4,1
+10,1,2,2,1,64,2,1,0,14,5,11,38,0,0,4,1
+21,5,2,3,1,2,1,2,3,2,6,15,46,0,0,4,1
+12,8,2,2,1,52,1,2,0,1,5,14,38,0,0,4,1
+31,8,0,2,1,9,1,1,0,20,5,9,11,0,0,4,1
+20,10,2,2,1,24,1,1,0,25,1,14,0,0,0,4,1
+24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
 15,5,0,2,1,52,2,1,3,4,8,3,0,0,0,4,1
-19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
-16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
+20,10,3,2,1,39,1,1,0,10,1,12,5,0,0,4,1
+40,10,2,4,1,63,2,1,3,26,8,13,0,0,0,4,0
+9,0,3,2,1,24,1,1,2,20,5,1,8,0,0,4,1
+40,6,0,1,1,32,2,1,0,10,10,12,11,14,37,0,1
+42,6,0,2,1,11,1,1,0,2,5,13,11,0,0,4,1
+26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
+20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
 9,5,3,3,1,71,2,1,3,25,6,13,11,0,0,4,1
-24,2,2,3,1,55,1,1,3,2,6,14,22,0,0,4,1
-28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
-22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
-39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
-18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
-31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
-34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
+12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
+26,1,3,1,1,20,2,1,3,21,8,14,22,0,0,4,1
+26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
+17,7,2,2,1,24,2,2,3,26,6,6,11,0,0,4,1
+17,10,2,3,1,39,2,1,0,14,5,12,11,0,0,4,1
+18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
+35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
+28,3,2,2,1,34,2,1,0,23,5,0,21,0,0,4,1
+16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
+13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
+28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
+12,0,2,2,1,23,1,1,0,12,10,0,0,0,0,4,1
+13,5,3,3,1,21,1,2,0,29,1,10,11,0,0,4,1
+41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
+28,8,0,2,1,48,1,1,0,13,10,11,11,0,0,4,1
+40,5,2,2,1,4,1,1,0,24,5,12,3,0,0,4,1
+23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
+13,5,2,3,1,15,1,1,0,9,3,8,11,0,0,4,1
+19,5,0,3,1,14,2,1,3,10,8,5,11,0,0,4,1
+17,5,3,3,1,4,1,2,0,13,5,16,2,0,0,4,1
+26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
+30,2,2,3,2,4,1,1,0,24,5,13,33,0,0,4,1
+14,1,2,2,1,65,2,1,3,13,8,15,22,0,0,4,1
+28,8,2,2,1,34,1,1,0,14,1,11,11,0,0,4,1
+20,0,3,2,1,9,2,1,3,28,8,13,0,0,0,4,1
+23,0,2,2,1,41,2,1,3,26,8,10,0,0,0,4,0
+30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
+19,8,2,2,1,47,2,2,0,23,5,11,33,0,0,4,1
+10,9,3,2,1,30,1,1,2,14,11,5,0,0,0,4,1
+26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
+19,8,0,2,1,52,2,1,3,7,8,12,11,0,0,4,1
+18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
+11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
+19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
+35,1,0,1,1,33,2,1,3,23,8,6,11,0,0,4,1
+40,6,2,1,1,30,2,1,3,26,8,5,0,0,0,4,0
+17,0,2,2,1,46,2,1,3,21,8,11,0,0,0,4,1
+35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
+32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
+13,5,0,3,1,43,1,1,0,1,3,3,43,0,0,4,1
+39,10,2,2,1,67,1,2,3,26,8,7,0,0,0,4,0
+15,2,2,2,1,7,2,2,0,29,5,13,0,0,0,4,1
+40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
 22,10,0,2,1,9,1,1,0,28,1,12,11,0,0,4,1
-18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
-32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
-12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
+13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
+21,2,2,2,1,13,1,1,0,9,10,2,11,0,0,4,1
+14,5,3,3,1,38,1,1,3,3,8,13,11,0,0,4,1
+15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
+35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
+29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
+12,8,2,2,1,45,2,1,0,12,10,11,0,0,0,4,1
+16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
+35,3,2,1,1,42,1,1,0,20,5,2,11,0,0,4,1
+17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
+36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
+14,0,3,2,1,27,2,1,3,26,8,8,0,0,0,4,0
+18,1,2,1,1,49,2,1,3,26,8,8,0,0,0,4,0
+7,8,2,2,1,9,2,1,0,16,5,10,47,0,0,4,1
+23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
+26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
+26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
+33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
+18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
+15,5,3,3,1,68,1,1,0,3,1,15,0,0,0,4,1
+17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
+26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
+25,10,3,2,1,58,2,1,3,26,8,11,0,0,0,4,0
+14,1,2,2,1,26,2,1,0,5,10,3,0,0,0,4,1
+31,1,2,4,1,19,2,1,3,26,8,9,0,0,0,4,0
+18,1,0,2,1,60,2,1,3,7,6,4,11,0,0,4,1
+57,6,0,1,1,44,2,1,0,25,3,3,22,0,0,4,1
+33,1,0,1,1,52,1,1,0,21,5,11,11,0,0,4,1
+21,1,0,1,1,16,2,1,0,12,10,11,0,78,30,1,1
+40,6,2,1,1,47,1,1,0,4,1,10,11,0,0,4,1
+17,8,2,2,1,47,2,1,3,12,8,6,0,0,0,4,1
+23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
+21,11,3,3,1,62,2,1,0,12,10,15,33,0,0,4,1
+13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
+26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
+29,0,2,2,1,43,2,1,3,26,8,3,11,0,0,4,0
+12,10,2,2,1,19,2,2,3,26,8,7,11,0,0,4,0
+35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
+12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
+22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
+31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
 41,5,0,3,1,33,1,1,3,26,8,6,0,0,0,4,0
-32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
-40,0,2,2,1,67,1,1,3,3,6,14,0,0,0,4,1
-12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
-35,0,2,2,1,43,1,1,3,12,6,1,22,0,0,4,1
-39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
-34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
-16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
-35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
-36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
-10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
-36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
-24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
-15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
-33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
-13,5,0,3,1,43,1,1,0,1,3,3,43,0,0,4,1
+9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
+29,1,0,1,1,14,2,1,3,22,6,7,11,0,0,4,1
+36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
+33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
 28,10,0,2,1,8,2,1,0,28,1,9,22,0,0,4,1
-11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
-16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
-13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
-17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
-44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
-33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
-33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
-6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
-19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
-18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
-35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
-24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
-28,3,0,1,1,26,2,1,0,9,5,1,11,0,0,4,1
-31,8,0,2,1,9,2,2,3,26,8,8,0,0,0,4,0
-26,10,3,2,1,35,2,1,3,26,8,4,0,0,0,4,0
-42,5,2,3,1,63,1,1,2,29,1,7,11,0,0,4,1
+15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
+14,10,3,3,1,41,1,1,2,4,1,12,47,0,0,4,1
+40,1,2,1,1,65,2,1,3,26,8,5,11,0,0,4,0
+28,1,2,2,1,33,2,1,3,26,8,11,0,0,0,4,0
+14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
+21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
 21,10,3,4,1,49,2,1,3,27,8,5,0,0,0,4,1
-44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
-36,10,2,3,1,32,1,1,3,26,8,8,33,0,0,4,0
-23,5,3,3,1,25,1,1,0,13,10,11,0,0,0,4,1
-18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
+19,0,3,2,1,11,2,1,0,13,10,5,11,0,0,4,1
 13,7,3,3,1,32,1,1,0,13,10,11,0,0,0,4,1
-18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
-26,1,3,2,1,36,1,2,0,8,5,2,33,0,0,4,1
-20,8,2,2,1,19,2,1,3,26,8,7,0,0,0,4,0
-13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
-16,1,2,2,1,64,2,2,0,8,10,3,0,0,0,4,1
-16,10,3,2,1,61,1,1,0,13,1,4,11,0,0,4,1
-38,8,2,1,1,51,1,2,2,13,5,6,0,0,0,4,1
-17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
-18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
-42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
-29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
-17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
-23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
-11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
-24,10,3,2,1,16,2,1,3,6,8,6,43,0,0,4,1
-5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
-28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
-41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
-19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
-31,1,0,2,1,11,1,2,0,25,3,2,0,0,0,4,1
-13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
-21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
-18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
-39,6,0,3,1,64,1,1,0,27,1,3,33,0,0,4,1
-23,2,3,2,1,61,1,1,0,16,5,2,0,0,0,4,1
-16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
-20,5,2,3,1,59,1,1,0,22,3,7,0,0,0,4,1
-34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
-34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
-24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
-16,5,3,3,1,14,1,1,0,26,3,7,46,0,0,4,1
+14,1,2,2,2,9,2,1,3,30,8,12,0,0,0,4,1
+26,10,3,2,1,21,1,1,2,12,11,13,0,0,0,4,1
+32,10,2,2,1,19,1,2,0,5,5,1,22,0,0,4,1
+28,0,2,2,1,61,1,1,0,27,1,13,11,0,0,4,1
+29,12,2,4,1,34,1,1,3,26,8,8,11,0,0,4,0
+25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
+41,5,0,3,1,57,2,1,3,26,8,8,0,0,0,4,0
+12,10,2,2,1,35,2,1,0,5,1,2,33,0,0,4,1
+33,10,2,2,1,13,1,1,0,9,3,10,11,0,0,4,1
+30,3,2,1,1,63,1,1,0,13,10,11,11,0,0,4,1
+42,0,0,2,1,5,2,2,0,27,3,5,0,179,1,0,1
+9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
+30,1,3,1,1,59,2,1,0,11,3,4,11,0,0,4,1
+17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
+29,10,3,2,1,3,2,2,0,28,5,15,22,0,0,4,1
 23,1,0,1,1,9,1,1,0,23,5,10,11,0,0,4,1
-4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
-22,1,2,2,1,53,1,1,3,30,10,8,0,0,0,4,1
-20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
-24,2,2,4,1,26,2,1,0,23,5,12,11,0,0,4,1
-10,0,3,2,1,50,2,1,3,18,8,13,43,0,0,4,1
-35,1,2,2,1,31,1,1,0,14,1,11,11,0,0,4,1
-13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
-36,5,2,3,1,15,1,1,0,22,3,5,0,0,0,4,1
-16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
-18,10,3,2,1,60,1,1,0,28,1,14,0,0,0,4,1
-18,10,3,2,1,39,2,1,3,19,11,6,0,0,0,4,1
-24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
-25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
-31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
-21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
-41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
-42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
+23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
+12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
+14,10,0,3,1,54,1,1,0,14,1,12,11,0,0,4,1
+39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
+6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
+22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
+31,5,0,2,1,5,2,1,3,30,6,1,1,0,0,4,1
+27,10,3,2,1,46,2,1,3,23,8,15,33,0,0,4,1
+24,5,3,3,1,9,2,2,3,26,8,11,11,0,0,4,1
+12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
+19,10,3,2,1,14,2,1,3,13,8,13,0,0,0,4,1
+42,5,2,3,1,29,1,1,0,26,3,7,11,0,0,4,1
+15,8,2,2,1,9,2,1,3,26,8,11,0,0,0,4,0
+11,1,3,2,1,2,1,2,0,13,5,11,0,0,0,4,1
+13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
+9,10,3,3,1,61,1,1,0,21,4,14,11,0,0,4,1
+25,10,2,2,1,39,2,1,3,4,8,5,11,0,0,4,1
+21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
+25,0,3,2,1,3,2,2,0,11,3,13,11,508,30,0,1
+21,7,2,3,1,10,1,1,3,27,6,11,0,0,0,4,1
+12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
 7,1,2,2,1,71,2,1,3,19,8,13,0,0,0,4,1
-10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
-12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
-35,0,2,2,1,68,2,1,0,27,3,8,22,0,0,4,1
-30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
-26,11,0,3,1,9,1,1,0,26,3,6,22,0,0,4,1
-33,3,0,3,1,20,1,1,0,25,1,14,0,0,0,4,1
-28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
-35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
-14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
-12,10,3,3,1,22,1,1,0,8,5,12,22,0,0,4,1
-17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
+21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
+14,10,3,2,1,22,2,1,0,5,1,6,22,0,0,4,1
+30,1,2,1,1,51,1,1,0,2,1,14,22,0,0,4,1
+13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
+31,10,2,2,1,66,2,1,0,20,4,2,0,0,0,4,1
+22,10,0,3,1,51,2,1,0,2,3,8,11,0,0,4,1
+32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
+35,5,2,3,1,9,1,1,0,2,1,11,11,0,0,4,1
+39,0,3,2,1,57,2,1,3,10,6,10,0,0,0,4,1
+9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
+23,5,2,3,1,9,1,1,0,2,1,2,38,0,0,4,1
+49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
+16,5,2,3,1,9,2,1,0,22,3,7,0,0,0,4,1
+22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
+44,5,0,3,1,58,1,1,2,8,3,6,33,0,0,4,1
+14,5,3,2,1,25,1,1,0,2,1,2,0,0,0,4,1
+32,11,0,4,1,11,1,1,0,11,3,13,0,0,0,4,1
+30,1,2,1,1,34,2,1,3,26,8,3,11,0,0,4,0
+30,3,2,2,1,53,1,2,0,20,5,15,22,0,0,4,1
+15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
+41,0,2,2,1,20,2,1,0,14,1,2,2,0,0,4,1
+14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
+15,5,0,3,1,71,2,1,0,16,5,4,11,0,0,4,1
+13,5,2,3,1,9,2,2,0,20,5,12,46,0,0,4,1
+13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
+10,5,3,3,1,9,2,1,0,7,5,13,38,0,0,4,1
+15,8,3,2,1,21,1,1,0,28,5,13,0,0,0,4,1
+16,1,2,1,1,62,2,2,3,7,8,1,33,0,0,4,1
+23,1,0,2,1,42,1,1,3,10,6,1,33,0,0,4,1
+20,0,0,2,1,25,2,1,3,18,8,9,11,0,0,4,1
+16,7,3,2,1,36,1,1,0,19,1,11,4,0,0,4,1
+16,12,3,2,1,68,1,1,0,20,4,14,0,0,0,4,1
+33,1,2,1,1,55,1,1,0,2,1,12,22,0,0,4,1
+10,5,3,3,1,49,2,2,3,26,8,7,0,0,0,4,0
+33,1,2,1,1,63,1,1,0,27,1,4,45,0,0,4,1
+9,1,2,2,1,58,2,1,3,10,6,0,0,0,0,4,1
+12,5,3,2,1,50,2,1,0,13,10,11,0,0,0,4,1
+37,10,2,2,1,33,2,2,0,24,5,2,38,0,0,4,1
+22,5,2,3,1,26,2,1,3,26,8,9,0,0,0,4,0
+24,10,3,2,2,0,2,1,3,11,6,11,38,0,0,4,1
+25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
+34,2,2,2,1,12,2,2,3,26,8,3,0,0,0,4,0
+7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
+25,1,2,2,1,62,2,2,0,12,10,3,11,26,12,1,1
+16,7,3,3,1,50,1,1,0,13,1,6,22,0,0,4,1
+6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
+25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
+37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
 23,1,3,2,1,64,2,1,3,0,5,10,47,0,0,4,1
-40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
-20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
+7,8,3,2,1,29,1,2,0,13,5,1,11,0,0,4,1
+7,1,3,2,1,14,1,2,0,1,5,3,45,0,0,4,1
+41,11,3,1,1,65,1,1,0,13,10,9,22,0,0,4,1
+31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
+39,12,2,4,1,24,1,1,3,15,11,8,0,0,0,4,1
+29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
 21,10,3,2,1,12,1,1,0,28,1,9,11,0,0,4,1
-35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
-15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
-17,0,0,2,1,48,2,1,3,25,6,15,0,0,0,4,1
-42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
-32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
-17,5,0,3,1,18,1,1,0,27,1,13,11,0,0,4,1
-10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
-14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
-43,5,2,2,1,71,1,1,0,9,1,16,43,0,0,4,1
-20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
-23,1,0,1,1,17,2,1,0,9,5,12,22,0,0,4,1
+33,6,2,2,1,27,2,1,3,26,8,5,0,0,0,4,0
+37,1,2,2,1,9,1,1,3,3,6,11,11,0,0,4,1
+17,11,3,2,1,15,2,1,2,5,10,5,0,0,0,4,1
+34,2,2,3,2,5,1,1,0,29,5,11,0,0,0,4,1
+14,10,2,2,1,66,2,1,3,13,8,13,11,0,0,4,1
+19,5,3,2,1,66,2,1,3,7,8,2,33,0,0,4,1
+14,5,3,3,1,9,1,1,0,26,3,11,33,0,0,4,1
+56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
+40,6,2,3,1,9,1,1,0,4,1,12,33,0,0,4,1
+14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
+38,0,2,2,1,21,1,1,0,13,1,13,1,0,0,4,1
+19,8,3,2,1,34,2,1,3,22,6,0,22,0,0,4,1
+22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
+37,3,0,1,1,65,1,1,0,24,5,10,43,0,0,4,1
+8,1,3,1,1,70,1,1,0,21,4,2,0,0,0,4,1
+17,0,2,2,1,8,2,1,3,22,6,3,45,0,0,4,1
+13,11,0,1,1,9,2,1,3,23,8,13,3,0,0,4,1
+17,10,3,2,1,41,2,1,0,21,1,12,11,0,0,4,1
+18,1,2,2,1,13,2,1,3,4,8,0,33,0,0,4,1
+25,0,2,2,1,44,1,1,0,23,5,13,46,0,0,4,1
+36,11,3,2,1,44,1,1,0,8,10,12,11,0,0,4,1
+17,8,3,1,1,21,1,2,0,2,5,11,11,0,0,4,1
+8,1,3,2,2,66,1,2,0,29,5,14,11,0,0,4,1
+30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
+15,10,3,3,1,18,2,1,0,10,10,9,11,91,1,1,1
+12,1,3,1,1,9,1,1,0,6,5,13,22,0,0,4,1
+17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
+4,0,3,2,1,39,1,1,0,3,3,9,0,0,0,4,1
+10,8,2,2,1,53,2,2,0,29,5,6,11,0,0,4,1
+24,0,0,2,1,70,1,1,0,23,4,15,0,0,0,4,1
+7,1,3,2,1,2,2,1,3,10,6,15,45,0,0,4,1
+26,5,2,3,1,37,2,1,0,26,3,12,0,0,0,4,1
+22,1,0,1,1,9,2,1,3,26,8,15,0,0,0,4,0
+26,1,2,2,1,7,2,1,3,26,8,7,0,0,0,4,0
+35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+16,1,2,2,1,30,2,1,3,26,8,8,0,0,0,4,0
+33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
+14,0,0,2,1,5,1,2,0,9,5,4,33,0,0,4,1
+30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
+14,1,3,2,1,13,2,1,0,8,5,3,0,0,0,4,1
+17,5,3,3,1,39,1,1,0,5,1,14,11,0,0,4,1
+31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
+37,1,2,4,1,64,1,1,3,27,6,12,22,0,0,4,1
+25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
+11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
+33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
 21,5,2,3,1,35,2,1,0,6,5,14,22,0,0,4,1
-25,5,2,2,1,11,2,2,2,20,11,3,0,0,0,4,1
-26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
-23,5,2,3,1,56,1,1,0,12,1,12,11,0,0,4,1
-40,6,0,3,1,39,1,1,2,24,11,11,0,0,0,4,1
-10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
-25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
-17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
-8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
-38,5,2,3,1,9,1,2,3,12,6,9,0,0,0,4,1
-9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
-9,5,3,3,1,15,2,1,3,21,8,13,22,0,0,4,1
-36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
-37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
-32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
-22,8,0,2,1,62,2,1,0,11,3,11,0,120,1,3,1
-19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
-56,6,2,2,1,22,1,1,2,8,3,3,0,0,0,4,1
-39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+10,10,3,3,1,20,2,1,0,17,5,4,11,0,0,4,1
+30,5,2,3,1,29,1,1,0,9,10,12,0,0,0,4,1
+13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
+24,1,2,4,1,46,2,1,3,26,8,1,11,0,0,4,0
+16,0,2,2,1,4,2,2,0,1,5,15,0,0,0,4,1
+16,0,0,2,1,3,1,1,0,9,5,12,0,0,0,4,1
+17,5,0,3,1,68,2,2,0,10,10,5,0,0,0,4,1
+31,10,3,2,1,17,1,1,0,26,1,15,0,0,0,4,1
+15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
+41,6,2,2,1,30,1,1,0,19,1,0,43,0,0,4,1
+19,5,2,3,1,45,1,1,0,19,1,0,33,0,0,4,1
+22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
+38,11,2,2,1,9,1,1,2,11,3,10,0,0,0,4,1
+24,10,0,2,1,38,2,1,3,23,11,7,0,0,0,4,1
+15,0,2,2,1,9,2,1,2,8,5,4,45,0,0,4,1
+38,10,2,2,1,57,2,1,3,15,11,10,0,53,12,3,1
+20,10,2,2,1,9,1,1,0,29,5,12,0,0,0,4,1
 12,5,3,3,1,47,1,1,0,3,1,13,33,0,0,4,1
-26,8,0,2,1,32,2,1,3,26,8,5,0,0,0,4,0
+27,10,3,3,1,9,1,1,0,9,1,13,33,0,0,4,1
+42,1,0,2,1,9,2,1,3,21,8,2,0,0,0,4,1
+10,1,2,2,1,34,2,1,3,27,6,9,11,0,0,4,1
 29,1,2,2,1,14,2,1,2,3,10,9,0,0,0,4,1
-12,5,3,3,1,59,1,1,0,19,3,6,11,0,0,4,1
-36,5,0,3,1,27,2,2,2,9,10,0,0,0,0,4,1
-29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
-25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
-38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
-15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
+21,8,0,2,1,62,2,1,0,30,5,14,0,0,0,4,1
+34,5,2,3,1,45,1,1,0,10,10,3,22,0,0,4,1
+24,5,0,4,1,65,1,1,0,7,3,4,11,0,0,4,1
+17,5,3,3,1,34,1,1,0,26,3,12,0,0,0,4,1
+17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
+15,2,2,2,1,25,2,2,3,26,8,13,0,0,0,4,0
+27,0,3,2,1,26,2,1,3,26,8,6,0,0,0,4,0
+22,8,2,2,1,51,2,1,0,20,5,9,22,0,0,4,1
 21,1,2,1,1,34,2,1,3,26,8,9,0,0,0,4,0
-20,10,0,3,1,23,1,1,3,30,6,15,11,0,0,4,1
-22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
-15,10,2,2,1,45,2,2,3,9,6,12,11,0,0,4,1
-21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
-36,8,2,4,1,9,2,1,0,26,3,12,11,184,1,1,1
-35,10,2,2,1,16,1,1,3,10,6,3,22,0,0,4,1
-25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
-19,1,2,2,1,43,2,1,3,26,8,6,0,0,0,4,0
-17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
-13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
-25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
-28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
-8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
-25,10,2,2,1,48,2,1,3,26,8,2,0,0,0,4,0
-23,5,2,3,1,9,2,1,0,9,10,15,22,0,0,4,1
-13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
-12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
-41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
-16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
-29,8,2,2,1,15,1,1,0,12,10,8,33,0,0,4,1
-18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
+33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
+25,5,2,3,1,9,1,1,0,5,5,2,22,0,0,4,1
+16,10,3,2,1,34,2,1,0,9,10,14,0,0,0,4,1
+16,5,2,3,1,67,1,2,0,2,1,1,22,0,0,4,1
+28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
+29,5,0,3,1,13,2,1,2,19,11,7,0,0,0,4,1
+29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
+34,1,2,2,1,57,1,1,0,13,10,15,11,0,0,4,1
+13,11,0,3,1,32,2,1,0,7,5,14,11,0,0,4,1
+20,5,2,3,1,59,1,1,0,22,3,7,0,0,0,4,1
+22,5,2,3,1,4,2,1,3,26,8,6,0,0,0,4,0
+16,10,3,2,1,68,2,1,3,12,8,2,33,0,0,4,1
+15,1,0,1,1,44,2,1,3,30,8,12,11,0,0,4,1
+29,5,3,3,1,32,1,2,0,23,5,14,33,0,0,4,1
+37,5,0,3,1,9,1,1,0,9,1,8,33,0,0,4,1
+15,1,2,2,1,69,2,1,0,9,5,8,11,0,0,4,1
+25,11,2,1,1,54,1,1,3,12,6,15,11,0,0,4,1
+12,1,3,2,1,30,2,1,3,15,8,13,0,0,0,4,1
+28,1,2,1,1,71,1,2,2,11,3,9,22,0,0,4,1
 12,1,3,2,1,19,2,2,0,30,5,4,22,0,0,4,1
-22,1,2,1,1,34,2,1,3,15,8,0,22,0,0,4,1
-30,2,3,3,1,38,2,1,0,26,3,0,33,0,0,4,1
-21,2,2,1,1,48,2,1,3,19,11,4,0,0,0,4,1
-23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
-12,8,3,2,1,52,2,1,0,13,10,12,0,0,0,4,1
-26,0,0,1,1,47,2,1,2,15,11,14,0,0,0,4,1
-17,0,0,2,1,42,1,2,0,13,10,14,11,0,0,4,1
-33,10,2,2,1,9,1,1,0,11,3,10,11,0,0,4,1
-13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
-26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
-10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
-22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
-21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
+13,5,3,3,1,15,2,1,0,27,3,5,0,551,1,3,1
+29,0,2,2,1,28,2,1,3,26,8,11,0,0,0,4,0
+19,0,2,2,1,34,2,1,3,19,8,13,22,0,0,4,1
+36,5,2,2,1,12,2,1,0,17,5,3,22,0,0,4,1
+16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
+35,3,0,1,1,70,2,1,3,26,8,5,0,0,0,4,0
+31,0,2,2,1,47,2,1,3,26,8,10,0,0,0,4,0
+27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
+51,5,2,3,1,67,1,1,2,26,3,3,22,0,0,4,1
+28,0,3,2,1,68,2,1,3,26,6,10,11,0,0,4,1
 9,10,2,2,1,4,2,1,0,15,5,7,11,0,0,4,1
+33,6,2,3,1,57,1,1,0,10,10,12,11,0,0,4,1
+9,8,2,2,1,9,2,1,0,8,5,16,38,0,0,4,1
+13,2,3,3,2,5,2,2,0,4,1,12,11,0,0,4,1
+12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
+37,1,2,1,1,53,1,1,0,26,1,2,11,0,0,4,1
+24,11,2,4,1,71,2,1,2,13,5,12,1,0,0,4,1
+41,3,0,1,1,31,1,1,0,23,5,12,22,0,0,4,1
+27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
+28,11,0,2,1,40,2,1,0,10,10,10,0,82,1,3,1
+8,1,3,2,1,3,2,1,0,1,5,16,33,0,0,4,1
+31,11,2,1,1,54,1,1,0,21,4,6,11,0,0,4,1
+32,10,2,3,1,29,1,1,0,26,1,11,0,0,0,4,1
+23,8,2,4,1,19,1,1,0,21,5,13,11,0,0,4,1
+10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
+38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
+7,8,2,2,1,52,2,1,3,26,8,8,0,0,0,4,0
+18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
+12,5,2,3,1,24,2,2,0,13,10,9,11,86,24,1,1
+16,1,3,2,1,37,2,2,0,12,10,12,0,0,0,4,1
+22,1,2,2,1,8,2,2,0,7,5,0,11,0,0,4,1
+12,2,3,1,1,9,2,2,3,19,8,1,0,0,0,4,1
+17,5,2,3,1,5,2,1,0,23,5,11,46,0,0,4,1
+41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
+40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
+13,11,2,2,1,68,2,2,3,22,6,15,11,0,0,4,1
+42,5,2,3,1,28,2,1,0,2,5,1,11,0,0,4,1
+15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
+30,8,2,4,1,21,2,1,3,26,8,1,0,0,0,4,0
+36,10,0,2,1,27,2,1,0,22,3,7,0,105,30,0,1
+15,5,2,3,1,61,1,1,0,26,1,1,11,0,0,4,1
+27,5,2,3,1,61,1,1,3,12,6,12,22,0,0,4,1
+14,1,2,2,1,51,2,1,0,15,5,15,47,0,0,4,1
+5,1,3,2,1,52,2,1,3,25,6,12,0,0,0,4,1
+15,10,3,3,1,9,2,1,0,13,10,12,0,0,0,4,1
 14,1,2,2,1,54,2,1,3,26,8,11,0,0,0,4,0
-28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
-28,5,3,2,1,3,2,1,3,26,8,7,11,0,0,4,0
-19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
-11,5,3,3,1,55,1,1,0,9,3,4,0,0,0,4,1
-21,5,2,3,1,23,1,1,0,27,1,15,22,0,0,4,1
-32,10,2,2,1,38,1,1,0,28,1,12,0,0,0,4,1
+33,10,2,2,1,25,2,2,0,8,3,14,0,0,0,4,1
+20,2,2,2,1,58,2,2,0,16,5,4,16,0,0,4,1
+32,8,2,2,1,56,2,1,3,26,8,9,11,0,0,4,0
+30,1,2,2,1,9,2,1,3,3,6,3,11,0,0,4,1
+35,1,2,1,1,31,1,1,0,24,5,13,33,0,0,4,1
+17,3,2,1,1,12,2,1,0,8,5,15,11,0,0,4,1
+15,5,2,3,1,40,1,1,0,12,10,7,0,0,0,4,1
+10,1,3,2,1,54,1,2,0,29,5,12,0,0,0,4,1
+18,8,2,2,1,71,1,1,3,7,6,1,0,0,0,4,1
+39,5,0,3,1,69,2,1,0,3,1,14,11,0,0,4,1
+29,1,2,4,1,37,2,1,3,26,8,3,0,0,0,4,0
+18,8,2,2,1,37,2,1,3,26,8,7,0,0,0,4,0
+8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
+10,1,2,1,1,39,2,1,3,26,8,6,0,0,0,4,0
+42,1,2,1,1,15,2,2,3,4,8,0,0,0,0,4,1
+21,10,2,2,1,11,2,1,0,17,5,3,47,0,0,4,1
+35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
+22,5,2,3,1,40,2,1,0,10,10,12,11,187,1,3,1
+31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
+19,5,3,3,1,69,1,1,3,3,6,0,22,0,0,4,1
+37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
+15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
+18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
+24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
+31,1,0,1,1,9,2,2,3,26,8,9,0,0,0,4,0
+21,5,3,3,1,32,2,1,3,26,8,8,0,0,0,4,0
+26,5,2,3,1,66,1,1,0,17,1,12,45,0,0,4,1
+20,10,2,2,1,9,2,1,0,14,5,5,0,0,0,4,1
+13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
+20,10,2,2,1,32,2,1,3,26,8,9,0,0,0,4,0
+20,0,0,2,1,24,2,1,3,23,8,11,11,0,0,4,1
 22,11,0,2,1,21,1,1,0,3,1,10,43,0,0,4,1
-13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
-12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
-9,5,3,3,2,8,2,1,3,25,6,10,11,0,0,4,1
-17,5,0,3,1,17,1,2,0,12,10,13,0,0,0,4,1
+31,5,2,3,1,60,1,1,3,2,6,11,0,0,0,4,1
+42,5,2,3,1,39,1,1,3,8,6,7,22,0,0,4,1
+11,8,3,4,1,25,1,1,0,23,4,13,11,0,0,4,1
+20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
+38,1,0,1,1,66,2,1,3,26,8,5,11,0,0,4,0
+10,12,3,2,1,49,1,1,0,20,4,13,0,0,0,4,1
+21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
+9,2,2,3,1,17,1,1,0,6,5,10,38,0,0,4,1
+42,0,2,2,1,35,2,1,3,26,8,11,0,0,0,4,0
+37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
+15,2,3,3,1,37,2,2,0,23,4,15,38,0,0,4,1
+13,5,2,3,1,16,1,1,0,22,3,6,11,549,1,3,1
+34,1,0,1,1,2,2,1,3,6,8,13,0,0,0,4,1
+40,11,2,1,1,13,1,1,0,24,5,5,38,0,0,4,1
+14,1,2,2,1,32,2,1,0,10,10,5,22,0,0,4,1
+19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
+51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
+12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
+32,1,2,1,1,9,1,1,3,26,8,7,22,0,0,4,0
+8,10,2,2,1,43,1,2,0,29,5,1,33,0,0,4,1
+35,1,2,1,2,5,1,1,0,21,4,10,0,0,0,4,1
+28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
+31,5,2,3,1,10,2,1,0,9,10,15,0,0,0,4,1
+12,10,3,3,1,22,1,1,0,8,5,12,22,0,0,4,1
+29,10,2,2,1,56,2,1,0,3,1,5,0,0,0,4,1
+36,10,2,3,1,32,1,1,3,26,8,8,33,0,0,4,0
+20,10,0,3,1,23,1,1,3,30,6,15,11,0,0,4,1
+29,5,3,3,1,68,1,1,0,11,3,1,0,0,0,4,1
+32,5,2,3,1,17,1,1,0,17,1,13,43,0,0,4,1
+35,1,2,2,1,8,1,1,0,26,1,13,0,0,0,4,1
+35,10,2,2,1,8,2,1,3,19,8,2,0,0,0,4,1
+16,1,0,2,1,44,2,1,3,4,8,7,0,0,0,4,1
+41,6,3,2,1,41,2,1,3,19,8,1,38,0,0,4,1
+32,5,2,2,1,52,2,1,3,26,8,6,11,0,0,4,0
+14,7,2,2,1,53,2,1,0,2,5,14,0,0,0,4,1
+34,1,2,1,1,15,2,1,3,26,8,7,0,0,0,4,0
+23,8,0,3,1,20,2,1,0,30,5,12,0,0,0,4,1
+20,0,3,2,1,31,1,1,2,24,11,7,0,0,0,4,1
+23,5,2,3,1,22,2,2,3,26,8,9,0,0,0,4,0
+22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
+34,12,2,4,1,55,1,1,0,26,1,11,22,0,0,4,1
+37,10,2,2,1,9,2,2,0,11,7,2,0,0,0,4,1
+28,5,0,2,1,20,2,2,3,26,8,6,11,0,0,4,0
+13,5,3,3,1,43,1,1,0,29,1,12,11,0,0,4,1
+13,1,0,2,1,9,2,2,0,9,5,15,33,0,0,4,1
+12,1,2,2,1,51,2,1,3,21,8,1,22,0,0,4,1
+11,5,3,3,1,62,1,1,0,25,3,6,0,0,0,4,1
+23,0,0,2,1,33,2,1,3,26,8,7,0,0,0,4,0
+24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
+27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
+42,7,2,1,1,42,1,2,0,21,5,14,43,0,0,4,1
+24,10,0,2,1,24,1,1,0,12,1,14,33,0,0,4,1
+15,1,3,2,1,65,2,1,3,25,6,2,33,0,0,4,1
+11,1,3,2,1,69,2,1,3,12,6,5,0,0,0,4,1
+25,10,2,2,1,24,2,1,3,26,8,6,0,0,0,4,0
+35,1,2,2,1,22,2,1,0,13,10,13,38,61,1,0,1
+19,0,2,1,1,27,2,1,0,30,5,12,0,0,0,4,1
+9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
+31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
+42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
+5,2,3,1,1,45,2,1,3,4,8,9,11,0,0,4,1
+12,2,3,2,1,64,1,1,0,22,3,4,33,0,0,4,1
+14,1,3,3,1,62,1,1,3,4,10,15,0,0,0,4,1
+33,0,2,2,1,54,2,1,3,26,8,7,11,0,0,4,0
+25,5,2,3,1,45,2,1,3,26,8,7,0,0,0,4,0
+19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
+25,2,2,2,1,9,1,1,3,22,6,0,45,0,0,4,1
+27,10,2,2,1,68,2,1,3,26,8,7,0,0,0,4,0
+21,10,3,2,1,23,1,1,0,12,10,5,33,0,0,4,1
+18,5,2,3,1,69,1,1,0,2,1,9,33,0,0,4,1
+39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
+18,8,2,2,1,37,1,2,0,29,5,13,38,0,0,4,1
 22,10,2,2,1,47,1,1,0,4,1,6,11,0,0,4,1
-15,0,2,4,1,34,1,1,0,10,10,10,0,0,0,4,1
-18,1,2,2,1,49,2,1,3,12,8,10,0,0,0,4,1
-21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
-18,10,0,2,1,9,1,1,0,29,1,2,22,0,0,4,1
-13,0,2,2,1,71,2,1,3,10,8,11,0,0,0,4,1
-9,10,3,2,2,9,1,2,0,29,5,13,0,0,0,4,1
-21,1,3,1,1,57,2,1,0,19,3,7,0,188,1,1,1
-31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
-14,5,2,3,1,66,2,2,0,30,5,0,0,0,0,4,1
-18,11,2,3,1,19,1,1,0,18,1,11,45,0,0,4,1
-12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
-16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
-13,1,2,2,1,25,2,1,3,12,8,6,11,0,0,4,1
-17,10,2,2,1,9,2,1,0,10,10,12,33,0,0,4,1
+23,6,0,1,1,3,2,1,3,6,8,2,11,0,0,4,1
+16,5,2,3,1,61,1,1,2,2,10,10,0,0,0,4,1
+14,0,3,2,1,27,1,1,0,28,5,14,38,0,0,4,1
+21,10,2,3,1,70,2,2,3,7,8,14,0,0,0,4,1
+12,1,2,2,1,53,2,2,0,12,10,16,0,85,1,0,1
+14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
+12,10,3,3,1,69,2,2,3,10,8,15,43,0,0,4,1
+33,0,3,2,1,69,1,1,0,15,5,12,11,0,0,4,1
+17,1,3,2,1,14,2,2,3,26,8,6,0,0,0,4,0
+28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
+13,1,3,1,1,27,2,1,3,13,8,11,0,0,0,4,1
+41,11,2,2,1,10,1,1,0,9,3,14,22,0,0,4,1
+14,1,3,1,1,29,2,2,3,26,8,5,0,0,0,4,0
+31,8,2,2,1,38,1,1,2,30,3,6,33,0,0,4,1
+40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
+24,0,2,2,1,49,2,1,3,26,8,12,0,0,0,4,0
+19,7,2,2,1,20,1,1,0,28,5,12,11,0,0,4,1
+38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
+17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
+18,0,3,1,1,2,2,1,3,26,8,7,0,0,0,4,0
+13,10,3,3,1,26,1,1,0,3,1,3,45,0,0,4,1
+27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
 13,10,3,3,1,12,1,1,0,26,3,12,0,74,12,0,1
-13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
+13,1,2,1,1,6,2,2,0,13,5,0,45,0,0,4,1
+7,1,3,2,1,3,2,1,0,15,5,12,0,0,0,4,1
+40,6,2,4,1,69,1,1,0,13,5,15,33,0,0,4,1
+12,1,2,2,1,21,2,1,0,1,5,7,0,0,0,4,1
+25,5,2,3,1,45,1,1,0,1,3,4,0,0,0,4,1
+14,1,3,2,1,66,1,2,0,15,5,6,43,0,0,4,1
+8,8,3,2,1,2,1,2,0,8,5,11,11,0,0,4,1
+24,0,0,2,1,19,2,1,3,7,8,14,0,0,0,4,1
+22,0,3,3,1,33,1,1,0,12,1,10,11,0,0,4,1
+44,6,2,4,1,66,1,1,0,8,3,13,0,0,0,4,1
 33,10,2,3,1,16,2,2,0,1,3,5,0,158,1,0,1
-17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
-13,1,3,3,1,65,1,1,2,9,10,10,11,0,0,4,1
-26,10,2,3,1,50,2,1,3,6,8,15,11,0,0,4,1
-36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
-26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
-23,8,0,2,1,67,2,1,0,11,3,15,0,0,0,4,1
-19,8,3,2,1,34,2,1,3,22,6,0,22,0,0,4,1
-35,1,2,4,1,23,1,1,3,26,8,2,0,0,0,4,0
-9,10,3,2,1,52,2,1,0,23,5,9,33,0,0,4,1
-38,10,2,2,1,57,2,1,3,21,8,11,11,0,0,4,1
-12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
-33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
-37,3,2,2,1,15,2,1,2,13,5,1,46,0,0,4,1
-15,1,2,2,1,61,2,1,0,9,5,15,0,0,0,4,1
-14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
-13,0,3,2,1,48,2,2,3,12,8,0,0,0,0,4,1
-31,8,0,2,1,70,1,1,3,12,6,14,11,0,0,4,1
-10,8,2,2,1,53,2,2,0,29,5,6,11,0,0,4,1
-42,6,2,3,1,66,2,1,3,26,8,0,0,0,0,4,0
-24,10,2,3,1,17,2,1,0,27,1,12,33,0,0,4,1
-22,11,2,2,1,28,2,1,3,26,8,9,0,0,0,4,0
-29,10,2,3,1,19,2,1,3,26,8,6,0,0,0,4,0
-33,5,2,3,1,11,2,1,3,26,8,8,0,0,0,4,0
-41,10,2,2,1,16,2,2,0,15,5,9,33,0,0,4,1
-27,10,3,3,1,9,1,1,0,9,1,13,33,0,0,4,1
+41,3,0,1,1,25,1,1,3,26,8,9,11,0,0,4,0
+25,10,2,3,1,9,1,1,0,25,1,4,11,0,0,4,1
+18,10,3,2,1,46,2,1,3,23,8,14,22,0,0,4,1
+9,8,3,2,1,55,2,1,3,20,8,11,11,0,0,4,1
+33,2,2,1,1,18,1,1,0,9,3,5,1,0,0,4,1
+35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
+28,11,2,2,1,70,1,1,0,28,5,9,38,0,0,4,1
+21,10,3,2,1,10,2,1,3,12,8,4,11,0,0,4,1
+35,1,2,2,1,62,2,1,3,26,8,11,11,0,0,4,0
+27,1,0,1,1,4,2,1,3,15,8,0,0,0,0,4,1
+27,0,3,4,1,15,2,1,3,26,8,16,0,0,0,4,0
+14,5,2,3,1,21,1,1,2,5,1,12,11,0,0,4,1
+36,10,2,2,1,17,2,1,3,26,8,7,0,0,0,4,0
+14,10,3,2,1,56,2,1,3,23,8,13,22,0,0,4,1
+14,0,2,2,1,20,1,2,0,28,5,12,0,0,0,4,1
+32,5,3,3,1,41,1,1,3,16,11,8,0,0,0,4,1
 19,5,2,3,1,57,2,1,3,26,8,16,11,0,0,4,0
-19,5,3,3,1,28,1,2,0,13,10,8,11,0,0,4,1
-9,1,2,1,1,47,2,1,3,23,8,2,11,0,0,4,1
-49,6,2,3,1,16,1,1,0,4,3,12,0,0,0,4,1
-18,10,2,2,1,43,2,2,3,27,8,5,11,0,0,4,1
-25,5,2,3,1,30,1,1,0,4,1,9,43,0,0,4,1
-17,7,0,3,1,16,2,1,3,15,8,13,11,0,0,4,1
-36,5,2,2,1,12,2,1,0,17,5,3,22,0,0,4,1
-22,1,2,2,1,14,2,1,3,26,8,11,38,0,0,4,0
-8,10,3,2,1,42,1,1,0,7,5,11,0,0,0,4,1
-38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
-30,5,0,3,1,53,1,2,3,3,6,2,45,0,0,4,1
-40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
+36,5,0,3,1,52,2,1,3,13,8,14,33,0,0,4,1
+18,5,0,3,1,66,1,2,0,14,5,11,0,0,0,4,1
+15,8,3,3,1,5,1,1,0,21,4,12,11,0,0,4,1
+8,8,2,2,1,4,2,2,0,14,5,2,45,0,0,4,1
+22,1,2,2,1,51,2,1,3,26,8,8,11,0,0,4,0
+4,0,3,3,1,69,2,1,0,25,3,3,33,0,0,4,1
+10,9,3,2,1,19,1,1,0,15,5,1,11,0,0,4,1
+12,1,3,2,1,65,2,1,0,12,10,12,0,0,0,4,1
+28,1,2,1,1,43,2,1,3,4,8,15,11,0,0,4,1
+33,1,2,4,1,2,2,1,3,26,8,5,11,0,0,4,0
+35,5,2,3,1,18,1,1,0,12,1,15,11,0,0,4,1
+41,1,2,1,1,38,2,1,3,6,8,12,0,0,0,4,1
+12,10,2,3,1,55,2,1,3,18,8,9,11,0,0,4,1
+30,5,0,3,1,3,2,1,3,26,8,7,0,0,0,4,0
+18,2,2,3,1,37,1,1,3,7,6,8,33,0,0,4,1
+9,10,2,2,1,27,2,2,3,13,8,14,0,0,0,4,1
+12,5,2,3,1,19,2,1,0,3,1,1,33,0,0,4,1
+22,11,2,2,1,25,2,1,3,11,6,11,43,0,0,4,1
+15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
+14,10,3,3,1,55,1,1,2,14,11,6,0,0,0,4,1
+19,0,3,2,1,31,2,2,3,28,8,13,11,0,0,4,1
+44,3,2,4,1,25,1,1,2,18,3,9,0,0,0,4,1
+39,10,2,2,1,66,2,1,3,26,8,12,11,0,0,4,0
+18,1,2,1,1,46,2,1,3,25,6,15,0,0,0,4,1
+27,5,2,3,1,54,2,1,3,26,8,14,11,0,0,4,0
+40,1,2,2,1,31,1,1,3,30,6,10,22,0,0,4,1
+25,5,0,2,1,53,1,1,0,11,3,9,0,0,0,4,1
+10,11,2,1,1,64,2,1,0,11,3,16,38,186,12,0,1
+18,8,2,2,1,9,1,1,0,23,5,14,11,0,0,4,1
+17,5,3,3,1,64,2,1,3,23,11,7,0,0,0,4,1
+32,0,2,2,1,46,1,1,0,13,10,11,0,0,0,4,1
+10,0,0,2,1,66,2,1,3,29,8,10,11,0,0,4,1
+40,5,0,3,1,14,1,1,0,26,1,5,0,0,0,4,1
+39,1,2,1,1,31,2,1,3,26,8,5,0,0,0,4,0
+32,1,2,4,1,29,2,1,2,24,5,1,8,0,0,4,1
+41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
+17,5,0,3,1,62,2,1,0,30,5,1,0,0,0,4,1
+11,8,3,1,1,40,1,1,3,25,5,5,22,0,0,4,1
+39,6,2,1,1,41,2,1,0,17,1,12,22,0,0,4,1
+34,3,2,2,1,45,2,1,3,5,8,15,22,0,0,4,1
+24,10,2,3,1,2,1,1,3,12,6,5,38,0,0,4,1
+43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
+41,2,0,2,1,69,2,1,3,26,8,13,22,0,0,4,0
+12,8,3,3,1,5,1,2,0,13,1,5,11,0,0,4,1
+24,5,0,3,1,14,1,1,0,18,1,0,33,0,0,4,1
+19,5,2,3,1,9,1,1,3,7,6,12,43,0,0,4,1
 10,5,3,3,1,70,2,1,3,19,8,13,0,0,0,4,1
-26,0,0,2,1,45,2,2,0,7,3,3,0,173,1,1,1
-36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
-12,7,3,3,1,48,2,1,0,11,3,9,0,0,0,4,1
+18,5,3,3,1,65,2,1,3,23,8,15,0,0,0,4,1
+29,0,0,2,1,36,2,1,3,27,6,15,11,0,0,4,1
+31,1,2,1,1,37,1,2,0,30,5,4,43,0,0,4,1
+28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
+34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
+19,10,3,2,1,40,2,1,3,13,8,14,0,0,0,4,1
+10,7,3,3,1,9,2,1,3,18,8,5,11,0,0,4,1
+28,10,0,3,1,9,1,1,0,20,4,2,11,0,0,4,1
+18,0,0,2,1,53,2,1,3,26,8,11,0,0,0,4,0
+16,10,0,3,1,61,2,1,0,28,1,11,11,0,0,4,1
+15,12,2,2,1,40,1,1,0,25,3,15,11,85,38,0,1
+44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
+7,7,3,2,1,14,2,1,3,20,8,11,11,0,0,4,1
+32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
 20,10,2,2,1,53,2,1,0,19,3,16,0,5,37,3,1
-51,6,2,1,1,39,1,1,0,25,3,3,33,0,0,4,1
-19,5,2,3,1,19,1,1,0,10,10,9,22,0,0,4,1
-35,5,0,3,1,27,1,1,0,4,3,13,22,0,0,4,1
-41,0,2,2,1,29,2,1,3,26,8,0,0,0,0,4,1
-18,7,3,3,1,51,1,1,3,30,6,1,22,0,0,4,1
-15,11,3,3,1,61,1,1,0,5,1,5,11,0,0,4,1
-13,8,3,2,1,15,1,2,0,27,3,0,11,0,0,4,1
+10,10,3,2,2,0,2,1,3,27,6,13,11,0,0,4,1
+29,2,2,2,1,9,1,1,3,26,6,4,0,0,0,4,1
+5,1,2,2,1,70,2,1,3,26,8,6,0,0,0,4,0
+37,5,2,3,1,4,1,1,0,23,5,14,11,0,0,4,1
+28,7,2,3,1,16,2,2,3,26,8,7,0,0,0,4,0
 14,8,3,3,1,70,1,1,0,12,10,11,0,0,0,4,1
+35,8,0,2,1,18,2,1,3,26,8,2,0,0,0,4,0
 42,6,0,2,1,55,2,1,3,27,8,0,0,0,0,4,1
-32,10,0,2,1,45,1,1,3,12,6,13,11,0,0,4,1
-20,5,2,3,1,13,2,1,3,4,8,11,33,0,0,4,1
-24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
-55,6,2,3,1,20,2,1,0,19,3,10,11,0,0,4,1
-19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
-14,1,2,1,1,60,1,1,0,21,4,12,0,0,0,4,1
-28,8,0,2,1,9,1,1,3,12,6,0,22,0,0,4,1
-7,1,2,2,1,9,1,2,0,6,5,4,33,0,0,4,1
-37,6,2,1,1,40,1,1,0,5,1,12,33,0,0,4,1
-37,3,2,1,1,9,2,1,0,8,5,3,11,0,0,4,1
-31,5,2,3,1,44,2,1,3,26,8,7,0,0,0,4,0
-43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
-10,1,3,2,1,65,2,1,3,30,8,13,0,0,0,4,1
-27,10,2,3,1,6,1,2,0,13,10,16,11,0,0,4,1
-23,10,0,2,1,46,2,1,0,9,3,8,0,0,0,4,1
-12,10,3,3,1,15,2,1,3,13,8,5,11,0,0,4,1
-28,2,2,3,1,24,1,1,0,14,1,11,43,0,0,4,1
-39,10,2,3,1,62,1,1,0,28,1,14,11,0,0,4,1
-21,1,2,4,1,13,2,1,0,23,5,12,11,0,0,4,1
-13,0,3,2,1,24,2,1,0,9,10,6,0,0,0,4,1
-14,8,3,2,1,51,1,1,0,21,4,2,0,0,0,4,1
-14,9,3,3,1,12,1,1,2,1,3,9,22,0,0,4,1
-8,10,3,3,1,13,1,1,0,4,3,2,0,0,0,4,1
-39,10,2,1,1,9,1,1,3,26,8,16,0,0,0,4,0
-25,8,0,2,1,10,2,1,3,10,8,11,22,0,0,4,1
-14,5,2,3,1,58,2,1,3,9,6,1,38,0,0,4,1
-41,6,0,1,1,9,2,1,3,26,6,15,11,0,0,4,1
-22,7,2,2,2,8,2,2,3,22,6,15,22,0,0,4,1
+17,5,2,3,1,47,1,1,0,2,1,15,33,0,0,4,1
+30,7,2,3,1,9,1,1,0,21,4,3,22,0,0,4,1
+38,10,0,2,1,18,2,1,0,26,1,9,22,0,0,4,1
+12,10,2,3,1,54,2,2,3,18,6,12,22,0,0,4,1
+4,9,3,2,1,44,1,1,0,3,3,7,0,0,0,4,1
+17,0,3,2,1,53,2,1,0,14,5,11,11,0,0,4,1
+12,1,3,2,1,52,1,1,0,23,4,14,11,0,0,4,1
+24,1,0,1,1,27,2,1,0,28,5,9,22,0,0,4,1
+36,7,0,1,1,41,2,1,3,27,6,12,11,0,0,4,1
+15,2,0,3,1,43,1,2,0,29,5,1,0,0,0,4,1
+13,11,2,2,1,38,2,1,0,12,10,3,22,86,38,0,1
+13,8,2,3,1,43,2,1,3,26,8,8,0,0,0,4,0
+18,5,2,3,1,9,1,1,2,19,1,12,47,0,0,4,1
+19,5,2,2,1,55,2,2,0,8,10,6,0,0,0,4,1
+19,0,2,2,1,15,2,1,0,3,3,2,33,123,24,0,1
+6,1,3,2,2,2,2,1,3,3,6,10,22,0,0,4,1
+35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
+18,5,0,3,1,9,1,1,0,25,1,2,0,0,0,4,1
+25,5,3,3,1,26,2,1,3,29,8,13,0,0,0,4,1
+42,1,2,4,1,55,2,1,3,26,8,7,0,0,0,4,0
+35,10,2,2,1,58,2,1,3,26,8,10,0,0,0,4,0
+33,1,2,1,1,22,2,1,3,26,8,11,11,0,0,4,0
+33,5,3,2,1,20,2,1,3,7,6,2,22,0,0,4,1
+11,0,3,2,1,20,2,2,3,7,8,14,0,0,0,4,1
+13,10,3,3,1,63,2,1,3,29,8,15,11,0,0,4,1
+17,1,0,2,1,9,2,1,3,12,8,2,0,0,0,4,1
 13,1,2,2,1,9,2,1,3,26,8,4,0,0,0,4,0
-24,2,3,4,1,39,1,1,3,7,6,12,0,0,0,4,1
-39,1,2,2,1,35,1,1,0,13,1,14,1,0,0,4,1
-19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
-38,10,0,4,1,56,2,1,3,26,8,10,0,0,0,4,0
-12,1,2,2,1,21,2,1,2,12,11,6,0,0,0,4,1
-17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
-17,5,2,3,1,29,2,1,3,26,8,4,0,0,0,4,0
+13,11,3,2,1,14,1,1,0,25,3,15,0,0,0,4,1
+15,5,3,3,1,42,1,1,0,4,3,5,11,540,24,0,1
+17,1,2,2,1,56,2,1,0,12,10,15,11,0,0,4,1
+26,3,3,1,1,11,1,1,3,9,6,7,0,0,0,4,1
+16,8,3,2,1,3,1,1,0,13,5,3,22,0,0,4,1
+11,5,2,3,1,25,2,2,3,28,8,5,33,0,0,4,1
+10,10,3,3,1,52,1,1,0,30,3,7,13,0,0,4,1
+43,6,2,1,1,25,1,1,0,8,3,1,0,0,0,4,1
+23,8,2,2,1,9,2,1,3,26,8,1,11,0,0,4,0
+32,0,3,2,1,16,1,1,0,20,5,15,33,0,0,4,1
+10,1,3,2,1,1,2,1,0,25,5,0,22,0,0,4,1
 7,9,2,3,1,9,2,1,0,13,5,14,33,0,0,4,1
-18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
-9,1,3,2,2,3,1,1,3,15,6,10,11,0,0,4,1
-35,8,2,4,1,32,2,1,3,26,8,7,11,0,0,4,0
-12,1,2,2,1,34,2,2,3,15,8,1,0,0,0,4,1
-39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
-41,6,2,2,1,62,1,1,2,12,10,0,11,0,0,4,1
+14,10,3,2,1,13,2,1,0,12,1,13,11,0,0,4,1
+9,2,2,2,1,29,1,1,2,19,11,3,0,0,0,4,1
+16,1,3,2,1,49,2,1,0,13,10,15,0,0,0,4,1
+24,5,3,3,2,9,2,1,0,13,10,14,0,0,0,4,1
+22,8,2,2,1,50,2,1,0,16,5,9,33,0,0,4,1
+19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
+18,5,2,3,1,68,2,2,3,13,8,15,11,0,0,4,1
+37,11,0,2,1,44,2,1,3,27,8,15,0,0,0,4,1
+15,1,2,2,1,38,1,1,0,25,3,4,22,0,0,4,1
+15,5,3,3,1,33,1,1,0,20,1,11,8,0,0,4,1
+16,2,2,3,1,18,2,1,0,5,5,13,11,0,0,4,1
+19,0,0,2,1,19,2,1,0,13,10,11,33,0,0,4,1
+19,5,2,3,1,49,1,1,0,4,1,14,38,0,0,4,1
+27,1,2,1,1,55,2,1,0,12,10,14,11,0,0,4,1
+14,7,3,3,1,14,2,1,0,10,10,10,0,0,0,4,1
+38,10,2,2,1,61,2,1,2,25,10,10,0,0,0,4,1
+17,10,3,2,1,21,2,1,0,1,3,10,0,0,0,4,1
+16,10,2,2,1,53,2,1,3,26,8,6,11,0,0,4,0
+13,5,3,3,1,46,1,2,0,30,5,11,38,0,0,4,1
+31,1,2,1,1,1,2,1,0,28,5,10,22,0,0,4,1
+13,7,3,3,1,21,2,2,0,20,4,14,0,0,0,4,1
+23,10,2,2,1,11,1,1,0,2,3,1,22,0,0,4,1
+12,10,2,2,1,49,2,1,0,13,10,13,0,0,0,4,1
+17,5,3,3,1,62,1,1,3,27,6,1,0,0,0,4,1
+21,1,2,1,1,62,1,1,3,29,8,14,0,0,0,4,1
+14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
+29,10,2,2,1,25,2,1,0,13,5,15,11,0,0,4,1
+32,1,2,1,1,58,2,1,3,26,8,12,22,0,0,4,0
+22,0,3,3,1,14,1,1,3,2,6,3,11,0,0,4,1
+16,5,2,3,1,29,2,1,3,18,8,15,33,0,0,4,1
+20,10,0,2,1,69,2,1,0,22,3,12,0,0,0,4,1
+32,0,2,2,1,33,1,1,2,23,5,0,43,0,0,4,1
+18,10,3,2,2,13,1,1,0,3,1,11,11,0,0,4,1
+20,1,2,2,1,4,2,1,3,26,8,8,0,0,0,4,0
+24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
+33,8,0,2,1,60,1,2,0,6,5,14,0,0,0,4,1
+11,10,2,2,1,34,1,1,0,25,3,8,11,0,0,4,1
+22,7,2,2,1,61,2,1,3,26,8,5,11,0,0,4,0
 29,5,2,3,1,58,1,1,0,10,1,8,6,0,0,4,1
-35,10,0,2,1,71,2,1,3,26,8,14,0,0,0,4,0
-36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
+39,6,0,1,1,59,1,2,0,17,5,4,8,0,0,4,1
 40,5,2,3,1,40,1,1,0,26,3,8,38,0,0,4,1
-27,5,0,3,1,68,1,2,0,29,5,13,0,0,0,4,1
+17,9,3,4,1,36,2,1,3,26,8,11,11,0,0,4,0
+22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
+42,0,2,2,1,44,2,2,3,26,8,6,0,0,0,4,0
+13,5,2,3,1,16,1,1,3,26,10,7,0,0,0,4,1
+18,8,2,1,1,9,2,1,3,11,6,0,0,0,0,4,1
+34,5,2,4,1,28,2,1,3,4,8,14,0,0,0,4,1
+21,5,2,2,1,13,2,1,0,2,1,13,11,0,0,4,1
+28,5,0,3,1,27,2,1,0,15,5,14,0,0,0,4,1
+28,5,2,3,1,9,1,1,0,9,10,13,11,13,24,1,1
+8,9,3,2,1,9,1,1,0,11,3,2,11,0,0,4,1
+43,5,2,3,1,58,1,1,0,11,3,12,22,0,0,4,1
+19,5,2,3,1,56,1,1,0,26,3,8,0,0,0,4,1
+16,1,2,1,1,10,2,1,3,21,8,13,22,0,0,4,1
+17,1,0,1,1,23,2,1,0,24,5,12,43,0,0,4,1
+42,6,2,1,1,19,2,1,3,5,8,15,0,0,0,4,1
+8,11,3,2,1,59,1,1,0,20,4,4,11,0,0,4,1
+15,1,3,3,1,62,1,1,0,30,3,3,0,546,1,3,1
+32,2,2,3,1,2,2,1,0,15,5,3,11,0,0,4,1
+23,5,3,3,1,12,1,1,3,9,6,5,0,0,0,4,1
+12,0,0,2,1,43,2,1,3,25,6,10,6,0,0,4,1
+20,0,2,2,1,9,1,1,3,26,8,4,0,0,0,4,0
+33,0,3,3,1,45,1,1,2,20,4,15,11,0,0,4,1
+28,8,2,1,1,23,2,1,3,26,8,6,0,0,0,4,0
+16,8,2,2,1,36,1,1,0,27,1,14,11,0,0,4,1
+33,8,0,2,1,30,1,2,0,5,5,3,33,0,0,4,1
+7,0,3,2,1,51,1,2,0,22,3,6,0,0,0,4,1
+15,5,2,3,1,10,1,1,0,29,1,10,33,0,0,4,1
+14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
+19,10,2,2,1,34,2,1,3,26,8,3,0,0,0,4,0
+38,10,0,1,1,15,2,1,3,26,8,9,11,0,0,4,0
+23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
+42,6,0,2,1,11,1,1,0,23,5,10,38,0,0,4,1
 18,5,2,3,1,9,2,2,3,26,8,9,0,0,0,4,0
-33,11,2,2,1,29,1,1,0,14,1,13,0,0,0,4,1
+8,1,3,2,2,4,2,1,3,22,6,10,11,0,0,4,1
+18,11,0,2,1,68,1,1,0,3,1,9,22,0,0,4,1
+26,10,0,2,1,71,2,1,3,12,8,12,22,0,0,4,1
+34,6,0,3,1,4,2,1,3,10,6,10,11,0,0,4,1
+12,10,3,2,1,67,2,1,3,5,10,6,0,0,0,4,1
+42,6,2,3,1,9,1,1,3,26,8,11,0,0,0,4,0
+27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
+34,8,2,1,1,20,1,1,0,29,1,10,11,0,0,4,1
+16,8,3,2,1,9,2,1,3,26,8,4,0,0,0,4,0
+34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
+36,1,2,2,1,15,2,1,3,26,8,7,0,0,0,4,0
+41,1,2,2,1,9,2,1,3,26,8,7,0,0,0,4,0
+18,8,2,2,1,36,2,1,3,11,6,9,0,0,0,4,1
+40,5,2,3,1,27,2,1,3,26,8,7,0,0,0,4,0
+41,1,2,1,1,6,1,1,0,17,1,2,43,0,0,4,1
+37,1,2,1,1,41,1,1,0,9,1,12,33,0,0,4,1
+6,10,3,2,1,0,2,2,3,26,8,4,0,0,0,4,0
+23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
+26,1,2,2,1,21,2,1,3,25,5,4,11,0,0,4,1
+41,3,2,3,1,9,1,1,2,4,10,10,0,0,0,4,1
+16,10,0,2,1,18,2,1,3,23,8,1,6,0,0,4,1
+31,8,2,2,1,8,2,1,3,29,8,1,0,0,0,4,1
+18,11,3,3,1,15,1,1,0,22,3,8,0,0,0,4,1
+20,10,2,1,1,27,2,1,3,30,6,10,43,0,0,4,1
+34,5,2,3,1,63,1,1,0,25,1,4,0,0,0,4,1
+24,6,2,2,1,56,2,1,3,26,8,7,0,0,0,4,0
+34,11,2,1,1,71,1,1,2,23,5,12,11,0,0,4,1
+18,7,3,2,1,15,1,1,0,12,10,2,0,0,0,4,1
+34,10,2,2,1,54,2,1,3,10,11,3,0,0,0,4,1
+22,8,2,1,1,9,2,1,3,6,8,15,11,0,0,4,1
+14,5,3,3,1,46,1,1,0,13,1,12,38,0,0,4,1
+20,10,2,3,1,48,1,1,0,25,3,4,33,0,0,4,1
+12,0,2,2,1,15,2,2,3,18,8,9,11,0,0,4,1
+27,0,0,2,1,57,2,1,0,16,5,14,46,0,0,4,1
+40,0,0,2,1,25,1,1,2,18,11,7,0,0,0,4,1
+12,5,3,3,1,43,2,1,0,13,10,13,0,0,0,4,1
+35,2,3,2,1,59,2,1,3,23,8,0,38,0,0,4,1
+37,1,2,1,1,29,2,1,3,26,8,8,0,0,0,4,0
+8,10,3,2,1,28,1,2,0,13,5,0,22,0,0,4,1
+36,10,2,2,1,4,1,2,0,1,5,6,0,0,0,4,1
+31,1,2,2,1,43,2,1,0,2,5,1,11,0,0,4,1
+31,1,2,2,1,9,1,2,0,30,5,12,0,0,0,4,1
+24,5,2,3,1,45,2,1,0,8,5,13,0,0,0,4,1
+11,10,3,3,1,61,2,1,0,30,3,14,22,0,0,4,1
+21,0,0,2,1,4,2,1,3,26,8,11,11,0,0,4,0
+12,5,3,3,1,53,1,2,0,9,5,11,0,0,0,4,1
+26,5,2,1,1,56,1,1,0,10,3,7,38,0,0,4,1
+16,0,2,2,1,68,1,1,3,27,8,5,0,0,0,4,1
+23,7,2,2,2,9,2,1,0,8,10,13,0,0,0,4,1
+19,1,3,2,1,53,1,2,0,17,5,12,33,0,0,4,1
+24,5,2,3,1,15,2,2,0,13,10,15,38,0,0,4,1
+40,5,0,3,1,53,2,1,0,9,10,4,11,0,0,4,1
+10,7,3,3,1,66,1,1,0,7,3,8,0,0,0,4,1
+39,10,0,2,1,59,2,1,3,26,8,7,0,0,0,4,0
+22,1,3,4,1,30,2,1,3,26,8,6,0,0,0,4,0
+35,1,2,1,1,41,2,1,0,17,5,12,38,0,0,4,1
+36,5,2,2,1,35,2,2,3,26,8,5,0,0,0,4,0
+12,5,3,3,1,19,1,1,0,9,1,10,46,0,0,4,1
+39,6,0,3,1,64,1,1,0,27,1,3,33,0,0,4,1
 27,5,0,2,1,60,2,1,0,10,10,9,0,75,1,3,1
-19,11,3,2,1,48,1,1,0,21,4,5,0,0,0,4,1
-13,5,2,3,1,17,2,1,0,25,3,11,11,152,38,1,1
-22,5,3,3,1,16,1,1,0,21,4,4,0,0,0,4,1
-37,5,2,3,1,63,2,1,3,26,8,4,11,0,0,4,0
 38,10,2,3,1,63,1,1,0,13,1,12,33,0,0,4,1
-12,7,3,2,1,7,1,2,0,10,10,15,0,0,0,4,1
-12,8,2,2,1,51,2,1,0,24,5,12,4,0,0,4,1
-35,10,3,2,1,70,1,1,0,17,1,15,22,0,0,4,1
-13,10,2,3,1,13,1,1,0,29,1,0,0,0,0,4,1
-34,1,2,2,1,65,2,1,3,26,8,15,22,0,0,4,0
-18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
-15,5,3,3,1,7,2,1,3,26,8,9,0,0,0,4,0
-6,7,3,3,1,36,2,1,3,19,8,15,0,0,0,4,1
-15,8,3,2,1,21,1,1,0,28,5,13,0,0,0,4,1
-42,5,2,3,1,9,1,1,0,28,1,9,22,0,0,4,1
-26,10,0,2,1,34,1,1,0,8,10,1,0,0,0,4,1
-44,6,2,2,1,18,1,1,0,11,3,7,0,0,0,4,1
-24,5,2,3,1,42,1,1,0,13,10,12,22,0,0,4,1
-11,10,3,3,1,21,1,1,0,22,3,8,0,0,0,4,1
-27,5,0,3,1,9,1,1,0,27,1,10,11,0,0,4,1
-40,7,2,3,1,4,2,1,3,26,8,9,0,0,0,4,0
-35,10,2,2,1,51,1,1,3,27,6,12,11,0,0,4,1
+12,9,3,3,1,34,1,1,0,13,10,14,0,0,0,4,1
+28,10,2,2,1,40,2,1,3,30,8,13,0,0,0,4,1
+39,1,2,1,1,27,1,1,0,3,1,1,11,0,0,4,1
+10,10,3,2,1,38,1,1,0,30,3,2,11,0,0,4,1
+17,10,3,2,1,42,1,1,0,2,1,10,22,0,0,4,1
+21,0,3,2,1,28,2,2,2,13,10,2,47,0,0,4,1
+25,1,3,2,1,38,2,1,3,26,6,13,11,0,0,4,1
+9,10,3,3,1,9,2,1,3,26,8,9,0,0,0,4,0
+10,9,3,2,1,9,1,1,0,9,3,7,12,0,0,4,1
+13,1,2,3,1,4,1,1,0,12,10,15,11,0,0,4,1
 37,10,2,2,1,14,2,1,3,26,8,5,11,0,0,4,0
-16,1,3,2,1,68,2,1,0,7,5,11,0,0,0,4,1
-24,1,3,2,1,59,1,1,3,10,6,12,22,0,0,4,1
-15,1,2,2,1,9,1,1,0,21,5,10,43,0,0,4,1
-40,5,2,3,1,44,2,1,0,6,5,14,33,0,0,4,1
-12,5,3,3,1,15,2,1,0,27,10,4,0,0,0,4,1
-29,5,2,3,1,62,1,1,0,9,1,12,43,0,0,4,1
+12,2,2,2,1,15,1,2,0,10,10,11,11,0,0,4,1
+31,1,2,1,1,46,1,1,0,3,1,11,33,0,0,4,1
+12,8,0,1,1,50,2,1,0,9,5,10,0,0,0,4,1
+26,0,2,2,1,11,2,1,0,2,5,15,11,0,0,4,1
 8,8,3,2,1,69,2,1,3,18,8,13,11,0,0,4,1
-43,6,2,3,1,14,1,1,0,1,3,10,0,0,0,4,1
-8,11,3,2,1,12,1,1,0,30,5,11,0,0,0,4,1
-25,1,3,1,1,9,1,1,0,30,5,2,0,0,0,4,1
-32,11,2,2,1,43,2,1,3,23,8,14,22,0,0,4,1
-23,1,2,2,2,63,1,2,0,16,5,12,0,0,0,4,1
-30,10,2,2,2,9,1,1,3,23,8,12,0,0,0,4,1
-27,10,2,2,1,69,1,1,0,28,5,12,11,0,0,4,1
-10,10,3,3,1,31,2,1,2,19,3,8,11,0,0,4,1
-12,5,3,3,1,55,1,1,0,27,1,4,22,0,0,4,1
-8,1,2,2,1,31,2,1,3,7,8,2,22,0,0,4,1
-25,1,2,1,1,2,2,1,3,29,8,1,11,0,0,4,1
-16,5,3,3,1,38,2,1,3,26,8,1,11,0,0,4,0
-31,2,2,1,1,59,1,1,0,9,10,10,0,0,0,4,1
-31,10,0,2,1,37,1,1,0,16,5,9,11,0,0,4,1
-17,5,0,3,1,22,2,1,0,17,5,14,0,0,0,4,1
-32,2,2,1,1,50,2,1,3,6,8,12,25,0,0,4,1
-27,1,0,1,1,68,1,1,3,26,6,0,22,0,0,4,1
-26,10,0,2,1,15,2,1,3,18,8,13,2,0,0,4,1
-25,5,2,3,1,18,2,1,3,15,6,12,11,0,0,4,1
-6,9,3,2,1,47,2,1,3,26,8,7,22,0,0,4,0
-33,0,3,2,1,25,1,1,3,9,6,13,11,0,0,4,1
-33,1,2,2,1,39,1,2,3,7,6,13,22,0,0,4,1
-34,1,2,2,1,17,1,2,0,8,5,13,11,0,0,4,1
-31,5,2,3,1,39,2,1,3,26,8,7,22,0,0,4,0
-26,1,2,2,1,57,1,2,3,26,8,7,0,0,0,4,0
-23,10,2,2,1,71,1,1,0,14,1,8,1,0,0,4,1
-17,1,3,2,1,69,2,1,0,6,5,12,43,0,0,4,1
-28,0,0,2,1,28,1,1,0,4,3,2,0,0,0,4,1
-15,0,2,2,1,67,2,1,0,17,5,13,0,0,0,4,1
-14,8,3,2,1,32,1,1,0,10,10,14,0,0,0,4,1
-24,8,2,2,1,41,2,2,0,7,5,0,11,0,0,4,1
-28,10,2,2,1,56,1,1,3,20,8,13,0,0,0,4,1
-23,1,2,2,1,2,1,2,0,21,5,14,22,0,0,4,1
-35,6,2,3,1,29,1,1,0,8,10,1,11,57,1,3,1
-24,1,2,2,1,48,2,1,3,11,6,12,38,0,0,4,1
-14,1,2,2,1,24,2,1,0,7,5,13,11,0,0,4,1
-23,10,2,2,1,53,2,1,3,10,8,11,38,0,0,4,1
-28,0,2,2,1,56,2,2,3,6,8,12,22,0,0,4,1
+22,11,2,1,1,24,2,1,0,26,3,5,11,0,0,4,1
+14,8,2,2,1,33,2,2,0,10,10,4,0,0,0,4,1
+16,5,2,3,1,9,2,1,0,10,10,13,22,105,12,1,1
+18,0,2,2,1,14,2,1,0,10,10,6,11,0,0,4,1
+21,10,3,2,1,53,2,1,0,28,5,13,11,0,0,4,1
+27,0,2,2,1,30,1,1,0,12,1,12,11,0,0,4,1
+27,10,0,2,1,33,1,1,0,28,1,15,22,0,0,4,1
+18,5,3,3,1,36,1,1,0,9,1,14,46,0,0,4,1
+25,10,2,2,1,8,2,2,0,30,5,13,22,0,0,4,1
+17,1,2,3,1,37,1,1,3,3,6,2,43,0,0,4,1
+7,0,3,3,1,43,2,1,0,19,3,9,0,0,0,4,1
+37,8,2,2,1,31,2,1,3,26,8,11,0,0,0,4,1
+20,10,2,2,1,18,1,1,0,3,1,15,33,0,0,4,1
+29,0,0,2,1,56,2,2,2,8,11,10,0,0,0,4,1
+12,8,3,2,1,20,1,1,0,2,3,4,11,0,0,4,1
+14,5,3,3,1,33,2,1,0,3,1,15,11,0,0,4,1
+38,5,2,1,1,9,1,1,0,22,3,16,0,0,0,4,1
+14,1,3,1,1,14,2,1,0,12,10,13,0,0,0,4,1
diff --git a/ML/LR/LR.cpp b/ML/LR/LR.cpp
index b96ebf3b..b8d1b8b7 100644
--- a/ML/LR/LR.cpp
+++ b/ML/LR/LR.cpp
@@ -272,7 +272,7 @@ void LR::train ()
 
  for (int epochCpt = 0; epochCpt < epochs ; epochCpt ++ ) {
 
-   shuffle(dt);
+   //shuffle(dt);
    while (counter < size) {
      if (size - counter < batchSize)
        sizeBatch = size - counter;
diff --git a/PPML/PPLR/PPLR_Classifier.cpp b/PPML/PPLR/PPLR_Classifier.cpp
index 9d2e360c..6aed4652 100755
--- a/PPML/PPLR/PPLR_Classifier.cpp
+++ b/PPML/PPLR/PPLR_Classifier.cpp
@@ -17,6 +17,7 @@ void PPLR_Classifier::shuffle(PPDatasetReader * dt)
         system(command.c_str());
         dt->current_chunk--;
         dt->nextChunk();
+
     } else {
 
         dt->closeTraining();
@@ -210,6 +211,7 @@ Cipher PPLR_Classifier::predict(PPRecord *r, bool test ) {
     if (test) size = size + 1;
 
     wx = dotProduct(w,r, size);
+
     proba = Sigmoid(wx);
 
 
@@ -224,6 +226,7 @@ Cipher PPLR_Classifier::predict(PPRecord *r, bool test ) {
         cout << "WX " << wx << endl;
         cout << "Proba " << proba << endl;
         cout << "Res " << res << endl;
+        cout << "Th " << th << endl;
     }
 
     return res;
@@ -269,7 +272,7 @@ vector<Cipher> PPLR_Classifier::miniBatchGrad(vector<PPRecord *> XB) {
         }
 
 
-        if (debug)
+        /*if (debug)
         {
             for (int i = 0; i < ypred.size(); i++)
                 cout << "ypred[" << i << "]= " << ypred[i] << endl;
@@ -281,7 +284,7 @@ vector<Cipher> PPLR_Classifier::miniBatchGrad(vector<PPRecord *> XB) {
                 cout << "line[" << i << "]= " << line[i] << endl;
 
 
-        }
+        }*/
         EvalLrUpdate evalLrUpdate(ypred, ytrue, line  ,alpha, dtpkc);
         inter = evalLrUpdate.EvalLrUpdate_U1_step3(evalLrUpdate.EvalLrUpdate_U2_step2(evalLrUpdate.EvalLrUpdate_U1_step1()));
         #pragma omp critical
@@ -295,7 +298,7 @@ vector<Cipher> PPLR_Classifier::miniBatchGrad(vector<PPRecord *> XB) {
     if (debug ) {
 
         for (int i = 0; i < w.size(); i++)
-            cout << "prod[" << i << "]= " << dtpkc.n - dtpkc.Sdec(prod[i]) << endl;
+            cout << "prod[" << i << "]= " << prod[i] << endl;
 
     }
     return  prod;
@@ -317,7 +320,7 @@ void PPLR_Classifier::train() {
 
     for (int epochCpt = 0; epochCpt < epochs; epochCpt++) {
 
-        shuffle(dt);
+        //shuffle(dt);
         while (counter < size) {
             if (size - counter < batchSize)
                 sizeBatch = size - counter;
diff --git a/SER/dtpkc.ser b/SER/dtpkc.ser
index 16ae258e..88e948d1 100644
--- a/SER/dtpkc.ser
+++ b/SER/dtpkc.ser
@@ -1,11 +1,11 @@
-130579058515537820901520032585052397955369861392116904192807448983912692694483235384651936507057260259627696022832586611709810149916166924691490920500790040182874314045248875716559064361995920462978313875398214135264504814187285633657359844997097018602721592386047297332223886161813056394785799189848586144283
--14771063841621197238931333802249332210362748036205417353227796463943963606360927936756237821067324315514625948719034918688543227777616158549241542572726459126804248410787068181435097314451198503428608953971118540032870529026179876656911744239021316337403894443868452414928141576717235799930666081008276553497296487724589910680697324037755002010581745297665628515572596251798610546131422726956182816685093219803484587357997579914930607691368536998148625327000754173602860486416678884704727389934044213306868637062253413201282233480180199958747035188483758366602801096749922120878295871928473443778368465206774163024029
-17050890522804250299165638026058639394498769891867996617424174454264433792477821287193899891316598203714829263128590287406482267140044763722279840828839990582944942046120450697633735421406917794706483989500813210244092900958060989843605305932265613360742430116298557563328445453214766933104584577694963770604413219933739665458396420817648910835494113676719054984955760474353054291757205608741464412900887831840996375057545330517093670369797486435212697687057970524312163005198522520544719938613205028835454679334605452379365077483975683902686366549660426511697866372635807500184932014830893720672535217243088493584089
-431934189116845013671161646794322907608016651787965466470672257023209315272513019128020238155748648748389908400883807571238498999344676986427402510758865590717150381714256342590959517262637144573930051653913343502614358491707221791825461379721167970325324898659329519367130189497370607560075812621106060308020588641077216882689372175930839731974420871281077340561916118037759724750865084822922110407529991887536979403325517901719990202455879586894516098402726902502147651386358313318477051484273462139698594245376575945032905993083228879833804826914801670819098047857739252792749243264742953276744264479172348484735840374986262441029568280359673407271170013458043248061977627588731152667700850134087858526625801285739326063930899352351119167642244259939745713273448357934441747943646884440357621566123885935629459728948595957355510645824047657165268697697243658254311815165528553106133121246311807299054139128793182315774322849508403418344583106127314859133066925244944908839172823141903665317917501532304491116651612798442954244891202419562114851073446184007222256113599449593468467903853609855235497514963194488258547747719699475850102535524184793142379509047145947240815435990637476890648301824219041258659852662088672284413257520394994492412049541365170257567382300191579378926967930447998424473829191097313337243200177618693071600134464934516049899554649814953268467547217872045641453153520545199140528591683295093537880041892417587647265411308352045175780690307752472566139976141998328880856191597639091598721456224121021693725537019164901716985393735551497238188749413504680873808254885730007402060853437351978540385550269239625908257288475222181456349329945020458380859168632808821013421306225178057641341335063406229802976854029832132198908468006763828803125389840528902203655406405447610010109787859853459314901379111220674272761577734144
+127743588400120984190489585056056552545033463764781356156189626152170851111381414797999825616739371786239625889320136181725210380786815926459761401630546574863287408083932657202455483375034723749330226094752534631369605561859942428107320009948102218734224200310608734396755550624690341281531104331653195944851
+-112887966402807756766056421643807907350895522095467553273547953766793324298888318284172536028786042276531067803218965248396876649101648287346586060132262836924985631049305624460063160848536793902002115656699149989508010827334440827893104404358996147910956534319688208521154727108343411859750160802677097407480242544367591257615591117958239786764451671942903354872303330649293082089689105426371188327306424149648823261847912699178274457842511436932134284434833600072905176684303186334068832909162746805616853583375196712468137060619023522093652688122677751266019684240965376131971798379853203026584213306019004844460
+16318424377339524469265632132949706771074580425523908475590997776817552836622922968731940379195347137349929749351354578266292603607292103796411004146499224537703372347808495999163762413162436997895662722830514493984065959662367091647679206352676004130745510450282757163003693224080551445288826221784565044257392538141868698137031263199931102977027459999033171952439481140633079260745157652305387827138326196167499304581976246975198364080405098154808697734490950937995154701427118543972403050117121941374499188033689538880305937570737811225169764040730555213548600228902403336043189357773677340292671441731790633412201
+413635496759521463361853762754175395826207837372809981179521755160809341177358249038004957400288258354954068980681152455512643358558112757836404288827026555621612230936158101839051009427284052229253937599697946191886276253508737057967867864999778064696422565044741171547579924749523183329792193170650973067250646286370789443825867110466135562836806040363550207827142687169406585867026077223096180670664666188162708942490111470394301111610149809966647261748204026815419551652886128237154699560122225648653574263236934499491299664114727561277020560425842975061899278129098529788475758986591570228268825376696775517292808211512352585969936298847447460552940091544777167206820954185137046855753629177683034540620611786319714824133489554681646158711573373514050493074475681724210179047800928111676908363726012003475649696660600380197157466100999997000109593093537358983785528456198823333844553369411149504564764844592067046101020184358602238680411305600837054426725240440221054276930143366664316600200736649931928741033245457215220081179946791074991658671684396627060155303485137501444053485769220759049687475303594644828552659767900024571530500752587450413670988510609904681920298664860244429153132123653079104247330853577777296598356367772867483227740698497063928232167363616164253892431263688124959035032682797399944503359971587896805909617677711819053563589503923570111771678407137614563574990978970166162013148109317196303703401765888683444497742595247107603114123061899352146734225766306385746099640686357243757661543115045755941925342972090887674947359706761129551947832742240840963857592402383678966684089808465667383371614565403339079245010572456414363024940830661850499024328275251335136008934668726835281657268763946281751299046668757244473793478697933008881655950697023821271130143916265979916237650390291688488607005908041784817425288292672
 1024
-10353735597422555523057428148862686668468681889583948858953116394647761920644023475114961331921381587886011729949084148799444516489649627019586781403299601
-12611782219747236864751508361038072087728457657461130812672424172111665704853249746277514333709699632122327836230642252561259548683956584871218183587237483
-100196103428028169294073996145361276688828539650808268329590172367495503925060494678373257903761685200225094529120895414204795677672986629112902954832316251512686952502738416829228650000374252283978982889989845150892162097155677442700966145731346748388231704305022020344858849820875713779658171260871395370511
-32644764628884455225380008146263099488842465348029226048201862245978173173620808846162984126764315064906924005708146652927452537479041731172872730125197504304339124218864121976905638615309291066459691707579635627430984513689915034096034613130357846880375396011620279401455631364436970697143477096220898901800
-153994539552309487602599216126347369929981188896671721621864976927567896823898603561269792255820581052920241234508050324976217510354779202858869876020307649347173410159325344152710084042477052524921446081097964291154543529060414700689906026312103662882118775188194633869458076513009062243703269962222797299308
-510628998305962357298425965309208792891616121971589413036090055950952013923255496576889702488610906885312666816039310673012509002758561775811689286208828540662854006560564560161879710054906966749749447883346342295128229913610474438497808367075068485910801326348498012183000477994766024808967636794773585734695920525601223705417260122155388717136245071519049679447823510785886917149651461632563965545860637285462009920500926494686700777815807204680938242604952665208650058221194450663913163679057171633049141401648214696476251633008662803945724051668431554756765502342386026820288197667884192283828879907252433064669912668724306349373689206221225337092924857251910493766947697401510842246827407880524275297631412178042674298409577795783297945525166074730839608309445068957710976240108752876774552616158175250057353378403981401448189413655034388486704737589679210962979558355092558813955317771158734809865018406523540966759692
+11690319936113312129820577473632791337633081312015874751516656336615930844081377438401560022330658398046097309044899847762698080483345152418128630782027969
+10927296181646844963385518522112532627229298432766413808861178705964489761514762460495769370367885714405540950094525699869670774804775083504556858680253779
+148966611454324227733127535877438387756768880149399860560000930908582191550264223081948588106247346743250315428293401740454158189253902735115488528574510596254235783664357813335910312554467317556044402301648751950144234990158630478669236836595354193744947925786469149666397038134442508754062091009441361008039
+31935897100030246047622396264014138136258365941195339039047406538042712777845353699499956404184842946559906472330034045431302595196703981614940350407636638061417822580943890999089871907427689721737620328115993563383640745359834207991855278154677380047527937168087398742801979563958763290323795411540933415776
+64315834350451640121737809420042092232685531552787090944113810118518423335110599822949396087428245087523194392881646743253670559875973098402998000027308387321849811274093128645682876057556627254180547332260633834527339401034078437094972200187461225149552092546558238449555692216016920734875911691189670433788
+268899490427028924800533361403454573173735075963835285090481807310139544985965354153226297369096251103581724241782947755047755229718468332258847923667982382718615957788674239856042967731790689262131693140468464454255221557189200581192490085692254949004337118047933107809057370747043905127806999992342980847689925113107904674347921906483215871611857601293032414789704626801805267350917131013231572156289722055708237016120192487717718375592437692524054907829917396516427984606885517932667833530591588804532202245627491553118936151613168825385385936440536918359934331720590426654772927457830843827879401430827491602377099392304784761011450909954318635888384751313263216810441303429694433006026531986947711322677940216302466689232712551201955454008318242407643983296491815357209859297733218507865260732859269795131221856579582710504450612136872548469438484120648850835765628292827396381471289052124389885194914099389957834683172
diff --git a/TEST/TESTBuildingBlocks.cpp b/TEST/TESTBuildingBlocks.cpp
index 27e4e528..b6cc8b98 100755
--- a/TEST/TESTBuildingBlocks.cpp
+++ b/TEST/TESTBuildingBlocks.cpp
@@ -525,8 +525,9 @@ void TESTBuildingBlocks::run (bool deserialize, int keysize, int prec, int error
     * Test Sigmoid
     */
 
-    x=3;
+    x=2;
     Cipher C_x = dtpkc.enc(x,dtpkc.pkw);
+    C_x.sign=0;
     cpt ++;
     EvalSigmoid evalSigmoid(C_x,100,dtpkc);
     vector<Cipher> in = evalSigmoid.EvalSig_U1_step1();
@@ -537,7 +538,7 @@ void TESTBuildingBlocks::run (bool deserialize, int keysize, int prec, int error
 
     if (abs(int(evalSigmoid.sigmoid(x,100)*100-C.get_ui())) > 300 ) cptF++;
 
-    cout<<"Test(" << cpt << ") <<Sigmoid> gave : " << C.get_str() << " expected result " << evalSigmoid.sigmoid(x,100)<< " state :" << state << endl;
+    cout<<"Test(" << cpt << ") <<Sigmoid> gave : " << C.get_str() << " expected result " << evalSigmoid.sigmoid(-x,100)<< " state :" << state << endl;
 
 
 
@@ -590,6 +591,7 @@ void TESTBuildingBlocks::run (bool deserialize, int keysize, int prec, int error
         output2 = output2 + cv[i]*bv[i];
     }
 
+
     EvalLrUpdate evalLrUpdate(C_av, C_bv, C_cv ,alpha, dtpkc);
     C_C = evalLrUpdate.EvalLrUpdate_U1_step3(evalLrUpdate.EvalLrUpdate_U2_step2(evalLrUpdate.EvalLrUpdate_U1_step1()));
     C =  dtpkc.Sdec(C_C);
diff --git a/TEST/main.cpp b/TEST/main.cpp
index 1f7a47bb..bfd1f6bb 100755
--- a/TEST/main.cpp
+++ b/TEST/main.cpp
@@ -61,7 +61,7 @@ int keySize = 1024;
 int DTPKC_Err = 600;
 int ComputationalPrecision = 1000;
 float useORE= false ;
-int blindVal =200;
+int blindVal =100;
 sockaddr_in cliaddr ={0};
 bool encryptData=false;
 bool testBuildingBlock = false;
diff --git a/cmake-build-debug/CMakeFiles/DAPPLE.dir/CXX.includecache b/cmake-build-debug/CMakeFiles/DAPPLE.dir/CXX.includecache
index f0618616..a39f387f 100644
--- a/cmake-build-debug/CMakeFiles/DAPPLE.dir/CXX.includecache
+++ b/cmake-build-debug/CMakeFiles/DAPPLE.dir/CXX.includecache
@@ -6,126 +6,62 @@
 
 #IncludeRegexTransform: 
 
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/DTPKC.h
-iostream
--
-gmpxx.h
--
-gmp.h
--
-../UTIL/util_gmp_rand.h
-/home/rania/CLionProjects/DAPPLE-2.0/UTIL/util_gmp_rand.h
-../UTIL/num_th_alg.hh
-/home/rania/CLionProjects/DAPPLE-2.0/UTIL/num_th_alg.hh
-../UTIL/mpz_class.hh
-/home/rania/CLionProjects/DAPPLE-2.0/UTIL/mpz_class.hh
-ctime
--
-memory
--
-vector
--
-cstring
--
-fstream
--
-netinet/in.h
--
-
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalDiv.h
-DTPKC.h
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/DTPKC.h
-
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalDotProd.cpp
-EvalDotProd.h
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalDotProd.h
-EvalDiv.h
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalDiv.h
-
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalDotProd.h
-DTPKC.h
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/DTPKC.h
-
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalLrUpdate.h
-DTPKC.h
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/DTPKC.h
-
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalSigmoid.h
-DTPKC.h
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/DTPKC.h
-../UTIL/math_util.hh
-/home/rania/CLionProjects/DAPPLE-2.0/UTIL/math_util.hh
-
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalSub2.h
-DTPKC.h
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/DTPKC.h
-
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/SkeySwitch.h
-DTPKC.h
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/DTPKC.h
-../UTIL/math_util.hh
-/home/rania/CLionProjects/DAPPLE-2.0/UTIL/math_util.hh
-vector
--
-
-/home/rania/CLionProjects/DAPPLE-2.0/PPML/IO/PPDatasetReader.h
-PPRecord.h
-/home/rania/CLionProjects/DAPPLE-2.0/PPML/IO/PPRecord.h
+/home/rania/CLionProjects/DAPPLE-2.0/ML/IO/DatasetReader.h
 fstream
 -
 stdio.h
 -
 string.h
 -
-../../CRYPTO/SkeySwitch.h
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/SkeySwitch.h
 vector
 -
 cstring
 -
+Record.h
+/home/rania/CLionProjects/DAPPLE-2.0/ML/IO/Record.h
+../../UTIL/mpz_class.hh
+/home/rania/CLionProjects/DAPPLE-2.0/UTIL/mpz_class.hh
+time.h
+-
+string
+-
+omp.h
+/home/rania/CLionProjects/DAPPLE-2.0/ML/IO/omp.h
 
-/home/rania/CLionProjects/DAPPLE-2.0/PPML/IO/PPRecord.h
+/home/rania/CLionProjects/DAPPLE-2.0/ML/IO/Record.h
 vector
 -
 iostream
 -
-../../CRYPTO/DTPKC.h
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/DTPKC.h
 
-/home/rania/CLionProjects/DAPPLE-2.0/PPML/PPLR/PPLR_Classifier.cpp
-chrono
--
-PPLR_Classifier.h
-/home/rania/CLionProjects/DAPPLE-2.0/PPML/PPLR/PPLR_Classifier.h
-
-/home/rania/CLionProjects/DAPPLE-2.0/PPML/PPLR/PPLR_Classifier.h
-../IO/PPDatasetReader.h
-/home/rania/CLionProjects/DAPPLE-2.0/PPML/IO/PPDatasetReader.h
-../../UTIL/math_util.hh
-/home/rania/CLionProjects/DAPPLE-2.0/UTIL/math_util.hh
-../../CRYPTO/EvalSigmoid.h
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalSigmoid.h
-../../CRYPTO/EvalDotProd.h
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalDotProd.h
-../../CRYPTO/EvalLrUpdate.h
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalLrUpdate.h
-../../CRYPTO/EvalSub2.h
-/home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalSub2.h
-math.h
-/home/rania/CLionProjects/DAPPLE-2.0/PPML/PPLR/math.h
+/home/rania/CLionProjects/DAPPLE-2.0/ML/LR/LR.cpp
+omp.h
+/home/rania/CLionProjects/DAPPLE-2.0/ML/LR/omp.h
+LR.h
+/home/rania/CLionProjects/DAPPLE-2.0/ML/LR/LR.h
 
-/home/rania/CLionProjects/DAPPLE-2.0/UTIL/math_util.hh
-vector
+/home/rania/CLionProjects/DAPPLE-2.0/ML/LR/LR.h
+string
 -
-gmpxx.h
+fstream
 -
-cmath
+vector
+-
+math.h
 -
-sstream
+stdlib.h
 -
 iostream
 -
-iomanip
+string.h
+-
+netinet/in.h
+-
+../IO/Record.h
+/home/rania/CLionProjects/DAPPLE-2.0/ML/IO/Record.h
+../IO/DatasetReader.h
+/home/rania/CLionProjects/DAPPLE-2.0/ML/IO/DatasetReader.h
+chrono
 -
 
 /home/rania/CLionProjects/DAPPLE-2.0/UTIL/mpz_class.hh
@@ -136,13 +72,3 @@ cassert
 gmpxx.h
 -
 
-/home/rania/CLionProjects/DAPPLE-2.0/UTIL/num_th_alg.hh
-gmpxx.h
--
-vector
--
-
-/home/rania/CLionProjects/DAPPLE-2.0/UTIL/util_gmp_rand.h
-gmp.h
--
-
diff --git a/cmake-build-debug/CMakeFiles/DAPPLE.dir/depend.internal b/cmake-build-debug/CMakeFiles/DAPPLE.dir/depend.internal
index d04f814b..0f604cdf 100644
--- a/cmake-build-debug/CMakeFiles/DAPPLE.dir/depend.internal
+++ b/cmake-build-debug/CMakeFiles/DAPPLE.dir/depend.internal
@@ -104,6 +104,7 @@ CMakeFiles/DAPPLE.dir/CRYPTO/EvalProba.cpp.o
 CMakeFiles/DAPPLE.dir/CRYPTO/EvalSigmoid.cpp.o
  /home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/DTPKC.h
  /home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalDiv.h
+ /home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalDiv100.h
  /home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalSigmoid.cpp
  /home/rania/CLionProjects/DAPPLE-2.0/CRYPTO/EvalSigmoid.h
  /home/rania/CLionProjects/DAPPLE-2.0/UTIL/math_util.hh
diff --git a/cmake-build-debug/CMakeFiles/DAPPLE.dir/depend.make b/cmake-build-debug/CMakeFiles/DAPPLE.dir/depend.make
index c02cd7cd..d5b2f560 100644
--- a/cmake-build-debug/CMakeFiles/DAPPLE.dir/depend.make
+++ b/cmake-build-debug/CMakeFiles/DAPPLE.dir/depend.make
@@ -103,6 +103,7 @@ CMakeFiles/DAPPLE.dir/CRYPTO/EvalProba.cpp.o: ../UTIL/util_gmp_rand.h
 
 CMakeFiles/DAPPLE.dir/CRYPTO/EvalSigmoid.cpp.o: ../CRYPTO/DTPKC.h
 CMakeFiles/DAPPLE.dir/CRYPTO/EvalSigmoid.cpp.o: ../CRYPTO/EvalDiv.h
+CMakeFiles/DAPPLE.dir/CRYPTO/EvalSigmoid.cpp.o: ../CRYPTO/EvalDiv100.h
 CMakeFiles/DAPPLE.dir/CRYPTO/EvalSigmoid.cpp.o: ../CRYPTO/EvalSigmoid.cpp
 CMakeFiles/DAPPLE.dir/CRYPTO/EvalSigmoid.cpp.o: ../CRYPTO/EvalSigmoid.h
 CMakeFiles/DAPPLE.dir/CRYPTO/EvalSigmoid.cpp.o: ../UTIL/math_util.hh
-- 
GitLab