@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,1985 @@
1
+ 1984
2
+ 97
3
+ -451
4
+ 433
5
+ -835
6
+ -278
7
+ -219
8
+ -904
9
+ 57
10
+ 602
11
+ -219
12
+ -219
13
+ -560
14
+ 602
15
+ -657
16
+ -704
17
+ -378
18
+ 647
19
+ -219
20
+ -844
21
+ -657
22
+ -835
23
+ -219
24
+ 49
25
+ -606
26
+ -904
27
+ -657
28
+ 57
29
+ 57
30
+ -457
31
+ -844
32
+ 804
33
+ -725
34
+ -844
35
+ 383
36
+ 804
37
+ 155
38
+ -725
39
+ 751
40
+ -844
41
+ -279
42
+ -527
43
+ -606
44
+ 57
45
+ -451
46
+ -457
47
+ -835
48
+ 433
49
+ -451
50
+ -278
51
+ -279
52
+ 383
53
+ 865
54
+ 865
55
+ -457
56
+ -559
57
+ 49
58
+ -378
59
+ 433
60
+ 49
61
+ -725
62
+ -835
63
+ 602
64
+ -835
65
+ -457
66
+ -704
67
+ -279
68
+ -844
69
+ -844
70
+ -935
71
+ 49
72
+ 155
73
+ -935
74
+ 602
75
+ 433
76
+ 751
77
+ -451
78
+ -844
79
+ -904
80
+ -559
81
+ 97
82
+ 713
83
+ 155
84
+ 383
85
+ -378
86
+ -725
87
+ 647
88
+ 602
89
+ 433
90
+ -725
91
+ 433
92
+ -704
93
+ 383
94
+ -527
95
+ -904
96
+ -279
97
+ 433
98
+ 86
99
+ -835
100
+ -527
101
+ -219
102
+ -279
103
+ 383
104
+ 751
105
+ 865
106
+ 433
107
+ -657
108
+ -378
109
+ 602
110
+ 86
111
+ -935
112
+ -219
113
+ -725
114
+ -378
115
+ -606
116
+ -725
117
+ -279
118
+ -560
119
+ 602
120
+ -606
121
+ -559
122
+ -279
123
+ -725
124
+ -559
125
+ -725
126
+ -378
127
+ 57
128
+ -219
129
+ -808
130
+ -935
131
+ -278
132
+ -378
133
+ -219
134
+ -935
135
+ -904
136
+ 433
137
+ -704
138
+ 86
139
+ -725
140
+ -559
141
+ 383
142
+ -560
143
+ 155
144
+ -835
145
+ 97
146
+ 713
147
+ 751
148
+ 647
149
+ -279
150
+ -725
151
+ -278
152
+ 804
153
+ -835
154
+ 97
155
+ -560
156
+ -278
157
+ -451
158
+ 433
159
+ 602
160
+ -219
161
+ -844
162
+ -451
163
+ -904
164
+ -657
165
+ -606
166
+ -560
167
+ 804
168
+ -378
169
+ 804
170
+ -725
171
+ -835
172
+ -704
173
+ -657
174
+ -904
175
+ 86
176
+ 804
177
+ 57
178
+ 713
179
+ -725
180
+ 86
181
+ -279
182
+ 97
183
+ -657
184
+ 647
185
+ 865
186
+ 155
187
+ -606
188
+ 57
189
+ -725
190
+ 865
191
+ 383
192
+ 97
193
+ -835
194
+ -278
195
+ -835
196
+ 602
197
+ -935
198
+ 713
199
+ -219
200
+ -704
201
+ 865
202
+ 433
203
+ 49
204
+ -704
205
+ 97
206
+ -451
207
+ 57
208
+ 647
209
+ -560
210
+ -451
211
+ 751
212
+ -378
213
+ -835
214
+ -451
215
+ 86
216
+ -835
217
+ -279
218
+ -725
219
+ -278
220
+ 647
221
+ -606
222
+ -704
223
+ 433
224
+ -279
225
+ -935
226
+ -560
227
+ 97
228
+ 57
229
+ -378
230
+ -457
231
+ 97
232
+ -560
233
+ 86
234
+ 383
235
+ -278
236
+ 602
237
+ -657
238
+ 57
239
+ -935
240
+ -457
241
+ 57
242
+ -808
243
+ 155
244
+ 383
245
+ -560
246
+ 57
247
+ -606
248
+ -451
249
+ 751
250
+ -560
251
+ -219
252
+ -904
253
+ -935
254
+ -835
255
+ -725
256
+ -808
257
+ -559
258
+ -457
259
+ -559
260
+ -808
261
+ -704
262
+ -279
263
+ 751
264
+ 49
265
+ -451
266
+ 97
267
+ 804
268
+ -457
269
+ 49
270
+ 383
271
+ 97
272
+ 804
273
+ -559
274
+ -219
275
+ 804
276
+ -560
277
+ -378
278
+ -451
279
+ -725
280
+ -559
281
+ -457
282
+ 86
283
+ -278
284
+ 383
285
+ -606
286
+ 804
287
+ 647
288
+ -725
289
+ 49
290
+ 602
291
+ 49
292
+ 751
293
+ 155
294
+ -457
295
+ 804
296
+ 713
297
+ -451
298
+ 155
299
+ -657
300
+ 49
301
+ -935
302
+ -559
303
+ 865
304
+ 383
305
+ 804
306
+ 647
307
+ -657
308
+ -219
309
+ 865
310
+ 433
311
+ -657
312
+ 97
313
+ 865
314
+ -560
315
+ -560
316
+ -457
317
+ -559
318
+ 865
319
+ -704
320
+ 865
321
+ -219
322
+ 751
323
+ 751
324
+ -560
325
+ -451
326
+ 49
327
+ -457
328
+ -527
329
+ -527
330
+ 49
331
+ -606
332
+ 155
333
+ -559
334
+ -279
335
+ -725
336
+ 97
337
+ -657
338
+ -527
339
+ -457
340
+ 647
341
+ 49
342
+ 49
343
+ 49
344
+ -808
345
+ -808
346
+ -935
347
+ -657
348
+ -219
349
+ -378
350
+ 751
351
+ 433
352
+ 713
353
+ 49
354
+ -527
355
+ -219
356
+ -451
357
+ -219
358
+ 383
359
+ 713
360
+ -704
361
+ 383
362
+ 647
363
+ -278
364
+ 647
365
+ 49
366
+ 49
367
+ 49
368
+ 57
369
+ -278
370
+ -606
371
+ 86
372
+ 865
373
+ -725
374
+ 433
375
+ -835
376
+ 647
377
+ 433
378
+ -559
379
+ -904
380
+ 865
381
+ -219
382
+ 97
383
+ 49
384
+ 49
385
+ 647
386
+ -279
387
+ -725
388
+ 713
389
+ -451
390
+ 86
391
+ 433
392
+ -278
393
+ -278
394
+ -560
395
+ 383
396
+ 383
397
+ -808
398
+ -844
399
+ 602
400
+ -278
401
+ -219
402
+ 713
403
+ 713
404
+ 602
405
+ -451
406
+ -606
407
+ -904
408
+ -725
409
+ 647
410
+ 865
411
+ -935
412
+ -657
413
+ -378
414
+ 647
415
+ -219
416
+ -725
417
+ -844
418
+ -808
419
+ 804
420
+ -527
421
+ -808
422
+ 602
423
+ -278
424
+ 433
425
+ 383
426
+ -704
427
+ -606
428
+ -451
429
+ 57
430
+ -457
431
+ 97
432
+ -935
433
+ -219
434
+ 86
435
+ 713
436
+ -560
437
+ 49
438
+ 865
439
+ -844
440
+ 86
441
+ -606
442
+ -657
443
+ -527
444
+ -219
445
+ 155
446
+ -527
447
+ 86
448
+ -560
449
+ -704
450
+ 49
451
+ 713
452
+ -844
453
+ 86
454
+ -451
455
+ -560
456
+ 804
457
+ -560
458
+ -844
459
+ -560
460
+ 647
461
+ -457
462
+ 57
463
+ 751
464
+ -935
465
+ 433
466
+ 97
467
+ -219
468
+ -278
469
+ -279
470
+ 751
471
+ -844
472
+ -560
473
+ 865
474
+ -279
475
+ -219
476
+ -808
477
+ -457
478
+ 433
479
+ 86
480
+ -835
481
+ 713
482
+ -844
483
+ 751
484
+ -835
485
+ 57
486
+ -808
487
+ -527
488
+ -451
489
+ -378
490
+ -560
491
+ 155
492
+ -657
493
+ -904
494
+ -725
495
+ -808
496
+ 86
497
+ -808
498
+ -219
499
+ -451
500
+ -527
501
+ 155
502
+ 602
503
+ 804
504
+ 57
505
+ 865
506
+ 713
507
+ 804
508
+ -527
509
+ -704
510
+ -808
511
+ 86
512
+ 383
513
+ -935
514
+ 433
515
+ -279
516
+ -725
517
+ 86
518
+ -808
519
+ 97
520
+ 804
521
+ 804
522
+ -606
523
+ -457
524
+ -279
525
+ -527
526
+ 713
527
+ -279
528
+ 155
529
+ -378
530
+ -560
531
+ 383
532
+ 57
533
+ -279
534
+ -279
535
+ -835
536
+ 804
537
+ 155
538
+ -808
539
+ -725
540
+ -378
541
+ -559
542
+ 97
543
+ -560
544
+ -935
545
+ -278
546
+ -451
547
+ 49
548
+ 155
549
+ -725
550
+ -657
551
+ 383
552
+ 804
553
+ -278
554
+ 86
555
+ 804
556
+ -278
557
+ -808
558
+ -808
559
+ 751
560
+ -657
561
+ 86
562
+ 647
563
+ 804
564
+ 713
565
+ -844
566
+ -725
567
+ -451
568
+ 155
569
+ -844
570
+ -219
571
+ -378
572
+ 383
573
+ -279
574
+ 97
575
+ -451
576
+ -279
577
+ 713
578
+ -935
579
+ 804
580
+ 751
581
+ 433
582
+ 713
583
+ -457
584
+ 97
585
+ -844
586
+ -559
587
+ 602
588
+ -844
589
+ -725
590
+ -278
591
+ 86
592
+ 49
593
+ 647
594
+ -808
595
+ -835
596
+ -219
597
+ -560
598
+ -278
599
+ 49
600
+ -935
601
+ 383
602
+ -725
603
+ 57
604
+ -704
605
+ -559
606
+ 97
607
+ 647
608
+ -844
609
+ -844
610
+ 865
611
+ -935
612
+ 647
613
+ -835
614
+ -657
615
+ 751
616
+ -279
617
+ -935
618
+ -457
619
+ -704
620
+ 751
621
+ -559
622
+ 713
623
+ -457
624
+ 49
625
+ -835
626
+ -457
627
+ 383
628
+ -904
629
+ -657
630
+ 865
631
+ -560
632
+ -835
633
+ -835
634
+ 804
635
+ 49
636
+ -527
637
+ 647
638
+ 433
639
+ 865
640
+ -219
641
+ 602
642
+ 155
643
+ 865
644
+ -457
645
+ -844
646
+ 433
647
+ 86
648
+ -378
649
+ -378
650
+ 433
651
+ -935
652
+ -457
653
+ 751
654
+ 602
655
+ -279
656
+ 751
657
+ -451
658
+ -844
659
+ 433
660
+ -219
661
+ 433
662
+ 433
663
+ -527
664
+ -560
665
+ -657
666
+ 383
667
+ -835
668
+ -844
669
+ -657
670
+ 49
671
+ 602
672
+ 97
673
+ -904
674
+ -808
675
+ -904
676
+ -935
677
+ -844
678
+ 57
679
+ -808
680
+ 155
681
+ -606
682
+ 383
683
+ -559
684
+ -278
685
+ -704
686
+ -935
687
+ -844
688
+ -725
689
+ -457
690
+ -904
691
+ -904
692
+ 383
693
+ -278
694
+ 155
695
+ -704
696
+ -560
697
+ -835
698
+ 647
699
+ -606
700
+ 647
701
+ -527
702
+ 97
703
+ 155
704
+ 49
705
+ -278
706
+ -904
707
+ 751
708
+ -808
709
+ 155
710
+ 86
711
+ -835
712
+ -844
713
+ -725
714
+ 155
715
+ -725
716
+ 713
717
+ -725
718
+ 57
719
+ -606
720
+ -808
721
+ -279
722
+ -278
723
+ -657
724
+ 86
725
+ -451
726
+ 97
727
+ -844
728
+ -808
729
+ -844
730
+ 155
731
+ -835
732
+ 751
733
+ 804
734
+ -835
735
+ 433
736
+ 713
737
+ 713
738
+ -278
739
+ 713
740
+ -657
741
+ -606
742
+ -560
743
+ 713
744
+ -560
745
+ -808
746
+ -527
747
+ 383
748
+ -808
749
+ -904
750
+ -451
751
+ 713
752
+ 713
753
+ -219
754
+ -457
755
+ -279
756
+ 713
757
+ 804
758
+ 49
759
+ -451
760
+ 865
761
+ 602
762
+ -844
763
+ -559
764
+ 57
765
+ 647
766
+ -457
767
+ 804
768
+ -704
769
+ -904
770
+ -219
771
+ 647
772
+ -279
773
+ 49
774
+ 602
775
+ 804
776
+ -935
777
+ -559
778
+ -725
779
+ 602
780
+ 602
781
+ -527
782
+ 751
783
+ 433
784
+ -935
785
+ -935
786
+ 602
787
+ 751
788
+ 865
789
+ 865
790
+ -725
791
+ -278
792
+ 713
793
+ -935
794
+ 751
795
+ -904
796
+ 865
797
+ 57
798
+ -606
799
+ 97
800
+ 647
801
+ 865
802
+ 383
803
+ -219
804
+ 804
805
+ -219
806
+ 647
807
+ -451
808
+ 647
809
+ -527
810
+ 383
811
+ 647
812
+ 602
813
+ -378
814
+ 433
815
+ 804
816
+ -844
817
+ -527
818
+ -704
819
+ 383
820
+ 647
821
+ -704
822
+ -606
823
+ -279
824
+ -904
825
+ -657
826
+ -378
827
+ 804
828
+ -704
829
+ -704
830
+ 97
831
+ -559
832
+ 383
833
+ 602
834
+ 804
835
+ 804
836
+ -657
837
+ -279
838
+ 865
839
+ 647
840
+ -606
841
+ 713
842
+ 57
843
+ 97
844
+ 647
845
+ -704
846
+ 97
847
+ -844
848
+ -279
849
+ -219
850
+ 86
851
+ 713
852
+ -657
853
+ -559
854
+ 647
855
+ -835
856
+ 751
857
+ -844
858
+ 49
859
+ -835
860
+ -725
861
+ 433
862
+ -844
863
+ -378
864
+ -844
865
+ -457
866
+ -378
867
+ -725
868
+ -559
869
+ -704
870
+ -935
871
+ -835
872
+ 751
873
+ 86
874
+ -279
875
+ -278
876
+ -560
877
+ 647
878
+ -559
879
+ -451
880
+ 713
881
+ 383
882
+ 647
883
+ 647
884
+ -378
885
+ 647
886
+ 865
887
+ -451
888
+ 97
889
+ 86
890
+ -278
891
+ 383
892
+ -559
893
+ 86
894
+ 751
895
+ -219
896
+ 713
897
+ 865
898
+ 97
899
+ 155
900
+ 647
901
+ 155
902
+ -560
903
+ -527
904
+ -704
905
+ -559
906
+ -219
907
+ 57
908
+ 433
909
+ -935
910
+ -606
911
+ -657
912
+ -278
913
+ -451
914
+ -704
915
+ 713
916
+ -904
917
+ -606
918
+ -278
919
+ 804
920
+ -527
921
+ -935
922
+ 602
923
+ 86
924
+ -606
925
+ 49
926
+ 49
927
+ 97
928
+ -808
929
+ 865
930
+ 865
931
+ 602
932
+ -560
933
+ -219
934
+ -904
935
+ 602
936
+ 804
937
+ -457
938
+ -378
939
+ -457
940
+ -725
941
+ 49
942
+ -808
943
+ -704
944
+ -904
945
+ 602
946
+ 751
947
+ 86
948
+ 97
949
+ -904
950
+ -704
951
+ -559
952
+ -559
953
+ -904
954
+ 433
955
+ -704
956
+ 383
957
+ -279
958
+ -279
959
+ -904
960
+ -457
961
+ 602
962
+ -725
963
+ 751
964
+ -606
965
+ -657
966
+ -704
967
+ -527
968
+ 97
969
+ 713
970
+ -219
971
+ -835
972
+ -657
973
+ 155
974
+ 751
975
+ 57
976
+ 804
977
+ 155
978
+ -378
979
+ -704
980
+ 86
981
+ -935
982
+ 647
983
+ -844
984
+ 602
985
+ -278
986
+ -808
987
+ -725
988
+ -606
989
+ -704
990
+ 865
991
+ 602
992
+ -279
993
+ -457
994
+ -451
995
+ -378
996
+ -704
997
+ 865
998
+ 97
999
+ -704
1000
+ -725
1001
+ -835
1002
+ 602
1003
+ 86
1004
+ -219
1005
+ -457
1006
+ 751
1007
+ -704
1008
+ -835
1009
+ -904
1010
+ -606
1011
+ 433
1012
+ -606
1013
+ -278
1014
+ -527
1015
+ -451
1016
+ -378
1017
+ 433
1018
+ -559
1019
+ -835
1020
+ 57
1021
+ -451
1022
+ -904
1023
+ -279
1024
+ -527
1025
+ 86
1026
+ -560
1027
+ 865
1028
+ -559
1029
+ -457
1030
+ -835
1031
+ -904
1032
+ -559
1033
+ -219
1034
+ -278
1035
+ 383
1036
+ -657
1037
+ -808
1038
+ 155
1039
+ -725
1040
+ -457
1041
+ 86
1042
+ 155
1043
+ -904
1044
+ -844
1045
+ -808
1046
+ 865
1047
+ 865
1048
+ -904
1049
+ 97
1050
+ -606
1051
+ 383
1052
+ -219
1053
+ -527
1054
+ 713
1055
+ -451
1056
+ -527
1057
+ 751
1058
+ -451
1059
+ -844
1060
+ -606
1061
+ -457
1062
+ 804
1063
+ 155
1064
+ -457
1065
+ -935
1066
+ -725
1067
+ -278
1068
+ -527
1069
+ 86
1070
+ -559
1071
+ -606
1072
+ 383
1073
+ -808
1074
+ 155
1075
+ 433
1076
+ -606
1077
+ -904
1078
+ 49
1079
+ 647
1080
+ -657
1081
+ -279
1082
+ 433
1083
+ 433
1084
+ -219
1085
+ 86
1086
+ -279
1087
+ 57
1088
+ -704
1089
+ -219
1090
+ 57
1091
+ 865
1092
+ -457
1093
+ -457
1094
+ -808
1095
+ -844
1096
+ -657
1097
+ 97
1098
+ 57
1099
+ -279
1100
+ 433
1101
+ -559
1102
+ 86
1103
+ -808
1104
+ -219
1105
+ 865
1106
+ -278
1107
+ -704
1108
+ -704
1109
+ -278
1110
+ -808
1111
+ 751
1112
+ 97
1113
+ 713
1114
+ 97
1115
+ 49
1116
+ 57
1117
+ -279
1118
+ 97
1119
+ -835
1120
+ 57
1121
+ 383
1122
+ 86
1123
+ -606
1124
+ -904
1125
+ -457
1126
+ -527
1127
+ 49
1128
+ -560
1129
+ -808
1130
+ 713
1131
+ 804
1132
+ 713
1133
+ -527
1134
+ 865
1135
+ -904
1136
+ 804
1137
+ -451
1138
+ -457
1139
+ 383
1140
+ 751
1141
+ -559
1142
+ -935
1143
+ -725
1144
+ 433
1145
+ -835
1146
+ -904
1147
+ 602
1148
+ 433
1149
+ -527
1150
+ 751
1151
+ -457
1152
+ -606
1153
+ -704
1154
+ -725
1155
+ -378
1156
+ -904
1157
+ 713
1158
+ -835
1159
+ -844
1160
+ 865
1161
+ -560
1162
+ 602
1163
+ 433
1164
+ 804
1165
+ -527
1166
+ 602
1167
+ -527
1168
+ 49
1169
+ 647
1170
+ -657
1171
+ -457
1172
+ 602
1173
+ -278
1174
+ -904
1175
+ -835
1176
+ -704
1177
+ -704
1178
+ -835
1179
+ 433
1180
+ 433
1181
+ 97
1182
+ 383
1183
+ 647
1184
+ -657
1185
+ 86
1186
+ -527
1187
+ -935
1188
+ 804
1189
+ -725
1190
+ -904
1191
+ -559
1192
+ -606
1193
+ -904
1194
+ 49
1195
+ -935
1196
+ 647
1197
+ 86
1198
+ -835
1199
+ 713
1200
+ -657
1201
+ 433
1202
+ 647
1203
+ 97
1204
+ -935
1205
+ 713
1206
+ 57
1207
+ -606
1208
+ 155
1209
+ -606
1210
+ -560
1211
+ -808
1212
+ -808
1213
+ -808
1214
+ -560
1215
+ 433
1216
+ -378
1217
+ -457
1218
+ 751
1219
+ -451
1220
+ 804
1221
+ -451
1222
+ -808
1223
+ -904
1224
+ -657
1225
+ 647
1226
+ 49
1227
+ 155
1228
+ 647
1229
+ -378
1230
+ -378
1231
+ -560
1232
+ 155
1233
+ -844
1234
+ 602
1235
+ 155
1236
+ -378
1237
+ 57
1238
+ -219
1239
+ 49
1240
+ 433
1241
+ -904
1242
+ 804
1243
+ 57
1244
+ 751
1245
+ 713
1246
+ 57
1247
+ -808
1248
+ -451
1249
+ -219
1250
+ 713
1251
+ -279
1252
+ -278
1253
+ -835
1254
+ -808
1255
+ 865
1256
+ -451
1257
+ -725
1258
+ -904
1259
+ 57
1260
+ 49
1261
+ 49
1262
+ 804
1263
+ -835
1264
+ 49
1265
+ -808
1266
+ 433
1267
+ -527
1268
+ -559
1269
+ -657
1270
+ -704
1271
+ -808
1272
+ 86
1273
+ -725
1274
+ -279
1275
+ 647
1276
+ 57
1277
+ -844
1278
+ 97
1279
+ 155
1280
+ -606
1281
+ -904
1282
+ -559
1283
+ -378
1284
+ -559
1285
+ -844
1286
+ 713
1287
+ -451
1288
+ 49
1289
+ -935
1290
+ 602
1291
+ -835
1292
+ -279
1293
+ -606
1294
+ -378
1295
+ 602
1296
+ -935
1297
+ 57
1298
+ 49
1299
+ 751
1300
+ -835
1301
+ -844
1302
+ 383
1303
+ 647
1304
+ 602
1305
+ 751
1306
+ -704
1307
+ -808
1308
+ 602
1309
+ -451
1310
+ 804
1311
+ 713
1312
+ 804
1313
+ 57
1314
+ -378
1315
+ -935
1316
+ -606
1317
+ -559
1318
+ 97
1319
+ -527
1320
+ 97
1321
+ 383
1322
+ -457
1323
+ -560
1324
+ -835
1325
+ 804
1326
+ -935
1327
+ 57
1328
+ 155
1329
+ -844
1330
+ -559
1331
+ 155
1332
+ -560
1333
+ -378
1334
+ 383
1335
+ -808
1336
+ -559
1337
+ -935
1338
+ -657
1339
+ -279
1340
+ -935
1341
+ -378
1342
+ 49
1343
+ -378
1344
+ 602
1345
+ 97
1346
+ 713
1347
+ -606
1348
+ -527
1349
+ 751
1350
+ 433
1351
+ 86
1352
+ -935
1353
+ -657
1354
+ -527
1355
+ 865
1356
+ 713
1357
+ 865
1358
+ -935
1359
+ -219
1360
+ 49
1361
+ -844
1362
+ -559
1363
+ -904
1364
+ 865
1365
+ -278
1366
+ 86
1367
+ 647
1368
+ 97
1369
+ -527
1370
+ 602
1371
+ -904
1372
+ 49
1373
+ 647
1374
+ 86
1375
+ 57
1376
+ 713
1377
+ 751
1378
+ -606
1379
+ -657
1380
+ -378
1381
+ 751
1382
+ -935
1383
+ -219
1384
+ 155
1385
+ 155
1386
+ 804
1387
+ 804
1388
+ -904
1389
+ -935
1390
+ 86
1391
+ 602
1392
+ 57
1393
+ -725
1394
+ 155
1395
+ 49
1396
+ -560
1397
+ -527
1398
+ -844
1399
+ 647
1400
+ 155
1401
+ 155
1402
+ -559
1403
+ -451
1404
+ -560
1405
+ -844
1406
+ 865
1407
+ -451
1408
+ -378
1409
+ -704
1410
+ -451
1411
+ -560
1412
+ -378
1413
+ 602
1414
+ -606
1415
+ 86
1416
+ -704
1417
+ -835
1418
+ 155
1419
+ 713
1420
+ -935
1421
+ 713
1422
+ 804
1423
+ 751
1424
+ -527
1425
+ -527
1426
+ 57
1427
+ 804
1428
+ -725
1429
+ -904
1430
+ -904
1431
+ -451
1432
+ -527
1433
+ -378
1434
+ 602
1435
+ 804
1436
+ 57
1437
+ -457
1438
+ -657
1439
+ 155
1440
+ 713
1441
+ 97
1442
+ -527
1443
+ -904
1444
+ 804
1445
+ -219
1446
+ -844
1447
+ -278
1448
+ -378
1449
+ -559
1450
+ 57
1451
+ 97
1452
+ 86
1453
+ -606
1454
+ -527
1455
+ -457
1456
+ -279
1457
+ -219
1458
+ 865
1459
+ 383
1460
+ -560
1461
+ -560
1462
+ 433
1463
+ -560
1464
+ -378
1465
+ 751
1466
+ 86
1467
+ -835
1468
+ -278
1469
+ 433
1470
+ -279
1471
+ -451
1472
+ -457
1473
+ 86
1474
+ 602
1475
+ -527
1476
+ 57
1477
+ -378
1478
+ 865
1479
+ -278
1480
+ -451
1481
+ 713
1482
+ -904
1483
+ -844
1484
+ -704
1485
+ -606
1486
+ -904
1487
+ -451
1488
+ -451
1489
+ 57
1490
+ -559
1491
+ -657
1492
+ -844
1493
+ -704
1494
+ -219
1495
+ -451
1496
+ 383
1497
+ -808
1498
+ -704
1499
+ -378
1500
+ 57
1501
+ 751
1502
+ -808
1503
+ 865
1504
+ 865
1505
+ -451
1506
+ 865
1507
+ 86
1508
+ 383
1509
+ -657
1510
+ -279
1511
+ -559
1512
+ 602
1513
+ -219
1514
+ 86
1515
+ -559
1516
+ -457
1517
+ -935
1518
+ 86
1519
+ 97
1520
+ -725
1521
+ 57
1522
+ -606
1523
+ 751
1524
+ 97
1525
+ 49
1526
+ 713
1527
+ 804
1528
+ -904
1529
+ 155
1530
+ -378
1531
+ 433
1532
+ 647
1533
+ -451
1534
+ 433
1535
+ -527
1536
+ -725
1537
+ 86
1538
+ 86
1539
+ -606
1540
+ -278
1541
+ -606
1542
+ -704
1543
+ -835
1544
+ -457
1545
+ -527
1546
+ -935
1547
+ 86
1548
+ 865
1549
+ -559
1550
+ -657
1551
+ -560
1552
+ 713
1553
+ 97
1554
+ 751
1555
+ -657
1556
+ -378
1557
+ 865
1558
+ -560
1559
+ -657
1560
+ -560
1561
+ 433
1562
+ -835
1563
+ -278
1564
+ 86
1565
+ -279
1566
+ -451
1567
+ 57
1568
+ -527
1569
+ 433
1570
+ -657
1571
+ -844
1572
+ 433
1573
+ 751
1574
+ 751
1575
+ -725
1576
+ 383
1577
+ -606
1578
+ -559
1579
+ 713
1580
+ -378
1581
+ 647
1582
+ 86
1583
+ -219
1584
+ 865
1585
+ -279
1586
+ -657
1587
+ 155
1588
+ -451
1589
+ 751
1590
+ 57
1591
+ -559
1592
+ -935
1593
+ 155
1594
+ -657
1595
+ -606
1596
+ 57
1597
+ 155
1598
+ -835
1599
+ -527
1600
+ -935
1601
+ -457
1602
+ -606
1603
+ -725
1604
+ 804
1605
+ -704
1606
+ 647
1607
+ -935
1608
+ -278
1609
+ 155
1610
+ 713
1611
+ -279
1612
+ -844
1613
+ -835
1614
+ -278
1615
+ 647
1616
+ -835
1617
+ 865
1618
+ -835
1619
+ -725
1620
+ -657
1621
+ 49
1622
+ -278
1623
+ 804
1624
+ 751
1625
+ -835
1626
+ -451
1627
+ -219
1628
+ 155
1629
+ 383
1630
+ -844
1631
+ 647
1632
+ -527
1633
+ -808
1634
+ -606
1635
+ -451
1636
+ -835
1637
+ -278
1638
+ 86
1639
+ 602
1640
+ -559
1641
+ -527
1642
+ -559
1643
+ -279
1644
+ -560
1645
+ -704
1646
+ -808
1647
+ 155
1648
+ 602
1649
+ -527
1650
+ -278
1651
+ 647
1652
+ -704
1653
+ 751
1654
+ 383
1655
+ 865
1656
+ 751
1657
+ 155
1658
+ 383
1659
+ -904
1660
+ -657
1661
+ -451
1662
+ -904
1663
+ 86
1664
+ -606
1665
+ 57
1666
+ -527
1667
+ 751
1668
+ -935
1669
+ -527
1670
+ -704
1671
+ -457
1672
+ -279
1673
+ -725
1674
+ 97
1675
+ 804
1676
+ -704
1677
+ 97
1678
+ -527
1679
+ -560
1680
+ -657
1681
+ 751
1682
+ -560
1683
+ 865
1684
+ 383
1685
+ -527
1686
+ 49
1687
+ -835
1688
+ 713
1689
+ 155
1690
+ -378
1691
+ 804
1692
+ -725
1693
+ -279
1694
+ 155
1695
+ 804
1696
+ -725
1697
+ -560
1698
+ -279
1699
+ -560
1700
+ 751
1701
+ -844
1702
+ -451
1703
+ -279
1704
+ 86
1705
+ 97
1706
+ -935
1707
+ -844
1708
+ -559
1709
+ -835
1710
+ -378
1711
+ -278
1712
+ 433
1713
+ -725
1714
+ 865
1715
+ -559
1716
+ -606
1717
+ -904
1718
+ -527
1719
+ 751
1720
+ -559
1721
+ 57
1722
+ 49
1723
+ -378
1724
+ -935
1725
+ 433
1726
+ -935
1727
+ 49
1728
+ -606
1729
+ 155
1730
+ -278
1731
+ -378
1732
+ 57
1733
+ -278
1734
+ 383
1735
+ 49
1736
+ -378
1737
+ -527
1738
+ 155
1739
+ 97
1740
+ -657
1741
+ -808
1742
+ 97
1743
+ -527
1744
+ 155
1745
+ 865
1746
+ 713
1747
+ -844
1748
+ -844
1749
+ -904
1750
+ -904
1751
+ -378
1752
+ -808
1753
+ -527
1754
+ -935
1755
+ -378
1756
+ -844
1757
+ -378
1758
+ 383
1759
+ -935
1760
+ -844
1761
+ -378
1762
+ -559
1763
+ -725
1764
+ -657
1765
+ -279
1766
+ -559
1767
+ -278
1768
+ 647
1769
+ 155
1770
+ 49
1771
+ -808
1772
+ 86
1773
+ -279
1774
+ 865
1775
+ -606
1776
+ 433
1777
+ -378
1778
+ 804
1779
+ 49
1780
+ 86
1781
+ 647
1782
+ 49
1783
+ 647
1784
+ -457
1785
+ -378
1786
+ -935
1787
+ 804
1788
+ -457
1789
+ 713
1790
+ 49
1791
+ 383
1792
+ -527
1793
+ 57
1794
+ -560
1795
+ 865
1796
+ -606
1797
+ -278
1798
+ -560
1799
+ -278
1800
+ -219
1801
+ -657
1802
+ -457
1803
+ -279
1804
+ 86
1805
+ -606
1806
+ -606
1807
+ -279
1808
+ 751
1809
+ 383
1810
+ -808
1811
+ -278
1812
+ -457
1813
+ -560
1814
+ -657
1815
+ -935
1816
+ -219
1817
+ 97
1818
+ 751
1819
+ 155
1820
+ -378
1821
+ -278
1822
+ 602
1823
+ -704
1824
+ 155
1825
+ 383
1826
+ -844
1827
+ -606
1828
+ -704
1829
+ -835
1830
+ -935
1831
+ -835
1832
+ -808
1833
+ -704
1834
+ -527
1835
+ 383
1836
+ -904
1837
+ -704
1838
+ -657
1839
+ 602
1840
+ -844
1841
+ -657
1842
+ 383
1843
+ -606
1844
+ 713
1845
+ 383
1846
+ -457
1847
+ -559
1848
+ 865
1849
+ -559
1850
+ 647
1851
+ 865
1852
+ 602
1853
+ -725
1854
+ 602
1855
+ -808
1856
+ -559
1857
+ 804
1858
+ -808
1859
+ -844
1860
+ -725
1861
+ -835
1862
+ 57
1863
+ -457
1864
+ 57
1865
+ -279
1866
+ -808
1867
+ 97
1868
+ 433
1869
+ -835
1870
+ -559
1871
+ 602
1872
+ 97
1873
+ -935
1874
+ 57
1875
+ -657
1876
+ -904
1877
+ -904
1878
+ -704
1879
+ -560
1880
+ -657
1881
+ -279
1882
+ -219
1883
+ -704
1884
+ -935
1885
+ -219
1886
+ -606
1887
+ -560
1888
+ 804
1889
+ -279
1890
+ -704
1891
+ 602
1892
+ -808
1893
+ -935
1894
+ 713
1895
+ 713
1896
+ 383
1897
+ 602
1898
+ -808
1899
+ 433
1900
+ -560
1901
+ 155
1902
+ 57
1903
+ -704
1904
+ 383
1905
+ 865
1906
+ -278
1907
+ -904
1908
+ -904
1909
+ -560
1910
+ 155
1911
+ 713
1912
+ -278
1913
+ 433
1914
+ -278
1915
+ -457
1916
+ -559
1917
+ 383
1918
+ 647
1919
+ -278
1920
+ 97
1921
+ -657
1922
+ -657
1923
+ -451
1924
+ 97
1925
+ -808
1926
+ 647
1927
+ -378
1928
+ 57
1929
+ -835
1930
+ 155
1931
+ -808
1932
+ 383
1933
+ -219
1934
+ 602
1935
+ -457
1936
+ 97
1937
+ -219
1938
+ -559
1939
+ -451
1940
+ 602
1941
+ 433
1942
+ -457
1943
+ 97
1944
+ 602
1945
+ 49
1946
+ 751
1947
+ -219
1948
+ 97
1949
+ -451
1950
+ -457
1951
+ -279
1952
+ -808
1953
+ -904
1954
+ 602
1955
+ -657
1956
+ -278
1957
+ -725
1958
+ -844
1959
+ 713
1960
+ -560
1961
+ 751
1962
+ 865
1963
+ -279
1964
+ -219
1965
+ 751
1966
+ 647
1967
+ -457
1968
+ -219
1969
+ 751
1970
+ -704
1971
+ 383
1972
+ 602
1973
+ -606
1974
+ -560
1975
+ -559
1976
+ -378
1977
+ 804
1978
+ -808
1979
+ 57
1980
+ -457
1981
+ 57
1982
+ 49
1983
+ 86
1984
+ -278
1985
+ -457