@cyrilverloop/codingame-configuration 1.22.0 → 1.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (412) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/LICENSE +1 -1
  3. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.cpp +19 -0
  4. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.java +18 -0
  5. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.js +8 -0
  6. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.php +9 -0
  7. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.ts +8 -0
  8. package/config/easy/MiniCPUInstructionDecoder/config.json +63 -0
  9. package/config/easy/MiniCPUInstructionDecoder/input/01 - Boot Sequence.txt +1 -0
  10. package/config/easy/MiniCPUInstructionDecoder/input/02 - Multiply Core.txt +1 -0
  11. package/config/easy/MiniCPUInstructionDecoder/input/03 - INC and DEC.txt +1 -0
  12. package/config/easy/MiniCPUInstructionDecoder/input/04 - INC Overflow.txt +1 -0
  13. package/config/easy/MiniCPUInstructionDecoder/input/05 - DEC Underflow.txt +1 -0
  14. package/config/easy/MiniCPUInstructionDecoder/input/06 - ADD Overflow.txt +1 -0
  15. package/config/easy/MiniCPUInstructionDecoder/input/07 - SUB Underflow.txt +1 -0
  16. package/config/easy/MiniCPUInstructionDecoder/input/08 - MUL Overflow.txt +1 -0
  17. package/config/easy/MiniCPUInstructionDecoder/input/09 - Mixed Operations.txt +1 -0
  18. package/config/easy/MiniCPUInstructionDecoder/input/10 - Immediate Halt.txt +1 -0
  19. package/config/easy/MiniCPUInstructionDecoder/input/11 - MOV Overwrite.txt +1 -0
  20. package/config/easy/MiniCPUInstructionDecoder/output/01 - Boot Sequence.txt +4 -0
  21. package/config/easy/MiniCPUInstructionDecoder/output/02 - Multiply Core.txt +4 -0
  22. package/config/easy/MiniCPUInstructionDecoder/output/03 - INC and DEC.txt +4 -0
  23. package/config/easy/MiniCPUInstructionDecoder/output/04 - INC Overflow.txt +4 -0
  24. package/config/easy/MiniCPUInstructionDecoder/output/05 - DEC Underflow.txt +4 -0
  25. package/config/easy/MiniCPUInstructionDecoder/output/06 - ADD Overflow.txt +4 -0
  26. package/config/easy/MiniCPUInstructionDecoder/output/07 - SUB Underflow.txt +4 -0
  27. package/config/easy/MiniCPUInstructionDecoder/output/08 - MUL Overflow.txt +4 -0
  28. package/config/easy/MiniCPUInstructionDecoder/output/09 - Mixed Operations.txt +4 -0
  29. package/config/easy/MiniCPUInstructionDecoder/output/10 - Immediate Halt.txt +4 -0
  30. package/config/easy/MiniCPUInstructionDecoder/output/11 - MOV Overwrite.txt +4 -0
  31. package/config/easy/SimpleDiffTool/code/CGCode.cpp +29 -0
  32. package/config/easy/SimpleDiffTool/code/CGCode.java +30 -0
  33. package/config/easy/SimpleDiffTool/code/CGCode.js +14 -0
  34. package/config/easy/SimpleDiffTool/code/CGCode.php +17 -0
  35. package/config/easy/SimpleDiffTool/code/CGCode.ts +14 -0
  36. package/config/easy/SimpleDiffTool/config.json +78 -0
  37. package/config/easy/SimpleDiffTool/input/01 - Test - Add by content.txt +10 -0
  38. package/config/easy/SimpleDiffTool/input/02 - Test - Add by number.txt +10 -0
  39. package/config/easy/SimpleDiffTool/input/03 - Test - Delete by content.txt +8 -0
  40. package/config/easy/SimpleDiffTool/input/04 - Test - Delete by number.txt +8 -0
  41. package/config/easy/SimpleDiffTool/input/05 - Test - Change by content.txt +9 -0
  42. package/config/easy/SimpleDiffTool/input/06 - Test - Change by number.txt +9 -0
  43. package/config/easy/SimpleDiffTool/input/07 - Test - No diffs by content.txt +9 -0
  44. package/config/easy/SimpleDiffTool/input/08 - Test - No diffs by number.txt +9 -0
  45. package/config/easy/SimpleDiffTool/input/09 - Test - Moved lines by content.txt +9 -0
  46. package/config/easy/SimpleDiffTool/input/10 - Test - Moved lines by number.txt +9 -0
  47. package/config/easy/SimpleDiffTool/input/11 - Test - Multiple diffs by content.txt +24 -0
  48. package/config/easy/SimpleDiffTool/input/12 - Test - Multiple diffs by number.txt +24 -0
  49. package/config/easy/SimpleDiffTool/input/13 - Test - No lines by content.txt +3 -0
  50. package/config/easy/SimpleDiffTool/input/14 - Test - No lines by number.txt +3 -0
  51. package/config/easy/SimpleDiffTool/output/01 - Test - Add by content.txt +1 -0
  52. package/config/easy/SimpleDiffTool/output/02 - Test - Add by number.txt +2 -0
  53. package/config/easy/SimpleDiffTool/output/03 - Test - Delete by content.txt +1 -0
  54. package/config/easy/SimpleDiffTool/output/04 - Test - Delete by number.txt +2 -0
  55. package/config/easy/SimpleDiffTool/output/05 - Test - Change by content.txt +2 -0
  56. package/config/easy/SimpleDiffTool/output/06 - Test - Change by number.txt +1 -0
  57. package/config/easy/SimpleDiffTool/output/07 - Test - No diffs by content.txt +1 -0
  58. package/config/easy/SimpleDiffTool/output/08 - Test - No diffs by number.txt +1 -0
  59. package/config/easy/SimpleDiffTool/output/09 - Test - Moved lines by content.txt +3 -0
  60. package/config/easy/SimpleDiffTool/output/10 - Test - Moved lines by number.txt +3 -0
  61. package/config/easy/SimpleDiffTool/output/11 - Test - Multiple diffs by content.txt +9 -0
  62. package/config/easy/SimpleDiffTool/output/12 - Test - Multiple diffs by number.txt +5 -0
  63. package/config/easy/SimpleDiffTool/output/13 - Test - No lines by content.txt +1 -0
  64. package/config/easy/SimpleDiffTool/output/14 - Test - No lines by number.txt +1 -0
  65. package/config/easy/Snap/code/CGCode.cpp +28 -0
  66. package/config/easy/Snap/code/CGCode.java +24 -0
  67. package/config/easy/Snap/code/CGCode.js +14 -0
  68. package/config/easy/Snap/code/CGCode.php +17 -0
  69. package/config/easy/Snap/code/CGCode.ts +14 -0
  70. package/config/easy/Snap/config.json +93 -0
  71. package/config/easy/Snap/input/01 - Player 1 Win.txt +10 -0
  72. package/config/easy/Snap/input/02 - Player 2 Win.txt +12 -0
  73. package/config/easy/Snap/input/03 - Snapless.txt +22 -0
  74. package/config/easy/Snap/input/04 - Clutch Save.txt +30 -0
  75. package/config/easy/Snap/input/05 - Almost Clutch Save.txt +54 -0
  76. package/config/easy/Snap/input/06 - Quick Game.txt +4 -0
  77. package/config/easy/Snap/input/07 - Very Quick Game.txt +3 -0
  78. package/config/easy/Snap/input/08 - Lucky Shuffle.txt +22 -0
  79. package/config/easy/Snap/input/09 - Unfair Shuffle 1.txt +24 -0
  80. package/config/easy/Snap/input/10 - Unfair Shuffle 2.txt +25 -0
  81. package/config/easy/Snap/input/11 - Unfair Shuffle 3.txt +54 -0
  82. package/config/easy/Snap/input/12 - Standard Deck 1.txt +54 -0
  83. package/config/easy/Snap/input/13 - Standard Deck 2.txt +54 -0
  84. package/config/easy/Snap/input/14 - Standard Deck 3.txt +54 -0
  85. package/config/easy/Snap/input/15 - Standard Deck 4.txt +54 -0
  86. package/config/easy/Snap/input/16 - Standard Deck 5.txt +54 -0
  87. package/config/easy/Snap/input/17 - Standard Deck 6.txt +54 -0
  88. package/config/easy/Snap/output/01 - Player 1 Win.txt +2 -0
  89. package/config/easy/Snap/output/02 - Player 2 Win.txt +2 -0
  90. package/config/easy/Snap/output/03 - Snapless.txt +2 -0
  91. package/config/easy/Snap/output/04 - Clutch Save.txt +2 -0
  92. package/config/easy/Snap/output/05 - Almost Clutch Save.txt +2 -0
  93. package/config/easy/Snap/output/06 - Quick Game.txt +2 -0
  94. package/config/easy/Snap/output/07 - Very Quick Game.txt +2 -0
  95. package/config/easy/Snap/output/08 - Lucky Shuffle.txt +2 -0
  96. package/config/easy/Snap/output/09 - Unfair Shuffle 1.txt +2 -0
  97. package/config/easy/Snap/output/10 - Unfair Shuffle 2.txt +2 -0
  98. package/config/easy/Snap/output/11 - Unfair Shuffle 3.txt +2 -0
  99. package/config/easy/Snap/output/12 - Standard Deck 1.txt +2 -0
  100. package/config/easy/Snap/output/13 - Standard Deck 2.txt +2 -0
  101. package/config/easy/Snap/output/14 - Standard Deck 3.txt +2 -0
  102. package/config/easy/Snap/output/15 - Standard Deck 4.txt +2 -0
  103. package/config/easy/Snap/output/16 - Standard Deck 5.txt +2 -0
  104. package/config/easy/Snap/output/17 - Standard Deck 6.txt +2 -0
  105. package/config/easy/WhatADessert/code/CGCode.cpp +20 -0
  106. package/config/easy/WhatADessert/code/CGCode.java +19 -0
  107. package/config/easy/WhatADessert/code/CGCode.js +10 -0
  108. package/config/easy/WhatADessert/code/CGCode.php +7 -0
  109. package/config/easy/WhatADessert/code/CGCode.ts +10 -0
  110. package/config/easy/WhatADessert/config.json +33 -0
  111. package/config/easy/WhatADessert/input/01 - test 1.txt +1 -0
  112. package/config/easy/WhatADessert/input/02 - test 2.txt +1 -0
  113. package/config/easy/WhatADessert/input/03 - test 3.txt +1 -0
  114. package/config/easy/WhatADessert/input/04 - test 4.txt +1 -0
  115. package/config/easy/WhatADessert/input/05 - test 5.txt +1 -0
  116. package/config/easy/WhatADessert/output/01 - test 1.txt +1 -0
  117. package/config/easy/WhatADessert/output/02 - test 2.txt +1 -0
  118. package/config/easy/WhatADessert/output/03 - test 3.txt +1 -0
  119. package/config/easy/WhatADessert/output/04 - test 4.txt +1 -0
  120. package/config/easy/WhatADessert/output/05 - test 5.txt +1 -0
  121. package/config/{medium → hard}/GuessingDigits/config.json +1 -1
  122. package/config/hard/MountainRange/code/CGCode.cpp +22 -0
  123. package/config/hard/MountainRange/code/CGCode.java +23 -0
  124. package/config/hard/MountainRange/code/CGCode.js +11 -0
  125. package/config/hard/MountainRange/code/CGCode.php +11 -0
  126. package/config/hard/MountainRange/code/CGCode.ts +11 -0
  127. package/config/hard/MountainRange/config.json +123 -0
  128. package/config/hard/MountainRange/input/01 - Two summits.txt +7 -0
  129. package/config/hard/MountainRange/input/02 - Close summits.txt +7 -0
  130. package/config/hard/MountainRange/input/03 - Row of 11 peaks.txt +3 -0
  131. package/config/hard/MountainRange/input/04 - Two ridges.txt +13 -0
  132. package/config/hard/MountainRange/input/05 - Flat summits.txt +8 -0
  133. package/config/hard/MountainRange/input/06 - Aligned mountains.txt +16 -0
  134. package/config/hard/MountainRange/input/07 - Aligned valleys.txt +19 -0
  135. package/config/hard/MountainRange/input/08 - Intersecting ridges.txt +9 -0
  136. package/config/hard/MountainRange/input/09 - Nested mountains.txt +11 -0
  137. package/config/hard/MountainRange/input/10 - 8 + 8 + 6 + 6.txt +9 -0
  138. package/config/hard/MountainRange/input/11 - Partially hidden summit.txt +6 -0
  139. package/config/hard/MountainRange/input/12 - Test case of User123.txt +11 -0
  140. package/config/hard/MountainRange/input/13 - Two in front of three.txt +8 -0
  141. package/config/hard/MountainRange/input/14 - Two in front of one big mountain.txt +11 -0
  142. package/config/hard/MountainRange/input/15 - Four in front of one flat summit.txt +8 -0
  143. package/config/hard/MountainRange/input/16 - 8 pointed summits + 1 flat.txt +12 -0
  144. package/config/hard/MountainRange/input/17 - 2 + 3 + 2 + 3 + 2 + 2 + 2 + 2.txt +25 -0
  145. package/config/hard/MountainRange/input/18 - One in front of three.txt +12 -0
  146. package/config/hard/MountainRange/input/19 - Peak, flat summit, hidden slope.txt +9 -0
  147. package/config/hard/MountainRange/input/20 - Three summits, one hidden slope.txt +14 -0
  148. package/config/hard/MountainRange/input/21 - Two pairs.txt +8 -0
  149. package/config/hard/MountainRange/input/22 - 4 + 3 + 4 + 3 + 1 + 1.txt +14 -0
  150. package/config/hard/MountainRange/input/23 - 4 + 3 + 2 + 3 + 1 + 3 + 1 + 1.txt +14 -0
  151. package/config/hard/MountainRange/output/03 - Row of 11 peaks.txt +1 -0
  152. package/config/hard/MountainRange/output/04 - Two ridges.txt +1 -0
  153. package/config/hard/MountainRange/output/07 - Aligned valleys.txt +1 -0
  154. package/config/hard/MountainRange/output/08 - Intersecting ridges.txt +1 -0
  155. package/config/hard/MountainRange/output/09 - Nested mountains.txt +1 -0
  156. package/config/hard/MountainRange/output/10 - 8 + 8 + 6 + 6.txt +1 -0
  157. package/config/hard/MountainRange/output/11 - Partially hidden summit.txt +1 -0
  158. package/config/hard/MountainRange/output/12 - Test case of User123.txt +1 -0
  159. package/config/hard/MountainRange/output/13 - Two in front of three.txt +1 -0
  160. package/config/hard/MountainRange/output/14 - Two in front of one big mountain.txt +1 -0
  161. package/config/hard/MountainRange/output/15 - Four in front of one flat summit.txt +1 -0
  162. package/config/hard/MountainRange/output/16 - 8 pointed summits + 1 flat.txt +1 -0
  163. package/config/hard/MountainRange/output/17 - 2 + 3 + 2 + 3 + 2 + 2 + 2 + 2.txt +1 -0
  164. package/config/hard/MountainRange/output/19 - Peak, flat summit, hidden slope.txt +1 -0
  165. package/config/hard/MountainRange/output/20 - Three summits, one hidden slope.txt +1 -0
  166. package/config/hard/MountainRange/output/21 - Two pairs.txt +1 -0
  167. package/config/hard/MountainRange/output/22 - 4 + 3 + 4 + 3 + 1 + 1.txt +1 -0
  168. package/config/hard/MountainRange/output/23 - 4 + 3 + 2 + 3 + 1 + 3 + 1 + 1.txt +1 -0
  169. package/config/{medium → hard}/ParseSQLQueries/config.json +1 -1
  170. package/config/{expert → hard}/RecurringDecimals/config.json +1 -1
  171. package/config/{medium → hard}/Surakarta/config.json +1 -1
  172. package/config/hard/Surakarta/output/02 - multiple ways.txt +1 -0
  173. package/config/hard/Surakarta/output/04 - pass on yourself.txt +1 -0
  174. package/config/hard/Surakarta/output/05 - angles are not OK.txt +1 -0
  175. package/config/hard/Surakarta/output/07 - it works.txt +1 -0
  176. package/config/hard/Surakarta/output/10 - real test.txt +1 -0
  177. package/config/medium/DistinctCircularLinkedLists/code/CGCode.cpp +21 -0
  178. package/config/medium/DistinctCircularLinkedLists/code/CGCode.java +19 -0
  179. package/config/medium/DistinctCircularLinkedLists/code/CGCode.js +9 -0
  180. package/config/medium/DistinctCircularLinkedLists/code/CGCode.php +11 -0
  181. package/config/medium/DistinctCircularLinkedLists/code/CGCode.ts +9 -0
  182. package/config/medium/DistinctCircularLinkedLists/config.json +103 -0
  183. package/config/medium/DistinctCircularLinkedLists/input/01 - Example.txt +4 -0
  184. package/config/medium/DistinctCircularLinkedLists/input/02 - Random Nodes.txt +5 -0
  185. package/config/medium/DistinctCircularLinkedLists/input/03 - More Nodes.txt +8 -0
  186. package/config/medium/DistinctCircularLinkedLists/input/04 - Just One.txt +2 -0
  187. package/config/medium/DistinctCircularLinkedLists/input/05 - Even More Nodes.txt +10 -0
  188. package/config/medium/DistinctCircularLinkedLists/input/06 - Repeated Nodes.txt +6 -0
  189. package/config/medium/DistinctCircularLinkedLists/input/07 - Multiple Repeating Nodes.txt +9 -0
  190. package/config/medium/DistinctCircularLinkedLists/input/08 - Just One Again.txt +10 -0
  191. package/config/medium/DistinctCircularLinkedLists/input/09 - Good Pairing.txt +9 -0
  192. package/config/medium/DistinctCircularLinkedLists/input/10 - More Nodes 2.txt +13 -0
  193. package/config/medium/DistinctCircularLinkedLists/input/11 - Similar CLLs.txt +17 -0
  194. package/config/medium/DistinctCircularLinkedLists/input/12 - Even More Nodes 2.txt +31 -0
  195. package/config/medium/DistinctCircularLinkedLists/input/13 - Large CLLs.txt +61 -0
  196. package/config/medium/DistinctCircularLinkedLists/input/14 - Many Different Nodes.txt +101 -0
  197. package/config/medium/DistinctCircularLinkedLists/input/15 - Node Spam.txt +497 -0
  198. package/config/medium/DistinctCircularLinkedLists/input/16 - More Node Spam.txt +1000 -0
  199. package/config/medium/DistinctCircularLinkedLists/input/17 - Very Similar CLLs.txt +1985 -0
  200. package/config/medium/DistinctCircularLinkedLists/input/18 - Too Similar CLLs.txt +3361 -0
  201. package/config/medium/DistinctCircularLinkedLists/input/19 - Absolute Limit.txt +3997 -0
  202. package/config/medium/DistinctCircularLinkedLists/output/01 - Example.txt +1 -0
  203. package/config/medium/DistinctCircularLinkedLists/output/02 - Random Nodes.txt +1 -0
  204. package/config/medium/DistinctCircularLinkedLists/output/03 - More Nodes.txt +1 -0
  205. package/config/medium/DistinctCircularLinkedLists/output/04 - Just One.txt +1 -0
  206. package/config/medium/DistinctCircularLinkedLists/output/05 - Even More Nodes.txt +1 -0
  207. package/config/medium/DistinctCircularLinkedLists/output/06 - Repeated Nodes.txt +1 -0
  208. package/config/medium/DistinctCircularLinkedLists/output/07 - Multiple Repeating Nodes.txt +1 -0
  209. package/config/medium/DistinctCircularLinkedLists/output/08 - Just One Again.txt +1 -0
  210. package/config/medium/DistinctCircularLinkedLists/output/09 - Good Pairing.txt +1 -0
  211. package/config/medium/DistinctCircularLinkedLists/output/10 - More Nodes 2.txt +1 -0
  212. package/config/medium/DistinctCircularLinkedLists/output/11 - Similar CLLs.txt +1 -0
  213. package/config/medium/DistinctCircularLinkedLists/output/12 - Even More Nodes 2.txt +1 -0
  214. package/config/medium/DistinctCircularLinkedLists/output/13 - Large CLLs.txt +1 -0
  215. package/config/medium/DistinctCircularLinkedLists/output/14 - Many Different Nodes.txt +1 -0
  216. package/config/medium/DistinctCircularLinkedLists/output/15 - Node Spam.txt +1 -0
  217. package/config/medium/DistinctCircularLinkedLists/output/16 - More Node Spam.txt +1 -0
  218. package/config/medium/DistinctCircularLinkedLists/output/17 - Very Similar CLLs.txt +1 -0
  219. package/config/medium/DistinctCircularLinkedLists/output/18 - Too Similar CLLs.txt +1 -0
  220. package/config/medium/DistinctCircularLinkedLists/output/19 - Absolute Limit.txt +1 -0
  221. package/config/{easy → medium}/NoMorePythonsPlease/config.json +1 -1
  222. package/config/medium/PolygonEquilibrium/code/CGCode.cpp +23 -0
  223. package/config/medium/PolygonEquilibrium/code/CGCode.java +21 -0
  224. package/config/medium/PolygonEquilibrium/code/CGCode.js +12 -0
  225. package/config/medium/PolygonEquilibrium/code/CGCode.php +12 -0
  226. package/config/medium/PolygonEquilibrium/code/CGCode.ts +12 -0
  227. package/config/medium/PolygonEquilibrium/config.json +73 -0
  228. package/config/medium/PolygonEquilibrium/input/01 - Simple triangle.txt +4 -0
  229. package/config/medium/PolygonEquilibrium/input/02 - Tipping triangle.txt +4 -0
  230. package/config/medium/PolygonEquilibrium/input/03 - Trapezoid.txt +5 -0
  231. package/config/medium/PolygonEquilibrium/input/04 - Regular Octogon.txt +9 -0
  232. package/config/medium/PolygonEquilibrium/input/05 - An L-shape.txt +7 -0
  233. package/config/medium/PolygonEquilibrium/input/06 - A T-shape.txt +9 -0
  234. package/config/medium/PolygonEquilibrium/input/07 - test 7.txt +12 -0
  235. package/config/medium/PolygonEquilibrium/input/08 - test 8.txt +18 -0
  236. package/config/medium/PolygonEquilibrium/input/09 - Centroid outside of polygon.txt +19 -0
  237. package/config/medium/PolygonEquilibrium/input/10 - Multiple vertices supporting segment.txt +7 -0
  238. package/config/medium/PolygonEquilibrium/input/11 - Weird shape.txt +12 -0
  239. package/config/medium/PolygonEquilibrium/input/12 - Barely balanced.txt +5 -0
  240. package/config/medium/PolygonEquilibrium/input/13 - CG.txt +43 -0
  241. package/config/medium/PolygonEquilibrium/output/01 - Simple triangle.txt +2 -0
  242. package/config/medium/PolygonEquilibrium/output/02 - Tipping triangle.txt +2 -0
  243. package/config/medium/PolygonEquilibrium/output/03 - Trapezoid.txt +2 -0
  244. package/config/medium/PolygonEquilibrium/output/04 - Regular Octogon.txt +2 -0
  245. package/config/medium/PolygonEquilibrium/output/05 - An L-shape.txt +2 -0
  246. package/config/medium/PolygonEquilibrium/output/06 - A T-shape.txt +2 -0
  247. package/config/medium/PolygonEquilibrium/output/07 - test 7.txt +2 -0
  248. package/config/medium/PolygonEquilibrium/output/08 - test 8.txt +2 -0
  249. package/config/medium/PolygonEquilibrium/output/09 - Centroid outside of polygon.txt +2 -0
  250. package/config/medium/PolygonEquilibrium/output/10 - Multiple vertices supporting segment.txt +2 -0
  251. package/config/medium/PolygonEquilibrium/output/11 - Weird shape.txt +2 -0
  252. package/config/medium/PolygonEquilibrium/output/12 - Barely balanced.txt +2 -0
  253. package/config/medium/PolygonEquilibrium/output/13 - CG.txt +2 -0
  254. package/config/medium/SantasGarland/code/CGCode.cpp +27 -0
  255. package/config/medium/SantasGarland/code/CGCode.java +24 -0
  256. package/config/medium/SantasGarland/code/CGCode.js +17 -0
  257. package/config/medium/SantasGarland/code/CGCode.php +12 -0
  258. package/config/medium/SantasGarland/code/CGCode.ts +17 -0
  259. package/config/medium/SantasGarland/config.json +68 -0
  260. package/config/medium/SantasGarland/input/01 - Simple Path.txt +4 -0
  261. package/config/medium/SantasGarland/input/02 - Disconnected.txt +4 -0
  262. package/config/medium/SantasGarland/input/03 - Triangle with Alternative Path.txt +6 -0
  263. package/config/medium/SantasGarland/input/04 - Hexagon Bad Diagonal.txt +9 -0
  264. package/config/medium/SantasGarland/input/05 - Mid-failure with Bypass.txt +11 -0
  265. package/config/medium/SantasGarland/input/06 - Hub Blocked (different path lengths).txt +11 -0
  266. package/config/medium/SantasGarland/input/07 - Shortcut vs Two Detours.txt +12 -0
  267. package/config/medium/SantasGarland/input/08 - Grid Traversal.txt +14 -0
  268. package/config/medium/SantasGarland/input/09 - Fuses Blow at Final Step.txt +6 -0
  269. package/config/medium/SantasGarland/input/10 - Circle Complete Graph.txt +82 -0
  270. package/config/medium/SantasGarland/input/11 - Hamiltonian 10x10 Grid.txt +102 -0
  271. package/config/medium/SantasGarland/input/12 - Triple Path Challenge.txt +102 -0
  272. package/config/medium/SantasGarland/output/01 - Simple Path.txt +1 -0
  273. package/config/medium/SantasGarland/output/02 - Disconnected.txt +1 -0
  274. package/config/medium/SantasGarland/output/03 - Triangle with Alternative Path.txt +1 -0
  275. package/config/medium/SantasGarland/output/04 - Hexagon Bad Diagonal.txt +1 -0
  276. package/config/medium/SantasGarland/output/05 - Mid-failure with Bypass.txt +1 -0
  277. package/config/medium/SantasGarland/output/06 - Hub Blocked (different path lengths).txt +1 -0
  278. package/config/medium/SantasGarland/output/07 - Shortcut vs Two Detours.txt +1 -0
  279. package/config/medium/SantasGarland/output/08 - Grid Traversal.txt +1 -0
  280. package/config/medium/SantasGarland/output/09 - Fuses Blow at Final Step.txt +1 -0
  281. package/config/medium/SantasGarland/output/10 - Circle Complete Graph.txt +1 -0
  282. package/config/medium/SantasGarland/output/11 - Hamiltonian 10x10 Grid.txt +1 -0
  283. package/config/medium/SantasGarland/output/12 - Triple Path Challenge.txt +1 -0
  284. package/config/{easy → medium}/TheAlienBusinessOfCows/config.json +1 -1
  285. package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.cpp +18 -0
  286. package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.java +17 -0
  287. package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.js +8 -0
  288. package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.php +7 -0
  289. package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.ts +8 -0
  290. package/config/medium/TheQueensTrekWythoffsGame/config.json +63 -0
  291. package/config/medium/TheQueensTrekWythoffsGame/input/01 - empty piles.txt +1 -0
  292. package/config/medium/TheQueensTrekWythoffsGame/input/02 - 1 move - pile 1 empty.txt +1 -0
  293. package/config/medium/TheQueensTrekWythoffsGame/input/03 - 1 move - pile 2 empty.txt +1 -0
  294. package/config/medium/TheQueensTrekWythoffsGame/input/04 - 1 move - 2 piles.txt +1 -0
  295. package/config/medium/TheQueensTrekWythoffsGame/input/05 - Simple one.txt +1 -0
  296. package/config/medium/TheQueensTrekWythoffsGame/input/06 - First win - 1.txt +1 -0
  297. package/config/medium/TheQueensTrekWythoffsGame/input/07 - Second win - 1.txt +1 -0
  298. package/config/medium/TheQueensTrekWythoffsGame/input/08 - First win - 2.txt +1 -0
  299. package/config/medium/TheQueensTrekWythoffsGame/input/09 - Second win - 2.txt +1 -0
  300. package/config/medium/TheQueensTrekWythoffsGame/input/10 - First win - 3.txt +1 -0
  301. package/config/medium/TheQueensTrekWythoffsGame/input/11 - Second win - 3.txt +1 -0
  302. package/config/medium/TheQueensTrekWythoffsGame/output/01 - empty piles.txt +1 -0
  303. package/config/medium/TheQueensTrekWythoffsGame/output/02 - 1 move - pile 1 empty.txt +1 -0
  304. package/config/medium/TheQueensTrekWythoffsGame/output/03 - 1 move - pile 2 empty.txt +1 -0
  305. package/config/medium/TheQueensTrekWythoffsGame/output/04 - 1 move - 2 piles.txt +1 -0
  306. package/config/medium/TheQueensTrekWythoffsGame/output/05 - Simple one.txt +1 -0
  307. package/config/medium/TheQueensTrekWythoffsGame/output/06 - First win - 1.txt +1 -0
  308. package/config/medium/TheQueensTrekWythoffsGame/output/07 - Second win - 1.txt +1 -0
  309. package/config/medium/TheQueensTrekWythoffsGame/output/08 - First win - 2.txt +1 -0
  310. package/config/medium/TheQueensTrekWythoffsGame/output/09 - Second win - 2.txt +1 -0
  311. package/config/medium/TheQueensTrekWythoffsGame/output/10 - First win - 3.txt +1 -0
  312. package/config/medium/TheQueensTrekWythoffsGame/output/11 - Second win - 3.txt +1 -0
  313. package/package.json +1 -1
  314. /package/config/{medium → hard}/GuessingDigits/code/CGCode.js +0 -0
  315. /package/config/{medium → hard}/GuessingDigits/code/CGCode.php +0 -0
  316. /package/config/{medium → hard}/GuessingDigits/input/01 - test 1.txt +0 -0
  317. /package/config/{medium → hard}/GuessingDigits/input/02 - test 2.txt +0 -0
  318. /package/config/{medium → hard}/GuessingDigits/input/03 - test 3.txt +0 -0
  319. /package/config/{medium → hard}/GuessingDigits/input/04 - test 4.txt +0 -0
  320. /package/config/{medium → hard}/GuessingDigits/input/05 - test 5.txt +0 -0
  321. /package/config/{medium → hard}/GuessingDigits/input/06 - test 6.txt +0 -0
  322. /package/config/{medium → hard}/GuessingDigits/input/07 - test 7.txt +0 -0
  323. /package/config/{medium → hard}/GuessingDigits/input/08 - test 8.txt +0 -0
  324. /package/config/{medium → hard}/GuessingDigits/output/01 - test 1.txt +0 -0
  325. /package/config/{medium → hard}/GuessingDigits/output/02 - test 2.txt +0 -0
  326. /package/config/{medium → hard}/GuessingDigits/output/03 - test 3.txt +0 -0
  327. /package/config/{medium → hard}/GuessingDigits/output/04 - test 4.txt +0 -0
  328. /package/config/{medium → hard}/GuessingDigits/output/05 - test 5.txt +0 -0
  329. /package/config/{medium → hard}/GuessingDigits/output/06 - test 6.txt +0 -0
  330. /package/config/{medium → hard}/GuessingDigits/output/07 - test 7.txt +0 -0
  331. /package/config/{medium → hard}/GuessingDigits/output/08 - test 8.txt +0 -0
  332. /package/config/{medium/Surakarta/output/05 - angles are not OK.txt → hard/MountainRange/output/01 - Two summits.txt} +0 -0
  333. /package/config/{medium/Surakarta/output/02 - multiple ways.txt → hard/MountainRange/output/02 - Close summits.txt} +0 -0
  334. /package/config/{medium/Surakarta/output/07 - it works.txt → hard/MountainRange/output/05 - Flat summits.txt} +0 -0
  335. /package/config/{medium/Surakarta/output/10 - real test.txt → hard/MountainRange/output/06 - Aligned mountains.txt} +0 -0
  336. /package/config/{medium/Surakarta/output/04 - pass on yourself.txt → hard/MountainRange/output/18 - One in front of three.txt} +0 -0
  337. /package/config/{medium → hard}/ParseSQLQueries/code/CGCode.js +0 -0
  338. /package/config/{medium → hard}/ParseSQLQueries/code/CGCode.php +0 -0
  339. /package/config/{medium → hard}/ParseSQLQueries/input/01 - select all.txt +0 -0
  340. /package/config/{medium → hard}/ParseSQLQueries/input/02 - Select from where.txt +0 -0
  341. /package/config/{medium → hard}/ParseSQLQueries/input/03 - Order by ascending.txt +0 -0
  342. /package/config/{medium → hard}/ParseSQLQueries/input/04 - Order by descending.txt +0 -0
  343. /package/config/{medium → hard}/ParseSQLQueries/input/05 - Slightly more advanced.txt +0 -0
  344. /package/config/{medium → hard}/ParseSQLQueries/output/01 - select all.txt +0 -0
  345. /package/config/{medium → hard}/ParseSQLQueries/output/02 - Select from where.txt +0 -0
  346. /package/config/{medium → hard}/ParseSQLQueries/output/03 - Order by ascending.txt +0 -0
  347. /package/config/{medium → hard}/ParseSQLQueries/output/04 - Order by descending.txt +0 -0
  348. /package/config/{medium → hard}/ParseSQLQueries/output/05 - Slightly more advanced.txt +0 -0
  349. /package/config/{expert → hard}/RecurringDecimals/code/CGCode.cpp +0 -0
  350. /package/config/{expert → hard}/RecurringDecimals/code/CGCode.java +0 -0
  351. /package/config/{expert → hard}/RecurringDecimals/code/CGCode.js +0 -0
  352. /package/config/{expert → hard}/RecurringDecimals/code/CGCode.php +0 -0
  353. /package/config/{expert → hard}/RecurringDecimals/code/CGCode.ts +0 -0
  354. /package/config/{expert → hard}/RecurringDecimals/input/01 - Small Terminating.txt +0 -0
  355. /package/config/{expert → hard}/RecurringDecimals/input/02 - Medium Terminating.txt +0 -0
  356. /package/config/{expert → hard}/RecurringDecimals/input/03 - Large Terminating.txt +0 -0
  357. /package/config/{expert → hard}/RecurringDecimals/input/04 - Small Non-Terminating.txt +0 -0
  358. /package/config/{expert → hard}/RecurringDecimals/input/05 - Medium Non-Terminating.txt +0 -0
  359. /package/config/{expert → hard}/RecurringDecimals/input/06 - Large Non Terminating.txt +0 -0
  360. /package/config/{expert → hard}/RecurringDecimals/input/07 - Small Mixed.txt +0 -0
  361. /package/config/{expert → hard}/RecurringDecimals/input/08 - Large Mixed.txt +0 -0
  362. /package/config/{expert → hard}/RecurringDecimals/input/09 - Test 9.txt +0 -0
  363. /package/config/{expert → hard}/RecurringDecimals/output/01 - Small Terminating.txt +0 -0
  364. /package/config/{expert → hard}/RecurringDecimals/output/02 - Medium Terminating.txt +0 -0
  365. /package/config/{expert → hard}/RecurringDecimals/output/03 - Large Terminating.txt +0 -0
  366. /package/config/{expert → hard}/RecurringDecimals/output/04 - Small Non-Terminating.txt +0 -0
  367. /package/config/{expert → hard}/RecurringDecimals/output/05 - Medium Non-Terminating.txt +0 -0
  368. /package/config/{expert → hard}/RecurringDecimals/output/06 - Large Non Terminating.txt +0 -0
  369. /package/config/{expert → hard}/RecurringDecimals/output/07 - Small Mixed.txt +0 -0
  370. /package/config/{expert → hard}/RecurringDecimals/output/08 - Large Mixed.txt +0 -0
  371. /package/config/{expert → hard}/RecurringDecimals/output/09 - Test 9.txt +0 -0
  372. /package/config/{medium → hard}/Surakarta/code/CGCode.js +0 -0
  373. /package/config/{medium → hard}/Surakarta/code/CGCode.php +0 -0
  374. /package/config/{medium → hard}/Surakarta/input/01 - around the world.txt +0 -0
  375. /package/config/{medium → hard}/Surakarta/input/02 - multiple ways.txt +0 -0
  376. /package/config/{medium → hard}/Surakarta/input/03 - impossible.txt +0 -0
  377. /package/config/{medium → hard}/Surakarta/input/04 - pass on yourself.txt +0 -0
  378. /package/config/{medium → hard}/Surakarta/input/05 - angles are not OK.txt +0 -0
  379. /package/config/{medium → hard}/Surakarta/input/06 - we have a problem.txt +0 -0
  380. /package/config/{medium → hard}/Surakarta/input/07 - it works.txt +0 -0
  381. /package/config/{medium → hard}/Surakarta/input/08 - number test.txt +0 -0
  382. /package/config/{medium → hard}/Surakarta/input/09 - crossway.txt +0 -0
  383. /package/config/{medium → hard}/Surakarta/input/10 - real test.txt +0 -0
  384. /package/config/{medium → hard}/Surakarta/output/01 - around the world.txt +0 -0
  385. /package/config/{medium → hard}/Surakarta/output/03 - impossible.txt +0 -0
  386. /package/config/{medium → hard}/Surakarta/output/06 - we have a problem.txt +0 -0
  387. /package/config/{medium → hard}/Surakarta/output/08 - number test.txt +0 -0
  388. /package/config/{medium → hard}/Surakarta/output/09 - crossway.txt +0 -0
  389. /package/config/{easy → medium}/NoMorePythonsPlease/code/CGCode.js +0 -0
  390. /package/config/{easy → medium}/NoMorePythonsPlease/code/CGCode.php +0 -0
  391. /package/config/{easy → medium}/NoMorePythonsPlease/input/01 - easy (one snake).txt +0 -0
  392. /package/config/{easy → medium}/NoMorePythonsPlease/input/02 - medium 1 (3 snakes, one pattern).txt +0 -0
  393. /package/config/{easy → medium}/NoMorePythonsPlease/input/03 - medium 2 (more than 1 large snake).txt +0 -0
  394. /package/config/{easy → medium}/NoMorePythonsPlease/input/04 - hard (one VERY large snake).txt +0 -0
  395. /package/config/{easy → medium}/NoMorePythonsPlease/input/05 - snake madness (for geeks).txt +0 -0
  396. /package/config/{easy → medium}/NoMorePythonsPlease/output/01 - easy (one snake).txt +0 -0
  397. /package/config/{easy → medium}/NoMorePythonsPlease/output/02 - medium 1 (3 snakes, one pattern).txt +0 -0
  398. /package/config/{easy → medium}/NoMorePythonsPlease/output/03 - medium 2 (more than 1 large snake).txt +0 -0
  399. /package/config/{easy → medium}/NoMorePythonsPlease/output/04 - hard (one VERY large snake).txt +0 -0
  400. /package/config/{easy → medium}/NoMorePythonsPlease/output/05 - snake madness (for geeks).txt +0 -0
  401. /package/config/{easy → medium}/TheAlienBusinessOfCows/code/CGCode.js +0 -0
  402. /package/config/{easy → medium}/TheAlienBusinessOfCows/code/CGCode.php +0 -0
  403. /package/config/{easy → medium}/TheAlienBusinessOfCows/input/01 - United Steak of America.txt +0 -0
  404. /package/config/{easy → medium}/TheAlienBusinessOfCows/input/02 - Free Tacow !.txt +0 -0
  405. /package/config/{easy → medium}/TheAlienBusinessOfCows/input/03 - Is that a Mowse.txt +0 -0
  406. /package/config/{easy → medium}/TheAlienBusinessOfCows/input/04 - Those missions are stupid.txt +0 -0
  407. /package/config/{easy → medium}/TheAlienBusinessOfCows/input/05 - Union of Steak Amateurs.txt +0 -0
  408. /package/config/{easy → medium}/TheAlienBusinessOfCows/output/01 - United Steak of America.txt +0 -0
  409. /package/config/{easy → medium}/TheAlienBusinessOfCows/output/02 - Free Tacow !.txt +0 -0
  410. /package/config/{easy → medium}/TheAlienBusinessOfCows/output/03 - Is that a Mowse.txt +0 -0
  411. /package/config/{easy → medium}/TheAlienBusinessOfCows/output/04 - Those missions are stupid.txt +0 -0
  412. /package/config/{easy → medium}/TheAlienBusinessOfCows/output/05 - Union of Steak Amateurs.txt +0 -0
@@ -0,0 +1,3361 @@
1
+ 3360
2
+ -8
3
+ -6
4
+ -1
5
+ -2
6
+ -9
7
+ -9
8
+ -1
9
+ 4
10
+ -4
11
+ 9
12
+ 9
13
+ -4
14
+ 9
15
+ 4
16
+ -1
17
+ -2
18
+ -8
19
+ -6
20
+ 9
21
+ -8
22
+ -6
23
+ 9
24
+ 9
25
+ -1
26
+ 9
27
+ -7
28
+ -7
29
+ -8
30
+ -4
31
+ -4
32
+ -7
33
+ -2
34
+ 4
35
+ -6
36
+ -7
37
+ 4
38
+ -9
39
+ -1
40
+ -2
41
+ -1
42
+ -7
43
+ -8
44
+ -2
45
+ 9
46
+ -1
47
+ -9
48
+ -1
49
+ -9
50
+ -2
51
+ -7
52
+ -6
53
+ -1
54
+ -7
55
+ -1
56
+ -4
57
+ -6
58
+ -2
59
+ -2
60
+ -9
61
+ -6
62
+ 9
63
+ -2
64
+ -1
65
+ -7
66
+ -4
67
+ 9
68
+ -2
69
+ -4
70
+ -9
71
+ -2
72
+ -8
73
+ -8
74
+ -7
75
+ -1
76
+ -9
77
+ -2
78
+ 9
79
+ -9
80
+ -2
81
+ -4
82
+ -6
83
+ -2
84
+ 9
85
+ -7
86
+ -2
87
+ -7
88
+ 4
89
+ -7
90
+ 9
91
+ 4
92
+ -1
93
+ -7
94
+ -1
95
+ -9
96
+ -2
97
+ 9
98
+ -2
99
+ -7
100
+ -7
101
+ -7
102
+ -2
103
+ -7
104
+ -1
105
+ -7
106
+ -6
107
+ 9
108
+ -8
109
+ 9
110
+ 4
111
+ -1
112
+ -1
113
+ -2
114
+ -1
115
+ 4
116
+ -6
117
+ -6
118
+ -9
119
+ -2
120
+ -7
121
+ 4
122
+ -1
123
+ -7
124
+ -7
125
+ -1
126
+ -1
127
+ 9
128
+ 9
129
+ -8
130
+ -4
131
+ -4
132
+ -7
133
+ -7
134
+ -9
135
+ -7
136
+ -6
137
+ -2
138
+ -9
139
+ 9
140
+ 4
141
+ -2
142
+ -7
143
+ -2
144
+ -4
145
+ -2
146
+ -8
147
+ -8
148
+ -2
149
+ 4
150
+ -8
151
+ 4
152
+ -7
153
+ -6
154
+ -2
155
+ 9
156
+ -6
157
+ 9
158
+ 4
159
+ -4
160
+ 9
161
+ -2
162
+ -7
163
+ -6
164
+ 4
165
+ -2
166
+ 9
167
+ -1
168
+ -6
169
+ -2
170
+ -1
171
+ -2
172
+ -8
173
+ -9
174
+ -2
175
+ 9
176
+ -7
177
+ -7
178
+ 9
179
+ -7
180
+ 9
181
+ 9
182
+ -8
183
+ 4
184
+ -1
185
+ -8
186
+ -1
187
+ -9
188
+ 4
189
+ -7
190
+ -9
191
+ -6
192
+ -2
193
+ -6
194
+ -2
195
+ 4
196
+ -1
197
+ -9
198
+ -6
199
+ 9
200
+ 9
201
+ -4
202
+ -9
203
+ 9
204
+ -6
205
+ -1
206
+ -6
207
+ -8
208
+ -7
209
+ 9
210
+ -9
211
+ -9
212
+ -7
213
+ 9
214
+ -7
215
+ -4
216
+ 4
217
+ 9
218
+ -2
219
+ -7
220
+ -1
221
+ -2
222
+ -2
223
+ 9
224
+ -1
225
+ 9
226
+ -7
227
+ 9
228
+ 4
229
+ -2
230
+ 4
231
+ -4
232
+ 9
233
+ -7
234
+ 4
235
+ -9
236
+ 9
237
+ 4
238
+ -7
239
+ -1
240
+ -1
241
+ -9
242
+ -6
243
+ -7
244
+ -2
245
+ 4
246
+ 9
247
+ -9
248
+ 9
249
+ -7
250
+ -1
251
+ -2
252
+ -8
253
+ -9
254
+ 9
255
+ -1
256
+ -6
257
+ -2
258
+ -2
259
+ -9
260
+ -2
261
+ 9
262
+ -7
263
+ -6
264
+ -7
265
+ -1
266
+ 9
267
+ 9
268
+ -2
269
+ 4
270
+ 4
271
+ -1
272
+ 4
273
+ 9
274
+ -2
275
+ -6
276
+ 4
277
+ -6
278
+ -2
279
+ -1
280
+ -8
281
+ -8
282
+ -1
283
+ 9
284
+ -1
285
+ -7
286
+ -2
287
+ -6
288
+ -1
289
+ -8
290
+ -2
291
+ -8
292
+ -1
293
+ -8
294
+ 9
295
+ -7
296
+ -1
297
+ 9
298
+ -2
299
+ -6
300
+ 9
301
+ -2
302
+ -6
303
+ -2
304
+ -9
305
+ -2
306
+ -7
307
+ -6
308
+ -1
309
+ -7
310
+ -6
311
+ -7
312
+ 4
313
+ -7
314
+ -6
315
+ 9
316
+ -7
317
+ 4
318
+ 4
319
+ -7
320
+ -7
321
+ -2
322
+ -4
323
+ -6
324
+ -1
325
+ 9
326
+ -1
327
+ 9
328
+ 9
329
+ -6
330
+ -7
331
+ -7
332
+ 9
333
+ -7
334
+ -6
335
+ -7
336
+ -1
337
+ -1
338
+ 4
339
+ -7
340
+ 9
341
+ -2
342
+ -2
343
+ -1
344
+ 4
345
+ -8
346
+ -9
347
+ 9
348
+ -8
349
+ -7
350
+ 9
351
+ -7
352
+ -2
353
+ 9
354
+ 9
355
+ -1
356
+ 4
357
+ -7
358
+ 4
359
+ 9
360
+ -6
361
+ -6
362
+ -7
363
+ -7
364
+ 9
365
+ -7
366
+ -2
367
+ 9
368
+ -1
369
+ -1
370
+ -7
371
+ -7
372
+ 4
373
+ -8
374
+ -2
375
+ -1
376
+ -8
377
+ -6
378
+ -7
379
+ 9
380
+ -8
381
+ -8
382
+ -4
383
+ 9
384
+ 4
385
+ -1
386
+ 9
387
+ 4
388
+ -2
389
+ -7
390
+ 9
391
+ -4
392
+ 4
393
+ -8
394
+ -4
395
+ -9
396
+ -1
397
+ -1
398
+ 9
399
+ -7
400
+ -6
401
+ -7
402
+ -2
403
+ -8
404
+ -2
405
+ -2
406
+ -9
407
+ 9
408
+ -9
409
+ -6
410
+ 9
411
+ -6
412
+ 4
413
+ -6
414
+ 9
415
+ 9
416
+ -1
417
+ 9
418
+ -9
419
+ -2
420
+ -1
421
+ -7
422
+ -4
423
+ -7
424
+ -6
425
+ -1
426
+ -1
427
+ 4
428
+ 4
429
+ -4
430
+ 9
431
+ 4
432
+ -6
433
+ -1
434
+ -9
435
+ -7
436
+ 9
437
+ -2
438
+ -1
439
+ -8
440
+ -2
441
+ -6
442
+ -9
443
+ -7
444
+ -1
445
+ -9
446
+ 9
447
+ -6
448
+ -1
449
+ -4
450
+ -1
451
+ 9
452
+ -1
453
+ -9
454
+ -2
455
+ -8
456
+ 9
457
+ -1
458
+ 9
459
+ -7
460
+ -2
461
+ -9
462
+ -8
463
+ -4
464
+ -2
465
+ -2
466
+ -6
467
+ 4
468
+ -7
469
+ -6
470
+ 4
471
+ -7
472
+ -2
473
+ -6
474
+ -9
475
+ -7
476
+ -6
477
+ 9
478
+ 9
479
+ -7
480
+ -1
481
+ -1
482
+ -2
483
+ -7
484
+ 4
485
+ 4
486
+ -2
487
+ 9
488
+ -6
489
+ -2
490
+ -1
491
+ -4
492
+ -1
493
+ -6
494
+ -4
495
+ -2
496
+ -8
497
+ -1
498
+ -1
499
+ -2
500
+ -2
501
+ -1
502
+ -1
503
+ -1
504
+ -6
505
+ 9
506
+ 9
507
+ -4
508
+ -1
509
+ -4
510
+ -1
511
+ -2
512
+ -1
513
+ -8
514
+ -9
515
+ -6
516
+ 9
517
+ 9
518
+ -2
519
+ -6
520
+ -6
521
+ -1
522
+ -1
523
+ -6
524
+ -1
525
+ -2
526
+ -7
527
+ 9
528
+ -2
529
+ -2
530
+ -7
531
+ -2
532
+ -6
533
+ -9
534
+ -1
535
+ -1
536
+ -6
537
+ -6
538
+ -8
539
+ -7
540
+ 9
541
+ -7
542
+ -1
543
+ -6
544
+ 4
545
+ -6
546
+ 4
547
+ -6
548
+ -9
549
+ -1
550
+ -2
551
+ -7
552
+ -9
553
+ -7
554
+ -2
555
+ -1
556
+ -1
557
+ -7
558
+ -6
559
+ -7
560
+ -1
561
+ -1
562
+ 4
563
+ -9
564
+ 9
565
+ -2
566
+ -4
567
+ 9
568
+ 9
569
+ -1
570
+ -6
571
+ 9
572
+ -4
573
+ -6
574
+ 4
575
+ -6
576
+ -2
577
+ -1
578
+ -4
579
+ -7
580
+ -2
581
+ -9
582
+ -7
583
+ -2
584
+ -7
585
+ -4
586
+ 9
587
+ -7
588
+ -9
589
+ -7
590
+ 4
591
+ 4
592
+ -6
593
+ -2
594
+ -7
595
+ -1
596
+ 9
597
+ -6
598
+ -7
599
+ 9
600
+ 9
601
+ -4
602
+ -7
603
+ -7
604
+ -6
605
+ -7
606
+ -7
607
+ -6
608
+ -2
609
+ 4
610
+ -1
611
+ -2
612
+ -6
613
+ -7
614
+ -1
615
+ 9
616
+ -9
617
+ 4
618
+ -9
619
+ -2
620
+ -1
621
+ -9
622
+ -2
623
+ -6
624
+ -8
625
+ 4
626
+ 4
627
+ -7
628
+ -8
629
+ -6
630
+ -7
631
+ 4
632
+ -9
633
+ -2
634
+ -6
635
+ -2
636
+ -8
637
+ -6
638
+ 9
639
+ -8
640
+ -2
641
+ -9
642
+ -1
643
+ -1
644
+ -1
645
+ 9
646
+ -2
647
+ -7
648
+ -7
649
+ 9
650
+ -9
651
+ -8
652
+ -2
653
+ -6
654
+ -7
655
+ -2
656
+ -6
657
+ -4
658
+ -1
659
+ -7
660
+ -8
661
+ -8
662
+ -9
663
+ -2
664
+ 4
665
+ -1
666
+ -7
667
+ -7
668
+ -7
669
+ -7
670
+ -7
671
+ -1
672
+ -6
673
+ 9
674
+ 4
675
+ 4
676
+ -6
677
+ 4
678
+ -7
679
+ 9
680
+ -1
681
+ 4
682
+ -1
683
+ 9
684
+ -6
685
+ -9
686
+ -1
687
+ -1
688
+ -6
689
+ -6
690
+ -6
691
+ -6
692
+ -9
693
+ 4
694
+ -6
695
+ -7
696
+ -2
697
+ -6
698
+ 9
699
+ -4
700
+ -1
701
+ -7
702
+ -8
703
+ -1
704
+ -2
705
+ -8
706
+ -1
707
+ -6
708
+ -7
709
+ -1
710
+ -8
711
+ -2
712
+ -9
713
+ -8
714
+ 4
715
+ -4
716
+ -7
717
+ -1
718
+ -6
719
+ -6
720
+ -8
721
+ -9
722
+ -8
723
+ 9
724
+ 4
725
+ -8
726
+ 9
727
+ -2
728
+ -8
729
+ -7
730
+ -1
731
+ 4
732
+ 9
733
+ -2
734
+ 4
735
+ 4
736
+ -4
737
+ -8
738
+ 4
739
+ -9
740
+ 4
741
+ -7
742
+ -6
743
+ 9
744
+ -1
745
+ 9
746
+ -6
747
+ 9
748
+ -1
749
+ 4
750
+ -2
751
+ -9
752
+ 9
753
+ 4
754
+ 9
755
+ -6
756
+ -9
757
+ -4
758
+ -2
759
+ -6
760
+ -2
761
+ -2
762
+ -9
763
+ -6
764
+ -1
765
+ -7
766
+ -4
767
+ 9
768
+ -7
769
+ 9
770
+ -6
771
+ 9
772
+ -6
773
+ -6
774
+ -2
775
+ -2
776
+ -6
777
+ -1
778
+ -2
779
+ -1
780
+ -6
781
+ -9
782
+ 4
783
+ -4
784
+ -8
785
+ -2
786
+ -8
787
+ 9
788
+ 9
789
+ -6
790
+ -1
791
+ -6
792
+ -2
793
+ 9
794
+ -6
795
+ 9
796
+ -2
797
+ -1
798
+ -7
799
+ -1
800
+ -2
801
+ -7
802
+ -2
803
+ -4
804
+ -1
805
+ -4
806
+ -1
807
+ -6
808
+ 9
809
+ 9
810
+ -7
811
+ -1
812
+ -7
813
+ -2
814
+ -9
815
+ -6
816
+ -6
817
+ 9
818
+ -4
819
+ -1
820
+ -2
821
+ -2
822
+ -6
823
+ -1
824
+ -6
825
+ 9
826
+ 9
827
+ -2
828
+ -1
829
+ -9
830
+ -2
831
+ -9
832
+ -7
833
+ 9
834
+ -4
835
+ 9
836
+ -2
837
+ -9
838
+ -6
839
+ -6
840
+ -6
841
+ -7
842
+ -8
843
+ -8
844
+ -9
845
+ -6
846
+ 4
847
+ -1
848
+ -9
849
+ -7
850
+ -1
851
+ -2
852
+ -1
853
+ 9
854
+ -1
855
+ -6
856
+ -1
857
+ -6
858
+ 4
859
+ -6
860
+ 9
861
+ -2
862
+ -2
863
+ -7
864
+ -2
865
+ 9
866
+ -7
867
+ 9
868
+ -8
869
+ 9
870
+ -2
871
+ -7
872
+ -4
873
+ 4
874
+ -7
875
+ -7
876
+ 9
877
+ -6
878
+ -1
879
+ -1
880
+ 9
881
+ -2
882
+ -7
883
+ -7
884
+ -7
885
+ -6
886
+ -6
887
+ -1
888
+ -1
889
+ -8
890
+ -2
891
+ -6
892
+ 4
893
+ -6
894
+ 4
895
+ -1
896
+ -6
897
+ -6
898
+ -2
899
+ -4
900
+ 9
901
+ -1
902
+ 9
903
+ -9
904
+ -8
905
+ -8
906
+ -6
907
+ 4
908
+ -6
909
+ -6
910
+ -6
911
+ -8
912
+ -6
913
+ -2
914
+ -2
915
+ -7
916
+ -7
917
+ -1
918
+ -6
919
+ -7
920
+ -6
921
+ -6
922
+ 9
923
+ -9
924
+ 9
925
+ -6
926
+ -7
927
+ 4
928
+ -9
929
+ -1
930
+ -1
931
+ -1
932
+ 9
933
+ -2
934
+ -2
935
+ -1
936
+ -7
937
+ -4
938
+ 9
939
+ -2
940
+ 9
941
+ 9
942
+ 9
943
+ 9
944
+ -2
945
+ 4
946
+ -1
947
+ 9
948
+ -1
949
+ -9
950
+ -2
951
+ -1
952
+ -8
953
+ 9
954
+ 9
955
+ -7
956
+ -6
957
+ -9
958
+ -8
959
+ -1
960
+ 4
961
+ -2
962
+ 4
963
+ 9
964
+ -1
965
+ -1
966
+ -6
967
+ -6
968
+ 9
969
+ -2
970
+ 9
971
+ 9
972
+ -1
973
+ -2
974
+ -6
975
+ 4
976
+ 9
977
+ -7
978
+ -1
979
+ -6
980
+ -8
981
+ -7
982
+ -1
983
+ -1
984
+ -6
985
+ -8
986
+ -6
987
+ -9
988
+ -8
989
+ -6
990
+ 9
991
+ 9
992
+ -7
993
+ -2
994
+ -9
995
+ 4
996
+ 9
997
+ 9
998
+ -6
999
+ 9
1000
+ -1
1001
+ -2
1002
+ -8
1003
+ -2
1004
+ -4
1005
+ 9
1006
+ -9
1007
+ -7
1008
+ -7
1009
+ -2
1010
+ -7
1011
+ 4
1012
+ 9
1013
+ -8
1014
+ 9
1015
+ 9
1016
+ -9
1017
+ -4
1018
+ -9
1019
+ -4
1020
+ -1
1021
+ 4
1022
+ -6
1023
+ -1
1024
+ -2
1025
+ 9
1026
+ -8
1027
+ 9
1028
+ -7
1029
+ 9
1030
+ -7
1031
+ 9
1032
+ 9
1033
+ -2
1034
+ 9
1035
+ -6
1036
+ -1
1037
+ 4
1038
+ 4
1039
+ -2
1040
+ 9
1041
+ 9
1042
+ -2
1043
+ -7
1044
+ -8
1045
+ -4
1046
+ -9
1047
+ -1
1048
+ 4
1049
+ -4
1050
+ -8
1051
+ -1
1052
+ -1
1053
+ -6
1054
+ -4
1055
+ -6
1056
+ -2
1057
+ -1
1058
+ 9
1059
+ -4
1060
+ -1
1061
+ -2
1062
+ -4
1063
+ -8
1064
+ -6
1065
+ -1
1066
+ -6
1067
+ -8
1068
+ -6
1069
+ -1
1070
+ 9
1071
+ -2
1072
+ -2
1073
+ 9
1074
+ -8
1075
+ -6
1076
+ -8
1077
+ -1
1078
+ -2
1079
+ -9
1080
+ 9
1081
+ -6
1082
+ -2
1083
+ -1
1084
+ -6
1085
+ -6
1086
+ -8
1087
+ -2
1088
+ -8
1089
+ 4
1090
+ -6
1091
+ -6
1092
+ 9
1093
+ -7
1094
+ -6
1095
+ -4
1096
+ -6
1097
+ -2
1098
+ -2
1099
+ -2
1100
+ -6
1101
+ -7
1102
+ -7
1103
+ -1
1104
+ -1
1105
+ -6
1106
+ 9
1107
+ -6
1108
+ 4
1109
+ 9
1110
+ -7
1111
+ -9
1112
+ -6
1113
+ -8
1114
+ -1
1115
+ -9
1116
+ 4
1117
+ -6
1118
+ -4
1119
+ -6
1120
+ 9
1121
+ -7
1122
+ 9
1123
+ -2
1124
+ -4
1125
+ -4
1126
+ 4
1127
+ -4
1128
+ 4
1129
+ -8
1130
+ -1
1131
+ -4
1132
+ -9
1133
+ -6
1134
+ -7
1135
+ -1
1136
+ 9
1137
+ -6
1138
+ -1
1139
+ -2
1140
+ -7
1141
+ -2
1142
+ -7
1143
+ -6
1144
+ -4
1145
+ -8
1146
+ -6
1147
+ -1
1148
+ -9
1149
+ -1
1150
+ -2
1151
+ -7
1152
+ -6
1153
+ 9
1154
+ -7
1155
+ -7
1156
+ -7
1157
+ -6
1158
+ -4
1159
+ -7
1160
+ -8
1161
+ -2
1162
+ -2
1163
+ -2
1164
+ -2
1165
+ -4
1166
+ 9
1167
+ 9
1168
+ -4
1169
+ -1
1170
+ 9
1171
+ -2
1172
+ -8
1173
+ 9
1174
+ 9
1175
+ -7
1176
+ -6
1177
+ -1
1178
+ -1
1179
+ -4
1180
+ -6
1181
+ -1
1182
+ 9
1183
+ -7
1184
+ -2
1185
+ -6
1186
+ 4
1187
+ -2
1188
+ -7
1189
+ 9
1190
+ -2
1191
+ -8
1192
+ -9
1193
+ 9
1194
+ -4
1195
+ -7
1196
+ -1
1197
+ -7
1198
+ -2
1199
+ -2
1200
+ -7
1201
+ -1
1202
+ -7
1203
+ 4
1204
+ -1
1205
+ -1
1206
+ 9
1207
+ -7
1208
+ -6
1209
+ -1
1210
+ -6
1211
+ 9
1212
+ -1
1213
+ -8
1214
+ -2
1215
+ 9
1216
+ 9
1217
+ 4
1218
+ 9
1219
+ -6
1220
+ -4
1221
+ -7
1222
+ -2
1223
+ -7
1224
+ 4
1225
+ -1
1226
+ 9
1227
+ -2
1228
+ -1
1229
+ 9
1230
+ -7
1231
+ -6
1232
+ 9
1233
+ -2
1234
+ -9
1235
+ 9
1236
+ 9
1237
+ -4
1238
+ 4
1239
+ -2
1240
+ -6
1241
+ -6
1242
+ 9
1243
+ 4
1244
+ -2
1245
+ -2
1246
+ -8
1247
+ -1
1248
+ -4
1249
+ 9
1250
+ -1
1251
+ -1
1252
+ -8
1253
+ -4
1254
+ -8
1255
+ -7
1256
+ -2
1257
+ 4
1258
+ -6
1259
+ -2
1260
+ 4
1261
+ -2
1262
+ -4
1263
+ 4
1264
+ 9
1265
+ -6
1266
+ -1
1267
+ -4
1268
+ 9
1269
+ -6
1270
+ -2
1271
+ -8
1272
+ -7
1273
+ -6
1274
+ -7
1275
+ -6
1276
+ -1
1277
+ -6
1278
+ -7
1279
+ -6
1280
+ -1
1281
+ -4
1282
+ -1
1283
+ -7
1284
+ -7
1285
+ -2
1286
+ -1
1287
+ -7
1288
+ -8
1289
+ -6
1290
+ -1
1291
+ -4
1292
+ -6
1293
+ -8
1294
+ -2
1295
+ -1
1296
+ -2
1297
+ -6
1298
+ 4
1299
+ -1
1300
+ -9
1301
+ -7
1302
+ -7
1303
+ -1
1304
+ -6
1305
+ 9
1306
+ 9
1307
+ -9
1308
+ -6
1309
+ -8
1310
+ -4
1311
+ -7
1312
+ -7
1313
+ -9
1314
+ -6
1315
+ -9
1316
+ -1
1317
+ -2
1318
+ -6
1319
+ 9
1320
+ -7
1321
+ -7
1322
+ -4
1323
+ -9
1324
+ -7
1325
+ -9
1326
+ -2
1327
+ -4
1328
+ -1
1329
+ -2
1330
+ -8
1331
+ -6
1332
+ -1
1333
+ 9
1334
+ -2
1335
+ 9
1336
+ -4
1337
+ -6
1338
+ -2
1339
+ 4
1340
+ -2
1341
+ -1
1342
+ -9
1343
+ 9
1344
+ -4
1345
+ -1
1346
+ -2
1347
+ 4
1348
+ -7
1349
+ 9
1350
+ -4
1351
+ 9
1352
+ -4
1353
+ -6
1354
+ -8
1355
+ -2
1356
+ 9
1357
+ 4
1358
+ -9
1359
+ -6
1360
+ -2
1361
+ -7
1362
+ 4
1363
+ -2
1364
+ -4
1365
+ -7
1366
+ 4
1367
+ -8
1368
+ -6
1369
+ -2
1370
+ 9
1371
+ -2
1372
+ -2
1373
+ -1
1374
+ 4
1375
+ -7
1376
+ -2
1377
+ -1
1378
+ -6
1379
+ -2
1380
+ -7
1381
+ 4
1382
+ -9
1383
+ 9
1384
+ -7
1385
+ -7
1386
+ -4
1387
+ -2
1388
+ -9
1389
+ -2
1390
+ -8
1391
+ 9
1392
+ -4
1393
+ 9
1394
+ -1
1395
+ -6
1396
+ -6
1397
+ -7
1398
+ 9
1399
+ -6
1400
+ -1
1401
+ 9
1402
+ -2
1403
+ -6
1404
+ -4
1405
+ -2
1406
+ -6
1407
+ 9
1408
+ -2
1409
+ -9
1410
+ 4
1411
+ -6
1412
+ -1
1413
+ -1
1414
+ -1
1415
+ -7
1416
+ -9
1417
+ -7
1418
+ -9
1419
+ -7
1420
+ -2
1421
+ -8
1422
+ -7
1423
+ -1
1424
+ -9
1425
+ -9
1426
+ -7
1427
+ -7
1428
+ -6
1429
+ -4
1430
+ -6
1431
+ -8
1432
+ -6
1433
+ -7
1434
+ -1
1435
+ -7
1436
+ 9
1437
+ -8
1438
+ -4
1439
+ 9
1440
+ -6
1441
+ 9
1442
+ -7
1443
+ 4
1444
+ -1
1445
+ -8
1446
+ -9
1447
+ -2
1448
+ -1
1449
+ -6
1450
+ -9
1451
+ -7
1452
+ -4
1453
+ -2
1454
+ -6
1455
+ -9
1456
+ -7
1457
+ -2
1458
+ 9
1459
+ -4
1460
+ 9
1461
+ -7
1462
+ -7
1463
+ -1
1464
+ -9
1465
+ -8
1466
+ -2
1467
+ -1
1468
+ 4
1469
+ -4
1470
+ -4
1471
+ 4
1472
+ 9
1473
+ 4
1474
+ -2
1475
+ -7
1476
+ 9
1477
+ -6
1478
+ -2
1479
+ -8
1480
+ -9
1481
+ -7
1482
+ -8
1483
+ -2
1484
+ -8
1485
+ -8
1486
+ -1
1487
+ -7
1488
+ -1
1489
+ 9
1490
+ -4
1491
+ -2
1492
+ -7
1493
+ -6
1494
+ -7
1495
+ -4
1496
+ -9
1497
+ -1
1498
+ 9
1499
+ -4
1500
+ -7
1501
+ -8
1502
+ -4
1503
+ -1
1504
+ 9
1505
+ -6
1506
+ -9
1507
+ 9
1508
+ 9
1509
+ -8
1510
+ -8
1511
+ 4
1512
+ -7
1513
+ -4
1514
+ 9
1515
+ -6
1516
+ -4
1517
+ -2
1518
+ -1
1519
+ -8
1520
+ -1
1521
+ -6
1522
+ -2
1523
+ -6
1524
+ -7
1525
+ -8
1526
+ -2
1527
+ -9
1528
+ -7
1529
+ -9
1530
+ -8
1531
+ -1
1532
+ -6
1533
+ -4
1534
+ -9
1535
+ -6
1536
+ 4
1537
+ -1
1538
+ -6
1539
+ -1
1540
+ -2
1541
+ 9
1542
+ -7
1543
+ -2
1544
+ 9
1545
+ -4
1546
+ -9
1547
+ -8
1548
+ -2
1549
+ -4
1550
+ -9
1551
+ -4
1552
+ -7
1553
+ -6
1554
+ -2
1555
+ 9
1556
+ -6
1557
+ -6
1558
+ -7
1559
+ -8
1560
+ -2
1561
+ 4
1562
+ -2
1563
+ -7
1564
+ -2
1565
+ -1
1566
+ -7
1567
+ -1
1568
+ -7
1569
+ 9
1570
+ -1
1571
+ -6
1572
+ -4
1573
+ -2
1574
+ -2
1575
+ -9
1576
+ -7
1577
+ -4
1578
+ -1
1579
+ -8
1580
+ -2
1581
+ -6
1582
+ -2
1583
+ 9
1584
+ -2
1585
+ -6
1586
+ -7
1587
+ -6
1588
+ 9
1589
+ -7
1590
+ 9
1591
+ -7
1592
+ -2
1593
+ -6
1594
+ -1
1595
+ -2
1596
+ 4
1597
+ 4
1598
+ -1
1599
+ -7
1600
+ -7
1601
+ -6
1602
+ -6
1603
+ -8
1604
+ -1
1605
+ -7
1606
+ -7
1607
+ 9
1608
+ -9
1609
+ -2
1610
+ -7
1611
+ 9
1612
+ 4
1613
+ 9
1614
+ -4
1615
+ -2
1616
+ -7
1617
+ -2
1618
+ -6
1619
+ -1
1620
+ -7
1621
+ 4
1622
+ -7
1623
+ -7
1624
+ -2
1625
+ -1
1626
+ -1
1627
+ -9
1628
+ -4
1629
+ -6
1630
+ -6
1631
+ -2
1632
+ -6
1633
+ -2
1634
+ -8
1635
+ -7
1636
+ -2
1637
+ -4
1638
+ 9
1639
+ -6
1640
+ -6
1641
+ -1
1642
+ 9
1643
+ 9
1644
+ -6
1645
+ 4
1646
+ 9
1647
+ -6
1648
+ -7
1649
+ -2
1650
+ -1
1651
+ 9
1652
+ -8
1653
+ -6
1654
+ -6
1655
+ -7
1656
+ 9
1657
+ -2
1658
+ -1
1659
+ -4
1660
+ 9
1661
+ -7
1662
+ -6
1663
+ -9
1664
+ -4
1665
+ -7
1666
+ -1
1667
+ -2
1668
+ -4
1669
+ -7
1670
+ -9
1671
+ -7
1672
+ -2
1673
+ -1
1674
+ -2
1675
+ -6
1676
+ -8
1677
+ -7
1678
+ -4
1679
+ -9
1680
+ 4
1681
+ -1
1682
+ -6
1683
+ -2
1684
+ -7
1685
+ -6
1686
+ -6
1687
+ -2
1688
+ -2
1689
+ -1
1690
+ 4
1691
+ -6
1692
+ -2
1693
+ -7
1694
+ -7
1695
+ 4
1696
+ -1
1697
+ -7
1698
+ -1
1699
+ 4
1700
+ -2
1701
+ -6
1702
+ 9
1703
+ -2
1704
+ 9
1705
+ -6
1706
+ -4
1707
+ -6
1708
+ 9
1709
+ -8
1710
+ -7
1711
+ -7
1712
+ 9
1713
+ -8
1714
+ -9
1715
+ -6
1716
+ -7
1717
+ -1
1718
+ -6
1719
+ -8
1720
+ -2
1721
+ -2
1722
+ -6
1723
+ -9
1724
+ -8
1725
+ -2
1726
+ -2
1727
+ -1
1728
+ -1
1729
+ -1
1730
+ -6
1731
+ -9
1732
+ 4
1733
+ 4
1734
+ 9
1735
+ -1
1736
+ -4
1737
+ -7
1738
+ -4
1739
+ -7
1740
+ 4
1741
+ -2
1742
+ -2
1743
+ -1
1744
+ -4
1745
+ -6
1746
+ -2
1747
+ -8
1748
+ -6
1749
+ 9
1750
+ -2
1751
+ -1
1752
+ -1
1753
+ -7
1754
+ -1
1755
+ -1
1756
+ -7
1757
+ -6
1758
+ -7
1759
+ -2
1760
+ 9
1761
+ -6
1762
+ -6
1763
+ -7
1764
+ -2
1765
+ -4
1766
+ 4
1767
+ -4
1768
+ -1
1769
+ 9
1770
+ -8
1771
+ -7
1772
+ -6
1773
+ -7
1774
+ -6
1775
+ 9
1776
+ -6
1777
+ -9
1778
+ -7
1779
+ -1
1780
+ -1
1781
+ -7
1782
+ -2
1783
+ -9
1784
+ -1
1785
+ -7
1786
+ 4
1787
+ -1
1788
+ -4
1789
+ -2
1790
+ -6
1791
+ -7
1792
+ -7
1793
+ -2
1794
+ -6
1795
+ -9
1796
+ -6
1797
+ -4
1798
+ -2
1799
+ -1
1800
+ -9
1801
+ -7
1802
+ -9
1803
+ 4
1804
+ -2
1805
+ -2
1806
+ 9
1807
+ 9
1808
+ -6
1809
+ -6
1810
+ 4
1811
+ -2
1812
+ -7
1813
+ 9
1814
+ -4
1815
+ 9
1816
+ -7
1817
+ -9
1818
+ -6
1819
+ 9
1820
+ -7
1821
+ -7
1822
+ -2
1823
+ -1
1824
+ -8
1825
+ 9
1826
+ -2
1827
+ -1
1828
+ -8
1829
+ -9
1830
+ 9
1831
+ 9
1832
+ -4
1833
+ -6
1834
+ -1
1835
+ -2
1836
+ -1
1837
+ -4
1838
+ -1
1839
+ -9
1840
+ -2
1841
+ -1
1842
+ 4
1843
+ 4
1844
+ -8
1845
+ -2
1846
+ -1
1847
+ 9
1848
+ -2
1849
+ -1
1850
+ -7
1851
+ -4
1852
+ -7
1853
+ -2
1854
+ -1
1855
+ 9
1856
+ 9
1857
+ -7
1858
+ -2
1859
+ -8
1860
+ -9
1861
+ -1
1862
+ -6
1863
+ -8
1864
+ 9
1865
+ -9
1866
+ -6
1867
+ -2
1868
+ 4
1869
+ -6
1870
+ -7
1871
+ 9
1872
+ -6
1873
+ 4
1874
+ -9
1875
+ -6
1876
+ -1
1877
+ -1
1878
+ -8
1879
+ 4
1880
+ -1
1881
+ -7
1882
+ -7
1883
+ -6
1884
+ -8
1885
+ -4
1886
+ 9
1887
+ 4
1888
+ -8
1889
+ -4
1890
+ -9
1891
+ -8
1892
+ -1
1893
+ -2
1894
+ 9
1895
+ -9
1896
+ -4
1897
+ -2
1898
+ -1
1899
+ -7
1900
+ -2
1901
+ -9
1902
+ 9
1903
+ -2
1904
+ -2
1905
+ 9
1906
+ -7
1907
+ -6
1908
+ -6
1909
+ -4
1910
+ -2
1911
+ 4
1912
+ -6
1913
+ -9
1914
+ -1
1915
+ 9
1916
+ -6
1917
+ -1
1918
+ -6
1919
+ -6
1920
+ -1
1921
+ 9
1922
+ -2
1923
+ 9
1924
+ -7
1925
+ -6
1926
+ -4
1927
+ -9
1928
+ -7
1929
+ -6
1930
+ -9
1931
+ -7
1932
+ -6
1933
+ -6
1934
+ 4
1935
+ -9
1936
+ -7
1937
+ -4
1938
+ 4
1939
+ -2
1940
+ 9
1941
+ 9
1942
+ -2
1943
+ -8
1944
+ -4
1945
+ -4
1946
+ -4
1947
+ -6
1948
+ -8
1949
+ -2
1950
+ -4
1951
+ -1
1952
+ -2
1953
+ -6
1954
+ -1
1955
+ -8
1956
+ 9
1957
+ -6
1958
+ -7
1959
+ 9
1960
+ -1
1961
+ -8
1962
+ -6
1963
+ -6
1964
+ 4
1965
+ -4
1966
+ 9
1967
+ 9
1968
+ -7
1969
+ -2
1970
+ -1
1971
+ -6
1972
+ 4
1973
+ -7
1974
+ 9
1975
+ -1
1976
+ -1
1977
+ -7
1978
+ 9
1979
+ -4
1980
+ -6
1981
+ -2
1982
+ 9
1983
+ -9
1984
+ -7
1985
+ 4
1986
+ -2
1987
+ -7
1988
+ -6
1989
+ -7
1990
+ -9
1991
+ -6
1992
+ -1
1993
+ -7
1994
+ -9
1995
+ -7
1996
+ -6
1997
+ 9
1998
+ -2
1999
+ -9
2000
+ -1
2001
+ -2
2002
+ -6
2003
+ -6
2004
+ 9
2005
+ -2
2006
+ 9
2007
+ 9
2008
+ -1
2009
+ -7
2010
+ -6
2011
+ -9
2012
+ -2
2013
+ -6
2014
+ -4
2015
+ -1
2016
+ -7
2017
+ 9
2018
+ -7
2019
+ 4
2020
+ -9
2021
+ -8
2022
+ -6
2023
+ -4
2024
+ -7
2025
+ -7
2026
+ -8
2027
+ -1
2028
+ -9
2029
+ -1
2030
+ -7
2031
+ -7
2032
+ -7
2033
+ -2
2034
+ 4
2035
+ -6
2036
+ -6
2037
+ 9
2038
+ -2
2039
+ -6
2040
+ -6
2041
+ 9
2042
+ 9
2043
+ -4
2044
+ -9
2045
+ -1
2046
+ -7
2047
+ -2
2048
+ -7
2049
+ -1
2050
+ -1
2051
+ 4
2052
+ -1
2053
+ -2
2054
+ -4
2055
+ 9
2056
+ -2
2057
+ -8
2058
+ -6
2059
+ -2
2060
+ 4
2061
+ -8
2062
+ -9
2063
+ -2
2064
+ 9
2065
+ 9
2066
+ -9
2067
+ -2
2068
+ -6
2069
+ -6
2070
+ 4
2071
+ -1
2072
+ 4
2073
+ -6
2074
+ -6
2075
+ -1
2076
+ -8
2077
+ -8
2078
+ -7
2079
+ -2
2080
+ -9
2081
+ -4
2082
+ -2
2083
+ -6
2084
+ -8
2085
+ -2
2086
+ -1
2087
+ -1
2088
+ -1
2089
+ -1
2090
+ -4
2091
+ 9
2092
+ -2
2093
+ -9
2094
+ -6
2095
+ -6
2096
+ -2
2097
+ -7
2098
+ -2
2099
+ -2
2100
+ -8
2101
+ 9
2102
+ -4
2103
+ -9
2104
+ -1
2105
+ -1
2106
+ -8
2107
+ -1
2108
+ -7
2109
+ -2
2110
+ -9
2111
+ -6
2112
+ -8
2113
+ 4
2114
+ 9
2115
+ -4
2116
+ -8
2117
+ -2
2118
+ 4
2119
+ -8
2120
+ -6
2121
+ 9
2122
+ -8
2123
+ -1
2124
+ -4
2125
+ 9
2126
+ -1
2127
+ -9
2128
+ -6
2129
+ -7
2130
+ 9
2131
+ -6
2132
+ 4
2133
+ -7
2134
+ -2
2135
+ 4
2136
+ 4
2137
+ -2
2138
+ -6
2139
+ -6
2140
+ -6
2141
+ -6
2142
+ -6
2143
+ -2
2144
+ 9
2145
+ -1
2146
+ -6
2147
+ -4
2148
+ -1
2149
+ -7
2150
+ -7
2151
+ 4
2152
+ -7
2153
+ -4
2154
+ -7
2155
+ -2
2156
+ 4
2157
+ -9
2158
+ -1
2159
+ -4
2160
+ -2
2161
+ -6
2162
+ 9
2163
+ -4
2164
+ 4
2165
+ -8
2166
+ -7
2167
+ -2
2168
+ 4
2169
+ 4
2170
+ -7
2171
+ -8
2172
+ -1
2173
+ -2
2174
+ -4
2175
+ -7
2176
+ -1
2177
+ -4
2178
+ -1
2179
+ -9
2180
+ 9
2181
+ -6
2182
+ -7
2183
+ 9
2184
+ -2
2185
+ -6
2186
+ -7
2187
+ -7
2188
+ -6
2189
+ -6
2190
+ -2
2191
+ 9
2192
+ -1
2193
+ -7
2194
+ -8
2195
+ -4
2196
+ 9
2197
+ -9
2198
+ -7
2199
+ -7
2200
+ 9
2201
+ -8
2202
+ -7
2203
+ 4
2204
+ -4
2205
+ 9
2206
+ -2
2207
+ -6
2208
+ -7
2209
+ -8
2210
+ 9
2211
+ 9
2212
+ 9
2213
+ 9
2214
+ -6
2215
+ -6
2216
+ -8
2217
+ 9
2218
+ 9
2219
+ -4
2220
+ -8
2221
+ 9
2222
+ -2
2223
+ -8
2224
+ 9
2225
+ 9
2226
+ 9
2227
+ -2
2228
+ -4
2229
+ 4
2230
+ -4
2231
+ 9
2232
+ -9
2233
+ -4
2234
+ -2
2235
+ -2
2236
+ 4
2237
+ -2
2238
+ -2
2239
+ -9
2240
+ -8
2241
+ -4
2242
+ -1
2243
+ -6
2244
+ 9
2245
+ -2
2246
+ -7
2247
+ -6
2248
+ -8
2249
+ -1
2250
+ 9
2251
+ -1
2252
+ -4
2253
+ -2
2254
+ -9
2255
+ -9
2256
+ -7
2257
+ -2
2258
+ -2
2259
+ -9
2260
+ -6
2261
+ -7
2262
+ 9
2263
+ 4
2264
+ -2
2265
+ 9
2266
+ 9
2267
+ -7
2268
+ -1
2269
+ -1
2270
+ -2
2271
+ -7
2272
+ 4
2273
+ -6
2274
+ -7
2275
+ -7
2276
+ -7
2277
+ -7
2278
+ -7
2279
+ -1
2280
+ -9
2281
+ 9
2282
+ -6
2283
+ -2
2284
+ 9
2285
+ -9
2286
+ -7
2287
+ -4
2288
+ -6
2289
+ 4
2290
+ -8
2291
+ -2
2292
+ -6
2293
+ 4
2294
+ -2
2295
+ -6
2296
+ 9
2297
+ -2
2298
+ -2
2299
+ -2
2300
+ -1
2301
+ -2
2302
+ 9
2303
+ 9
2304
+ -2
2305
+ -9
2306
+ -9
2307
+ 9
2308
+ -9
2309
+ -8
2310
+ -7
2311
+ -9
2312
+ -6
2313
+ 9
2314
+ -8
2315
+ -1
2316
+ -1
2317
+ -6
2318
+ 9
2319
+ 9
2320
+ -1
2321
+ -1
2322
+ -1
2323
+ -2
2324
+ 9
2325
+ -2
2326
+ -1
2327
+ -9
2328
+ -4
2329
+ -8
2330
+ -8
2331
+ -9
2332
+ -1
2333
+ -7
2334
+ 4
2335
+ -4
2336
+ -9
2337
+ -6
2338
+ -8
2339
+ -4
2340
+ -4
2341
+ -7
2342
+ -6
2343
+ 9
2344
+ 4
2345
+ -1
2346
+ -2
2347
+ -7
2348
+ -2
2349
+ -1
2350
+ -1
2351
+ -7
2352
+ -6
2353
+ -1
2354
+ 4
2355
+ -2
2356
+ -6
2357
+ -1
2358
+ -6
2359
+ -1
2360
+ -7
2361
+ 9
2362
+ 4
2363
+ -2
2364
+ -7
2365
+ -8
2366
+ -6
2367
+ 9
2368
+ -7
2369
+ -6
2370
+ -2
2371
+ 9
2372
+ -1
2373
+ -4
2374
+ 9
2375
+ -6
2376
+ 4
2377
+ -7
2378
+ 9
2379
+ -1
2380
+ -2
2381
+ -6
2382
+ -6
2383
+ -9
2384
+ -8
2385
+ -1
2386
+ -2
2387
+ -8
2388
+ -6
2389
+ -1
2390
+ -7
2391
+ -7
2392
+ -6
2393
+ -2
2394
+ 9
2395
+ -2
2396
+ -6
2397
+ -7
2398
+ -7
2399
+ -6
2400
+ -9
2401
+ 9
2402
+ -1
2403
+ -7
2404
+ -7
2405
+ 4
2406
+ -6
2407
+ -2
2408
+ -2
2409
+ 9
2410
+ 9
2411
+ -8
2412
+ -6
2413
+ -2
2414
+ -1
2415
+ -6
2416
+ 9
2417
+ -2
2418
+ -9
2419
+ -2
2420
+ -1
2421
+ -1
2422
+ -6
2423
+ -6
2424
+ -7
2425
+ -4
2426
+ -6
2427
+ -4
2428
+ -9
2429
+ -7
2430
+ -6
2431
+ -7
2432
+ -7
2433
+ -6
2434
+ -4
2435
+ -6
2436
+ -4
2437
+ 9
2438
+ -8
2439
+ -7
2440
+ -4
2441
+ -1
2442
+ -2
2443
+ -1
2444
+ 9
2445
+ -7
2446
+ -6
2447
+ -7
2448
+ -6
2449
+ -7
2450
+ 4
2451
+ -2
2452
+ -4
2453
+ -2
2454
+ -2
2455
+ -4
2456
+ -8
2457
+ 9
2458
+ -2
2459
+ -8
2460
+ -7
2461
+ -1
2462
+ -1
2463
+ -1
2464
+ 9
2465
+ 4
2466
+ -6
2467
+ -9
2468
+ -1
2469
+ -1
2470
+ -9
2471
+ -4
2472
+ -1
2473
+ -1
2474
+ -8
2475
+ 9
2476
+ 9
2477
+ 4
2478
+ -1
2479
+ -6
2480
+ -8
2481
+ -1
2482
+ 4
2483
+ -7
2484
+ 9
2485
+ -9
2486
+ 9
2487
+ -1
2488
+ -7
2489
+ 9
2490
+ -1
2491
+ 9
2492
+ -1
2493
+ 9
2494
+ -4
2495
+ 4
2496
+ -4
2497
+ -4
2498
+ -4
2499
+ 4
2500
+ -1
2501
+ -7
2502
+ 4
2503
+ 9
2504
+ -7
2505
+ 4
2506
+ -7
2507
+ -8
2508
+ -1
2509
+ -2
2510
+ 9
2511
+ -4
2512
+ -6
2513
+ 9
2514
+ 4
2515
+ -1
2516
+ -7
2517
+ -6
2518
+ 9
2519
+ -6
2520
+ 4
2521
+ -2
2522
+ 9
2523
+ -8
2524
+ 9
2525
+ -6
2526
+ 9
2527
+ -4
2528
+ -4
2529
+ -8
2530
+ -1
2531
+ -8
2532
+ 9
2533
+ -8
2534
+ -4
2535
+ -4
2536
+ 9
2537
+ 9
2538
+ -4
2539
+ -6
2540
+ -7
2541
+ -1
2542
+ -4
2543
+ -9
2544
+ -2
2545
+ 4
2546
+ 9
2547
+ -7
2548
+ -9
2549
+ -4
2550
+ -1
2551
+ -6
2552
+ -9
2553
+ -9
2554
+ 9
2555
+ 9
2556
+ -2
2557
+ -2
2558
+ -4
2559
+ 9
2560
+ -1
2561
+ -1
2562
+ -2
2563
+ -2
2564
+ 9
2565
+ -1
2566
+ -1
2567
+ 4
2568
+ -8
2569
+ 9
2570
+ -2
2571
+ -2
2572
+ 9
2573
+ -2
2574
+ -9
2575
+ -7
2576
+ -4
2577
+ -2
2578
+ -1
2579
+ -1
2580
+ -7
2581
+ -6
2582
+ -2
2583
+ 9
2584
+ -1
2585
+ -9
2586
+ 9
2587
+ -6
2588
+ -6
2589
+ 4
2590
+ 9
2591
+ -9
2592
+ -4
2593
+ -7
2594
+ 9
2595
+ -6
2596
+ -1
2597
+ -8
2598
+ -1
2599
+ -1
2600
+ 9
2601
+ -7
2602
+ -4
2603
+ -4
2604
+ -7
2605
+ -7
2606
+ -7
2607
+ -8
2608
+ -6
2609
+ -4
2610
+ -2
2611
+ -6
2612
+ 4
2613
+ -9
2614
+ -1
2615
+ -7
2616
+ -2
2617
+ -2
2618
+ -8
2619
+ -8
2620
+ -7
2621
+ -2
2622
+ -2
2623
+ -1
2624
+ -2
2625
+ -6
2626
+ 9
2627
+ -9
2628
+ -9
2629
+ -4
2630
+ -9
2631
+ -6
2632
+ -6
2633
+ -6
2634
+ -4
2635
+ 9
2636
+ -2
2637
+ -2
2638
+ -7
2639
+ 9
2640
+ 4
2641
+ -4
2642
+ -1
2643
+ -6
2644
+ -8
2645
+ -9
2646
+ -2
2647
+ -4
2648
+ -1
2649
+ 9
2650
+ -6
2651
+ -8
2652
+ -2
2653
+ -1
2654
+ -2
2655
+ -7
2656
+ 4
2657
+ -7
2658
+ -6
2659
+ -1
2660
+ 9
2661
+ -2
2662
+ 4
2663
+ -1
2664
+ -7
2665
+ -6
2666
+ -7
2667
+ -2
2668
+ -2
2669
+ -1
2670
+ -1
2671
+ 9
2672
+ -1
2673
+ -1
2674
+ -6
2675
+ -7
2676
+ -6
2677
+ -1
2678
+ -9
2679
+ -4
2680
+ -4
2681
+ -8
2682
+ -6
2683
+ -4
2684
+ -2
2685
+ 9
2686
+ -6
2687
+ 4
2688
+ 9
2689
+ -6
2690
+ -1
2691
+ -8
2692
+ -6
2693
+ -4
2694
+ 9
2695
+ -1
2696
+ -9
2697
+ -8
2698
+ -1
2699
+ 9
2700
+ -1
2701
+ -7
2702
+ -4
2703
+ -2
2704
+ -1
2705
+ -7
2706
+ -1
2707
+ -9
2708
+ -2
2709
+ -7
2710
+ -4
2711
+ -2
2712
+ -1
2713
+ 4
2714
+ 9
2715
+ -7
2716
+ -2
2717
+ -7
2718
+ -7
2719
+ -6
2720
+ -6
2721
+ -8
2722
+ -1
2723
+ -2
2724
+ -9
2725
+ -7
2726
+ -2
2727
+ -7
2728
+ -7
2729
+ 4
2730
+ -2
2731
+ 4
2732
+ -2
2733
+ 9
2734
+ -4
2735
+ -2
2736
+ -7
2737
+ -4
2738
+ -9
2739
+ -1
2740
+ -2
2741
+ -1
2742
+ 4
2743
+ -7
2744
+ -8
2745
+ -6
2746
+ -9
2747
+ -6
2748
+ -9
2749
+ -7
2750
+ -7
2751
+ 4
2752
+ 9
2753
+ -4
2754
+ 9
2755
+ -2
2756
+ -8
2757
+ 4
2758
+ 9
2759
+ -8
2760
+ -7
2761
+ -6
2762
+ -1
2763
+ -1
2764
+ 9
2765
+ -6
2766
+ -7
2767
+ -2
2768
+ -2
2769
+ -6
2770
+ 4
2771
+ -9
2772
+ -1
2773
+ -7
2774
+ 9
2775
+ -7
2776
+ -6
2777
+ -6
2778
+ -6
2779
+ -9
2780
+ 4
2781
+ -7
2782
+ -4
2783
+ -9
2784
+ 9
2785
+ -6
2786
+ -9
2787
+ -7
2788
+ -9
2789
+ -7
2790
+ -7
2791
+ -2
2792
+ -1
2793
+ -7
2794
+ -7
2795
+ -7
2796
+ 9
2797
+ -4
2798
+ -6
2799
+ -7
2800
+ -2
2801
+ -8
2802
+ -7
2803
+ -2
2804
+ -2
2805
+ -2
2806
+ -7
2807
+ 9
2808
+ -4
2809
+ -9
2810
+ -1
2811
+ -7
2812
+ -7
2813
+ -8
2814
+ -1
2815
+ 4
2816
+ 9
2817
+ 9
2818
+ -2
2819
+ -6
2820
+ -6
2821
+ -1
2822
+ -6
2823
+ 9
2824
+ -1
2825
+ -6
2826
+ -7
2827
+ 4
2828
+ -8
2829
+ -2
2830
+ -9
2831
+ -6
2832
+ -4
2833
+ -7
2834
+ -2
2835
+ -2
2836
+ -1
2837
+ -1
2838
+ -4
2839
+ 4
2840
+ -1
2841
+ 9
2842
+ -7
2843
+ -2
2844
+ -2
2845
+ -1
2846
+ -6
2847
+ 9
2848
+ -6
2849
+ -7
2850
+ -7
2851
+ -9
2852
+ -8
2853
+ 4
2854
+ -1
2855
+ 9
2856
+ -2
2857
+ -2
2858
+ -2
2859
+ -2
2860
+ -9
2861
+ -1
2862
+ -7
2863
+ -6
2864
+ 9
2865
+ -6
2866
+ -1
2867
+ -1
2868
+ -8
2869
+ -8
2870
+ -6
2871
+ -9
2872
+ -6
2873
+ 4
2874
+ 4
2875
+ -4
2876
+ -1
2877
+ -8
2878
+ -9
2879
+ 4
2880
+ -2
2881
+ -2
2882
+ -4
2883
+ -2
2884
+ -6
2885
+ -2
2886
+ -8
2887
+ 9
2888
+ -4
2889
+ -8
2890
+ 9
2891
+ -7
2892
+ -7
2893
+ -8
2894
+ -6
2895
+ -6
2896
+ -8
2897
+ -8
2898
+ 4
2899
+ -2
2900
+ -8
2901
+ -7
2902
+ 9
2903
+ -6
2904
+ -6
2905
+ -2
2906
+ -7
2907
+ -1
2908
+ -8
2909
+ -6
2910
+ -6
2911
+ -6
2912
+ -2
2913
+ -1
2914
+ -1
2915
+ -8
2916
+ 9
2917
+ -6
2918
+ -7
2919
+ -4
2920
+ -8
2921
+ -9
2922
+ -1
2923
+ -1
2924
+ 9
2925
+ -8
2926
+ 9
2927
+ -2
2928
+ -6
2929
+ 9
2930
+ -7
2931
+ -6
2932
+ -4
2933
+ 4
2934
+ -9
2935
+ -2
2936
+ -2
2937
+ -1
2938
+ 4
2939
+ 9
2940
+ -1
2941
+ -6
2942
+ 9
2943
+ 4
2944
+ 9
2945
+ 4
2946
+ -2
2947
+ -6
2948
+ -1
2949
+ -7
2950
+ -9
2951
+ -4
2952
+ -1
2953
+ -2
2954
+ -6
2955
+ -2
2956
+ 9
2957
+ 4
2958
+ 9
2959
+ -7
2960
+ -8
2961
+ 9
2962
+ 9
2963
+ -7
2964
+ -7
2965
+ -7
2966
+ 4
2967
+ -4
2968
+ -1
2969
+ 9
2970
+ -7
2971
+ -1
2972
+ 4
2973
+ 4
2974
+ 9
2975
+ -8
2976
+ -7
2977
+ -9
2978
+ -1
2979
+ -6
2980
+ 9
2981
+ -4
2982
+ 9
2983
+ -8
2984
+ -2
2985
+ 9
2986
+ -9
2987
+ -2
2988
+ 9
2989
+ 9
2990
+ -1
2991
+ -1
2992
+ -6
2993
+ -8
2994
+ 9
2995
+ -7
2996
+ -2
2997
+ -7
2998
+ -7
2999
+ -2
3000
+ -2
3001
+ -1
3002
+ 4
3003
+ 9
3004
+ -9
3005
+ -6
3006
+ -4
3007
+ -7
3008
+ -6
3009
+ -4
3010
+ -9
3011
+ -7
3012
+ 9
3013
+ 9
3014
+ 9
3015
+ -7
3016
+ -6
3017
+ -6
3018
+ -6
3019
+ 4
3020
+ -2
3021
+ -2
3022
+ -1
3023
+ -8
3024
+ -7
3025
+ -8
3026
+ -8
3027
+ 9
3028
+ -9
3029
+ -1
3030
+ -1
3031
+ -1
3032
+ -1
3033
+ 4
3034
+ -7
3035
+ -9
3036
+ -2
3037
+ -7
3038
+ 4
3039
+ -9
3040
+ -9
3041
+ -6
3042
+ -6
3043
+ 9
3044
+ -6
3045
+ 4
3046
+ -7
3047
+ -1
3048
+ -1
3049
+ -4
3050
+ 4
3051
+ -9
3052
+ -1
3053
+ -1
3054
+ -7
3055
+ 4
3056
+ -9
3057
+ -7
3058
+ -1
3059
+ -1
3060
+ -8
3061
+ -4
3062
+ -6
3063
+ -2
3064
+ 9
3065
+ -8
3066
+ 9
3067
+ 9
3068
+ 9
3069
+ 4
3070
+ 9
3071
+ -4
3072
+ -9
3073
+ -1
3074
+ -1
3075
+ -1
3076
+ 9
3077
+ -1
3078
+ -1
3079
+ -1
3080
+ -1
3081
+ -1
3082
+ -2
3083
+ -4
3084
+ -8
3085
+ -1
3086
+ -2
3087
+ -1
3088
+ -7
3089
+ -7
3090
+ -6
3091
+ -8
3092
+ -6
3093
+ -6
3094
+ -7
3095
+ -8
3096
+ -7
3097
+ -7
3098
+ -6
3099
+ -4
3100
+ 4
3101
+ -9
3102
+ -2
3103
+ -1
3104
+ -7
3105
+ -1
3106
+ -7
3107
+ -9
3108
+ -6
3109
+ -9
3110
+ -2
3111
+ 9
3112
+ -2
3113
+ -7
3114
+ -2
3115
+ -7
3116
+ -4
3117
+ -6
3118
+ -4
3119
+ -1
3120
+ 9
3121
+ -2
3122
+ 9
3123
+ -1
3124
+ -9
3125
+ -7
3126
+ 9
3127
+ -1
3128
+ 4
3129
+ -6
3130
+ 4
3131
+ -8
3132
+ -6
3133
+ -2
3134
+ 9
3135
+ -1
3136
+ -1
3137
+ 4
3138
+ -2
3139
+ -6
3140
+ -7
3141
+ 4
3142
+ -8
3143
+ -7
3144
+ 9
3145
+ -2
3146
+ 9
3147
+ -9
3148
+ -6
3149
+ -1
3150
+ -7
3151
+ -9
3152
+ -1
3153
+ -8
3154
+ -1
3155
+ -1
3156
+ -4
3157
+ 9
3158
+ -2
3159
+ -6
3160
+ -8
3161
+ 4
3162
+ -8
3163
+ -4
3164
+ -7
3165
+ -2
3166
+ 9
3167
+ -6
3168
+ -2
3169
+ -7
3170
+ -1
3171
+ -4
3172
+ 9
3173
+ -7
3174
+ -6
3175
+ -2
3176
+ -8
3177
+ 4
3178
+ -2
3179
+ -2
3180
+ -1
3181
+ -8
3182
+ 9
3183
+ -6
3184
+ -6
3185
+ -7
3186
+ -6
3187
+ -2
3188
+ -6
3189
+ -7
3190
+ -6
3191
+ -6
3192
+ -8
3193
+ -9
3194
+ -8
3195
+ -1
3196
+ 9
3197
+ -7
3198
+ -2
3199
+ -2
3200
+ -8
3201
+ -7
3202
+ -2
3203
+ -8
3204
+ -7
3205
+ -6
3206
+ -1
3207
+ -2
3208
+ 9
3209
+ -6
3210
+ 9
3211
+ -2
3212
+ -6
3213
+ -1
3214
+ -7
3215
+ -9
3216
+ -7
3217
+ 4
3218
+ -9
3219
+ 9
3220
+ -9
3221
+ -2
3222
+ -6
3223
+ 9
3224
+ -2
3225
+ -8
3226
+ 9
3227
+ -7
3228
+ 9
3229
+ -7
3230
+ -9
3231
+ -6
3232
+ -9
3233
+ -9
3234
+ -4
3235
+ -1
3236
+ -2
3237
+ -1
3238
+ -7
3239
+ -6
3240
+ -1
3241
+ 4
3242
+ -6
3243
+ -1
3244
+ -7
3245
+ 9
3246
+ 9
3247
+ -6
3248
+ -7
3249
+ -9
3250
+ -2
3251
+ -2
3252
+ -2
3253
+ 9
3254
+ -6
3255
+ -1
3256
+ -2
3257
+ 4
3258
+ 9
3259
+ -6
3260
+ 4
3261
+ -6
3262
+ 9
3263
+ -7
3264
+ -6
3265
+ -1
3266
+ -9
3267
+ 4
3268
+ -1
3269
+ -1
3270
+ -2
3271
+ -4
3272
+ -2
3273
+ -2
3274
+ -4
3275
+ -6
3276
+ -1
3277
+ -4
3278
+ 9
3279
+ 4
3280
+ -6
3281
+ -7
3282
+ -7
3283
+ -4
3284
+ -8
3285
+ 9
3286
+ -9
3287
+ -7
3288
+ -8
3289
+ -4
3290
+ -1
3291
+ -2
3292
+ -1
3293
+ 9
3294
+ -4
3295
+ -6
3296
+ 9
3297
+ -6
3298
+ -2
3299
+ -2
3300
+ 9
3301
+ -6
3302
+ -1
3303
+ -7
3304
+ -7
3305
+ 9
3306
+ -4
3307
+ -2
3308
+ 9
3309
+ -2
3310
+ -6
3311
+ -9
3312
+ -6
3313
+ 9
3314
+ -8
3315
+ -1
3316
+ 9
3317
+ -6
3318
+ -2
3319
+ -7
3320
+ -1
3321
+ 9
3322
+ -9
3323
+ -1
3324
+ 9
3325
+ 9
3326
+ -1
3327
+ -4
3328
+ -8
3329
+ -2
3330
+ -8
3331
+ -6
3332
+ -1
3333
+ -4
3334
+ -1
3335
+ -7
3336
+ -1
3337
+ -6
3338
+ -4
3339
+ 9
3340
+ -7
3341
+ -6
3342
+ -7
3343
+ -7
3344
+ -4
3345
+ 9
3346
+ -7
3347
+ -2
3348
+ 9
3349
+ 9
3350
+ -1
3351
+ 9
3352
+ -8
3353
+ -1
3354
+ -7
3355
+ -9
3356
+ -1
3357
+ -6
3358
+ -7
3359
+ -2
3360
+ -7
3361
+ -4