@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,1000 @@
1
+ 999
2
+ 37290
3
+ 88268
4
+ 88268
5
+ 96370
6
+ 37290
7
+ -15756
8
+ 55795
9
+ 37290
10
+ 86978
11
+ 98757
12
+ -15756
13
+ 37290
14
+ -71162
15
+ 37290
16
+ -15756
17
+ 99254
18
+ -71162
19
+ 98757
20
+ -15756
21
+ -15756
22
+ 46555
23
+ -15756
24
+ 55795
25
+ 37290
26
+ 96370
27
+ 99254
28
+ 96370
29
+ 88268
30
+ 86978
31
+ 98757
32
+ 37290
33
+ 99254
34
+ -52858
35
+ -84329
36
+ 86978
37
+ -84329
38
+ 98757
39
+ 28448
40
+ 86978
41
+ 55795
42
+ 96370
43
+ 28448
44
+ -71162
45
+ 88268
46
+ 14319
47
+ 98757
48
+ -15756
49
+ 98757
50
+ 98994
51
+ 96370
52
+ 86978
53
+ 86978
54
+ -15756
55
+ -15756
56
+ 98994
57
+ 86978
58
+ 86978
59
+ 86978
60
+ 98994
61
+ 37290
62
+ 98757
63
+ -71162
64
+ -15756
65
+ 46555
66
+ -15756
67
+ 46555
68
+ 98994
69
+ -15756
70
+ 37290
71
+ 98757
72
+ 46555
73
+ 37290
74
+ 99254
75
+ 98757
76
+ 98757
77
+ 55795
78
+ 14319
79
+ -71162
80
+ 46555
81
+ -71162
82
+ -52858
83
+ -15756
84
+ 86978
85
+ 98757
86
+ 46555
87
+ 98757
88
+ 99254
89
+ 37290
90
+ -71162
91
+ 99254
92
+ -15756
93
+ 28448
94
+ 96370
95
+ 88268
96
+ 96370
97
+ 86978
98
+ 88268
99
+ -15756
100
+ 99254
101
+ 99254
102
+ -15756
103
+ 96370
104
+ -15756
105
+ 98994
106
+ -15756
107
+ 37290
108
+ 14319
109
+ 88268
110
+ -84329
111
+ 55795
112
+ 86978
113
+ 46555
114
+ 28448
115
+ -84329
116
+ -84329
117
+ 37290
118
+ 98757
119
+ 86978
120
+ -15756
121
+ -15756
122
+ 37290
123
+ 86978
124
+ -71162
125
+ 98757
126
+ 86978
127
+ -84329
128
+ -71162
129
+ 46555
130
+ 37290
131
+ 88268
132
+ 28448
133
+ 98757
134
+ 86978
135
+ 46555
136
+ 37290
137
+ 55795
138
+ 99254
139
+ -52858
140
+ 46555
141
+ 28448
142
+ 96370
143
+ 86978
144
+ -15756
145
+ -15756
146
+ 37290
147
+ 28448
148
+ 98757
149
+ -84329
150
+ 37290
151
+ -15756
152
+ -15756
153
+ 88268
154
+ 86978
155
+ 88268
156
+ 14319
157
+ 96370
158
+ 96370
159
+ 98994
160
+ 37290
161
+ 88268
162
+ -52858
163
+ 88268
164
+ 86978
165
+ -15756
166
+ -71162
167
+ 88268
168
+ 96370
169
+ 37290
170
+ 46555
171
+ 98757
172
+ 14319
173
+ 86978
174
+ 88268
175
+ -15756
176
+ 98757
177
+ 88268
178
+ 46555
179
+ 98757
180
+ 55795
181
+ 55795
182
+ -52858
183
+ 96370
184
+ 86978
185
+ -71162
186
+ 55795
187
+ -15756
188
+ 37290
189
+ -15756
190
+ 55795
191
+ 88268
192
+ -15756
193
+ 88268
194
+ 86978
195
+ 14319
196
+ 98757
197
+ 46555
198
+ -71162
199
+ 38599
200
+ 86978
201
+ 98994
202
+ 99254
203
+ 98994
204
+ 98757
205
+ -84329
206
+ 98757
207
+ 46555
208
+ -84329
209
+ 86978
210
+ -52858
211
+ 98757
212
+ 88268
213
+ -52858
214
+ -71162
215
+ 98757
216
+ -15756
217
+ 98994
218
+ 86978
219
+ -52858
220
+ 88268
221
+ 37290
222
+ 99254
223
+ 86978
224
+ 88268
225
+ -15756
226
+ 98994
227
+ -15756
228
+ -15756
229
+ -15756
230
+ 37290
231
+ 98757
232
+ -15756
233
+ 28448
234
+ 14319
235
+ 98994
236
+ 46555
237
+ 99254
238
+ 86978
239
+ 14319
240
+ -52858
241
+ -84329
242
+ 37290
243
+ 98757
244
+ 96370
245
+ 55795
246
+ 55795
247
+ 86978
248
+ -71162
249
+ 99254
250
+ 46555
251
+ -84329
252
+ -71162
253
+ -15756
254
+ -15756
255
+ 88268
256
+ 37290
257
+ 99254
258
+ 86978
259
+ 37290
260
+ 99254
261
+ 88268
262
+ 37290
263
+ 86978
264
+ 96370
265
+ 86978
266
+ 96370
267
+ -15756
268
+ 86978
269
+ 55795
270
+ 98994
271
+ -52858
272
+ 98757
273
+ -15756
274
+ 28448
275
+ 37290
276
+ 86978
277
+ 98994
278
+ 37290
279
+ -84329
280
+ -71162
281
+ 98757
282
+ 37290
283
+ -15756
284
+ 37290
285
+ 55795
286
+ -15756
287
+ 46555
288
+ 86978
289
+ -84329
290
+ -84329
291
+ 37290
292
+ -84329
293
+ 46555
294
+ 37290
295
+ -15756
296
+ 28448
297
+ 14319
298
+ 99254
299
+ 86978
300
+ 37290
301
+ -84329
302
+ 37290
303
+ 37290
304
+ -52858
305
+ 98994
306
+ 37290
307
+ 28448
308
+ 46555
309
+ 98757
310
+ 96370
311
+ -84329
312
+ 37290
313
+ 96370
314
+ -71162
315
+ -52858
316
+ -71162
317
+ 86978
318
+ 37290
319
+ -71162
320
+ 99254
321
+ 86978
322
+ 99254
323
+ -15756
324
+ 46555
325
+ -71162
326
+ 86978
327
+ 98757
328
+ 86978
329
+ -15756
330
+ 96370
331
+ 28448
332
+ -15756
333
+ 88268
334
+ 98994
335
+ -15756
336
+ 37290
337
+ 86978
338
+ -52858
339
+ -71162
340
+ 14484
341
+ 88268
342
+ 88268
343
+ -15756
344
+ 98757
345
+ -71162
346
+ -84329
347
+ 88268
348
+ 88268
349
+ 37290
350
+ -15756
351
+ 98757
352
+ -71162
353
+ 28448
354
+ 86978
355
+ 14484
356
+ 86978
357
+ 88268
358
+ 98757
359
+ 37290
360
+ 28448
361
+ 86978
362
+ 98757
363
+ -71162
364
+ 28448
365
+ 98757
366
+ 86978
367
+ 98994
368
+ -15756
369
+ 86978
370
+ 28448
371
+ 86978
372
+ -15756
373
+ -52858
374
+ 37290
375
+ -15756
376
+ 37290
377
+ 37290
378
+ -15756
379
+ 86978
380
+ 46555
381
+ 96370
382
+ 37290
383
+ 86978
384
+ 96370
385
+ -84329
386
+ -15756
387
+ -52858
388
+ -84329
389
+ -15756
390
+ 46555
391
+ 96370
392
+ 28448
393
+ -15756
394
+ 46555
395
+ -71162
396
+ 86978
397
+ 98994
398
+ 37290
399
+ 46555
400
+ 46555
401
+ 88268
402
+ 37290
403
+ 86978
404
+ 14319
405
+ 37290
406
+ -15756
407
+ 96370
408
+ 88268
409
+ 96370
410
+ 86978
411
+ 86978
412
+ 98994
413
+ 46555
414
+ -15756
415
+ 98757
416
+ -52858
417
+ 98757
418
+ -15756
419
+ -15756
420
+ 37290
421
+ 46555
422
+ 28448
423
+ 28448
424
+ -84329
425
+ 88268
426
+ 14319
427
+ 46555
428
+ -71162
429
+ 98994
430
+ 96370
431
+ 88268
432
+ 14319
433
+ 98757
434
+ 28448
435
+ 86978
436
+ -15756
437
+ 98757
438
+ -71162
439
+ 37290
440
+ 88268
441
+ 28448
442
+ 37290
443
+ 98757
444
+ 88268
445
+ 37290
446
+ -52858
447
+ -15756
448
+ -15756
449
+ 28448
450
+ -71162
451
+ 28448
452
+ 96370
453
+ -15756
454
+ -15756
455
+ -15756
456
+ -15756
457
+ 37290
458
+ -71162
459
+ 55795
460
+ 98757
461
+ 46555
462
+ 37290
463
+ -71162
464
+ 37290
465
+ -15756
466
+ 99254
467
+ -15756
468
+ 96370
469
+ 98757
470
+ -15756
471
+ -71162
472
+ -15756
473
+ 86978
474
+ 88268
475
+ 46555
476
+ -15756
477
+ -15756
478
+ 96370
479
+ -15756
480
+ 96370
481
+ -15756
482
+ -15756
483
+ -71162
484
+ 98994
485
+ 46555
486
+ 96370
487
+ 86978
488
+ -15756
489
+ -15756
490
+ 37290
491
+ 46555
492
+ 46555
493
+ 86978
494
+ 14484
495
+ 37290
496
+ 86978
497
+ -15756
498
+ 96370
499
+ 55795
500
+ 55795
501
+ -15756
502
+ 96370
503
+ 98757
504
+ 86978
505
+ 96370
506
+ -52858
507
+ 46555
508
+ -15756
509
+ -15756
510
+ 86978
511
+ 37290
512
+ 96370
513
+ -84329
514
+ 86978
515
+ 98994
516
+ 86978
517
+ -84329
518
+ 55795
519
+ -15756
520
+ 46555
521
+ 46555
522
+ 37290
523
+ 98757
524
+ 99254
525
+ 86978
526
+ 46555
527
+ 46555
528
+ -84329
529
+ 96370
530
+ -52858
531
+ 86978
532
+ 88268
533
+ 86978
534
+ -84329
535
+ 98757
536
+ -15756
537
+ 96370
538
+ 46555
539
+ 98994
540
+ -52858
541
+ 98994
542
+ -15756
543
+ 28448
544
+ 37290
545
+ -15756
546
+ -15756
547
+ 46555
548
+ 14319
549
+ 88268
550
+ 46555
551
+ 46555
552
+ 99254
553
+ 86978
554
+ -15756
555
+ 86978
556
+ 28448
557
+ -84329
558
+ 98757
559
+ 86978
560
+ 98757
561
+ 98757
562
+ 37290
563
+ 99254
564
+ -15756
565
+ 46555
566
+ 46555
567
+ -52858
568
+ 86978
569
+ -15756
570
+ -15756
571
+ 96370
572
+ -71162
573
+ 99254
574
+ -15756
575
+ 96370
576
+ 96370
577
+ 28448
578
+ 46555
579
+ 98757
580
+ -52858
581
+ 37290
582
+ 14319
583
+ -15756
584
+ 28448
585
+ -71162
586
+ 86978
587
+ 86978
588
+ -15756
589
+ 98994
590
+ 88268
591
+ 88268
592
+ -15756
593
+ 14319
594
+ -15756
595
+ -15756
596
+ -15756
597
+ 88268
598
+ -71162
599
+ -15756
600
+ -52858
601
+ 88268
602
+ 55795
603
+ 37290
604
+ 96370
605
+ -52858
606
+ 46555
607
+ -52858
608
+ -15756
609
+ -84329
610
+ 28448
611
+ 14319
612
+ 86978
613
+ -15756
614
+ -15756
615
+ 37290
616
+ 37290
617
+ 28448
618
+ 37290
619
+ -52858
620
+ 46555
621
+ -52858
622
+ -15756
623
+ 98757
624
+ 86978
625
+ 37290
626
+ 86978
627
+ -15756
628
+ 37290
629
+ 37290
630
+ 46555
631
+ 14319
632
+ 98994
633
+ -15756
634
+ -15756
635
+ 37290
636
+ -15756
637
+ 86978
638
+ -84329
639
+ -15756
640
+ -71162
641
+ 96370
642
+ 98757
643
+ 98994
644
+ 88268
645
+ -15756
646
+ 46555
647
+ 98994
648
+ -15756
649
+ 88268
650
+ -71162
651
+ 86978
652
+ 98757
653
+ 86978
654
+ -15756
655
+ 37290
656
+ 98994
657
+ -15756
658
+ -71162
659
+ 98757
660
+ -15756
661
+ -15756
662
+ -15756
663
+ 37290
664
+ 98994
665
+ 37290
666
+ 99254
667
+ 55795
668
+ -71162
669
+ 96370
670
+ 37290
671
+ -71162
672
+ 98757
673
+ 86978
674
+ 55795
675
+ -52858
676
+ 88268
677
+ 96370
678
+ 55795
679
+ 46555
680
+ -52858
681
+ -15756
682
+ 88268
683
+ -52858
684
+ 46555
685
+ 46555
686
+ 98994
687
+ -71162
688
+ 88268
689
+ 98757
690
+ 88268
691
+ 98994
692
+ 14319
693
+ 99254
694
+ 46555
695
+ 86978
696
+ 99254
697
+ 98757
698
+ -52858
699
+ 99254
700
+ -15756
701
+ 98994
702
+ 46555
703
+ 98994
704
+ 99254
705
+ 86978
706
+ -15756
707
+ -52858
708
+ 86978
709
+ -15756
710
+ 28448
711
+ 37290
712
+ 55795
713
+ 86978
714
+ 98757
715
+ 88268
716
+ -71162
717
+ 86978
718
+ -71162
719
+ 37290
720
+ -52858
721
+ 86978
722
+ 86978
723
+ 55795
724
+ 55795
725
+ 28448
726
+ -15756
727
+ -84329
728
+ 37290
729
+ 99254
730
+ 46555
731
+ -84329
732
+ -15756
733
+ 37290
734
+ 96370
735
+ 46555
736
+ 88268
737
+ 86978
738
+ -71162
739
+ 28448
740
+ -71162
741
+ 96370
742
+ -71162
743
+ 28448
744
+ 46555
745
+ -15756
746
+ 37290
747
+ 88268
748
+ 86978
749
+ 46555
750
+ 88268
751
+ 46555
752
+ 46555
753
+ 96370
754
+ 98994
755
+ 46555
756
+ 46555
757
+ -15756
758
+ -15756
759
+ -71162
760
+ 88268
761
+ -71162
762
+ 37290
763
+ 86978
764
+ 37290
765
+ 96370
766
+ 99254
767
+ -15756
768
+ 96370
769
+ 88268
770
+ 37290
771
+ 37290
772
+ 99254
773
+ 99254
774
+ -15756
775
+ -15756
776
+ 14319
777
+ -15756
778
+ 86978
779
+ 37290
780
+ 86978
781
+ 37290
782
+ -15756
783
+ -15756
784
+ 86978
785
+ 86978
786
+ 99254
787
+ 37290
788
+ -52858
789
+ 46555
790
+ -15756
791
+ 38599
792
+ -15756
793
+ 88268
794
+ 38599
795
+ 99254
796
+ -52858
797
+ 37290
798
+ 37290
799
+ -84329
800
+ 88268
801
+ 86978
802
+ 46555
803
+ 14319
804
+ -15756
805
+ 98757
806
+ 37290
807
+ 86978
808
+ 96370
809
+ 28448
810
+ 14319
811
+ -84329
812
+ 37290
813
+ -15756
814
+ 37290
815
+ 98757
816
+ -52858
817
+ 37290
818
+ 98994
819
+ 86978
820
+ -15756
821
+ 37290
822
+ 14319
823
+ 46555
824
+ 37290
825
+ -15756
826
+ -15756
827
+ 37290
828
+ -15756
829
+ 46555
830
+ 37290
831
+ 98757
832
+ -15756
833
+ -71162
834
+ -15756
835
+ 98994
836
+ -15756
837
+ 99254
838
+ 37290
839
+ -52858
840
+ 98994
841
+ 98757
842
+ -15756
843
+ -71162
844
+ 88268
845
+ 98757
846
+ 88268
847
+ -71162
848
+ 86978
849
+ 37290
850
+ 46555
851
+ 46555
852
+ 37290
853
+ 46555
854
+ 96370
855
+ -71162
856
+ 46555
857
+ 46555
858
+ -15756
859
+ -52858
860
+ 86978
861
+ 86978
862
+ 96370
863
+ -15756
864
+ 98757
865
+ 98757
866
+ -52858
867
+ -52858
868
+ 99254
869
+ -15756
870
+ 86978
871
+ 96370
872
+ -15756
873
+ -15756
874
+ 14319
875
+ 28448
876
+ -71162
877
+ 86978
878
+ 88268
879
+ -71162
880
+ -84329
881
+ 96370
882
+ 37290
883
+ 86978
884
+ 14319
885
+ -15756
886
+ 86978
887
+ 99254
888
+ -15756
889
+ 38599
890
+ 86978
891
+ 37290
892
+ 88268
893
+ 55795
894
+ 98757
895
+ 28448
896
+ 46555
897
+ 96370
898
+ 46555
899
+ -15756
900
+ 37290
901
+ -15756
902
+ 98994
903
+ 37290
904
+ 28448
905
+ -15756
906
+ 86978
907
+ -15756
908
+ 37290
909
+ -15756
910
+ -71162
911
+ 96370
912
+ 86978
913
+ 86978
914
+ -15756
915
+ 37290
916
+ -15756
917
+ 46555
918
+ -84329
919
+ -71162
920
+ 88268
921
+ 46555
922
+ 99254
923
+ 88268
924
+ 86978
925
+ 88268
926
+ -15756
927
+ 55795
928
+ 14484
929
+ -84329
930
+ 86978
931
+ 46555
932
+ 28448
933
+ 96370
934
+ 46555
935
+ 37290
936
+ 88268
937
+ -84329
938
+ 37290
939
+ 37290
940
+ 37290
941
+ 86978
942
+ -15756
943
+ -15756
944
+ 46555
945
+ -71162
946
+ 55795
947
+ 86978
948
+ -84329
949
+ 55795
950
+ 46555
951
+ -15756
952
+ -15756
953
+ 98757
954
+ -15756
955
+ -15756
956
+ 86978
957
+ 98757
958
+ 98757
959
+ 37290
960
+ 46555
961
+ -15756
962
+ 86978
963
+ 98757
964
+ 37290
965
+ -15756
966
+ 28448
967
+ 14319
968
+ -15756
969
+ 28448
970
+ 96370
971
+ 88268
972
+ 88268
973
+ 98757
974
+ 37290
975
+ 86978
976
+ -71162
977
+ -15756
978
+ -15756
979
+ 98757
980
+ 96370
981
+ 37290
982
+ 98757
983
+ 55795
984
+ 96370
985
+ 37290
986
+ 98757
987
+ 46555
988
+ -71162
989
+ 37290
990
+ 98757
991
+ 86978
992
+ 46555
993
+ 86978
994
+ 98994
995
+ -15756
996
+ -71162
997
+ 14319
998
+ 88268
999
+ 96370
1000
+ -84329