@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,31 @@
1
+ 30
2
+ -601857381
3
+ 110162241
4
+ -299369557
5
+ 317404463
6
+ 110162241
7
+ -313909964
8
+ -299369557
9
+ -313909964
10
+ 317404463
11
+ -313909964
12
+ 317404463
13
+ -299369557
14
+ 110162241
15
+ 110162241
16
+ 317404463
17
+ 317404463
18
+ -313909964
19
+ -299369557
20
+ 110162241
21
+ 110162241
22
+ -299369557
23
+ 317404463
24
+ 110162241
25
+ 110162241
26
+ 317404463
27
+ 110162241
28
+ -313909964
29
+ 110162241
30
+ -313909964
31
+ -299369557
@@ -0,0 +1,61 @@
1
+ 60
2
+ 3817976
3
+ -1034157
4
+ -2639666
5
+ -4911653
6
+ 8667817
7
+ -2639666
8
+ -8506265
9
+ 9358949
10
+ -1034157
11
+ -2639666
12
+ 3777080
13
+ -4911653
14
+ -2639666
15
+ 8667817
16
+ 3667452
17
+ 9358949
18
+ -1034157
19
+ 8667817
20
+ 5045603
21
+ 3817976
22
+ 3667452
23
+ 9358949
24
+ 9358949
25
+ 3777080
26
+ -1034157
27
+ 9358949
28
+ 9358949
29
+ 8667817
30
+ 3777080
31
+ 8667817
32
+ -1034157
33
+ 3777080
34
+ 5273503
35
+ 9358949
36
+ -1034157
37
+ 8667817
38
+ -8506265
39
+ 3777080
40
+ 3817976
41
+ -2639666
42
+ -4911653
43
+ 8667817
44
+ 8667817
45
+ -8506265
46
+ -4911653
47
+ -4911653
48
+ -8506265
49
+ 8667817
50
+ 3667452
51
+ 9358949
52
+ 3667452
53
+ 3667452
54
+ -1034157
55
+ 3667452
56
+ -1034157
57
+ 3777080
58
+ -4911653
59
+ 3667452
60
+ 3667452
61
+ 3817976
@@ -0,0 +1,101 @@
1
+ 100
2
+ 136179
3
+ 305000
4
+ -350114
5
+ 766790
6
+ 467256
7
+ 846763
8
+ 525990
9
+ 741423
10
+ 295957
11
+ -376855
12
+ 866498
13
+ -460153
14
+ -132575
15
+ 650557
16
+ 441650
17
+ -585722
18
+ 866498
19
+ 836025
20
+ 467256
21
+ 956167
22
+ -484079
23
+ 793710
24
+ -188920
25
+ -251384
26
+ -322538
27
+ 956167
28
+ -795284
29
+ -376855
30
+ -322538
31
+ -755513
32
+ 305000
33
+ 467256
34
+ -585722
35
+ 295957
36
+ -594844
37
+ -405283
38
+ -585722
39
+ 588795
40
+ 441650
41
+ -376855
42
+ -647101
43
+ -322538
44
+ 201554
45
+ -710204
46
+ 554001
47
+ -143736
48
+ -795284
49
+ 441650
50
+ 756672
51
+ 201554
52
+ 295957
53
+ -803595
54
+ 866498
55
+ 588795
56
+ -251384
57
+ -372724
58
+ 793710
59
+ -372724
60
+ -251384
61
+ 201554
62
+ 261046
63
+ 660091
64
+ -795284
65
+ -803595
66
+ 741423
67
+ 725571
68
+ 261046
69
+ -806082
70
+ -806082
71
+ -594844
72
+ 756672
73
+ 852878
74
+ -166541
75
+ 956167
76
+ 364973
77
+ -975369
78
+ 305000
79
+ 588795
80
+ 432167
81
+ -166541
82
+ -647101
83
+ 836025
84
+ -304451
85
+ -143736
86
+ 995493
87
+ 756672
88
+ -806082
89
+ 846763
90
+ -153654
91
+ 136179
92
+ 554001
93
+ 525990
94
+ 525990
95
+ 846763
96
+ 995493
97
+ -166541
98
+ -372724
99
+ -405283
100
+ 840678
101
+ -132575
@@ -0,0 +1,497 @@
1
+ 496
2
+ -42642938
3
+ 39669592
4
+ 66981438
5
+ 80749504
6
+ -42642938
7
+ -16024329
8
+ -58315984
9
+ 39616789
10
+ 39669592
11
+ 39669592
12
+ 39669592
13
+ 95076029
14
+ -16024329
15
+ 39616789
16
+ 39616789
17
+ -38880576
18
+ 39616789
19
+ -16668077
20
+ 89770745
21
+ 39669592
22
+ -42642938
23
+ 39616789
24
+ -38880576
25
+ -59618138
26
+ -16668077
27
+ -38880576
28
+ 39616789
29
+ 39616789
30
+ 39616789
31
+ 55323149
32
+ 12874486
33
+ 80749504
34
+ 66981438
35
+ -58315984
36
+ 95076029
37
+ -78232403
38
+ 95076029
39
+ -16668077
40
+ -58315984
41
+ 89770745
42
+ 80749504
43
+ -86193768
44
+ 80749504
45
+ 39669592
46
+ -42642938
47
+ -42642938
48
+ 55323149
49
+ 89770745
50
+ -42642938
51
+ 95076029
52
+ -42642938
53
+ 80749504
54
+ -58315984
55
+ 80749504
56
+ -16024329
57
+ 39669592
58
+ -11851033
59
+ -42642938
60
+ -16024329
61
+ 95076029
62
+ -38880576
63
+ 89770745
64
+ 89770745
65
+ 89770745
66
+ -78232403
67
+ -59618138
68
+ -38880576
69
+ 95076029
70
+ -11851033
71
+ 80749504
72
+ -16668077
73
+ -38880576
74
+ -11851033
75
+ -38880576
76
+ -16668077
77
+ 39616789
78
+ 12874486
79
+ 39669592
80
+ -42642938
81
+ -58315984
82
+ -59618138
83
+ 66981438
84
+ 80749504
85
+ -58315984
86
+ -16024329
87
+ 89770745
88
+ -42642938
89
+ 89770745
90
+ -11851033
91
+ 95076029
92
+ 12874486
93
+ 80749504
94
+ 95076029
95
+ -16024329
96
+ 12874486
97
+ 80749504
98
+ -59618138
99
+ 39616789
100
+ 66981438
101
+ -13556285
102
+ 55323149
103
+ -42642938
104
+ 80749504
105
+ 88846070
106
+ -58315984
107
+ 95076029
108
+ -58315984
109
+ -58315984
110
+ 39669592
111
+ 12874486
112
+ -16668077
113
+ -16024329
114
+ 89770745
115
+ 66981438
116
+ -16024329
117
+ 80749504
118
+ 41605509
119
+ 80749504
120
+ 89770745
121
+ -16024329
122
+ 39616789
123
+ 55323149
124
+ -42642938
125
+ 39669592
126
+ 39669592
127
+ -11851033
128
+ 39669592
129
+ 55323149
130
+ 66981438
131
+ -42642938
132
+ 12874486
133
+ 55323149
134
+ 66981438
135
+ -59618138
136
+ 89770745
137
+ -38880576
138
+ 66981438
139
+ -11851033
140
+ -42642938
141
+ 80749504
142
+ -42642938
143
+ -59618138
144
+ 66981438
145
+ 80749504
146
+ -38880576
147
+ -11851033
148
+ -16668077
149
+ 39669592
150
+ -16024329
151
+ 39669592
152
+ 39616789
153
+ -58315984
154
+ -58315984
155
+ -58315984
156
+ -58315984
157
+ -58315984
158
+ 80749504
159
+ -11851033
160
+ 89770745
161
+ -58315984
162
+ 88846070
163
+ -38880576
164
+ -11851033
165
+ -16024329
166
+ 80749504
167
+ 95076029
168
+ 95076029
169
+ -42642938
170
+ -16024329
171
+ -16024329
172
+ 95076029
173
+ 95076029
174
+ 12874486
175
+ 66981438
176
+ -59618138
177
+ 66981438
178
+ -16024329
179
+ 89770745
180
+ 39669592
181
+ 39669592
182
+ 39616789
183
+ 39616789
184
+ 55323149
185
+ 39669592
186
+ -16024329
187
+ 39616789
188
+ 89770745
189
+ 39616789
190
+ 80749504
191
+ -42642938
192
+ -16024329
193
+ -16024329
194
+ 39616789
195
+ 89770745
196
+ 12874486
197
+ -42642938
198
+ -38880576
199
+ 66981438
200
+ -38880576
201
+ 39669592
202
+ 89770745
203
+ -78232403
204
+ 39669592
205
+ 80749504
206
+ 12874486
207
+ 95076029
208
+ -58315984
209
+ 95076029
210
+ -58315984
211
+ -86193768
212
+ -16024329
213
+ -38880576
214
+ 39616789
215
+ 80749504
216
+ -38880576
217
+ 39669592
218
+ -58315984
219
+ -78232403
220
+ 55323149
221
+ 80749504
222
+ -16024329
223
+ 39616789
224
+ 88846070
225
+ -42642938
226
+ -16668077
227
+ 80749504
228
+ 89770745
229
+ 80749504
230
+ 12874486
231
+ 55323149
232
+ 39669592
233
+ -38880576
234
+ -42642938
235
+ 80749504
236
+ -16668077
237
+ 14972279
238
+ -11851033
239
+ -78232403
240
+ -11851033
241
+ 39669592
242
+ 39669592
243
+ -42642938
244
+ 39616789
245
+ 89770745
246
+ 12874486
247
+ 66981438
248
+ 39616789
249
+ 39616789
250
+ -16024329
251
+ -16024329
252
+ 39669592
253
+ 89770745
254
+ 66981438
255
+ -16024329
256
+ 89770745
257
+ 89770745
258
+ -59618138
259
+ 66981438
260
+ 55323149
261
+ 95076029
262
+ -16024329
263
+ 66981438
264
+ -58315984
265
+ 12874486
266
+ 95076029
267
+ 39616789
268
+ -11851033
269
+ 39669592
270
+ 89770745
271
+ -58315984
272
+ 95076029
273
+ 55323149
274
+ 39616789
275
+ 39616789
276
+ -11851033
277
+ 89770745
278
+ 95076029
279
+ 55323149
280
+ 39669592
281
+ -86193768
282
+ 12874486
283
+ 95076029
284
+ -16024329
285
+ 80749504
286
+ 66981438
287
+ -58315984
288
+ 66981438
289
+ 12874486
290
+ 80749504
291
+ 55323149
292
+ -16024329
293
+ 39616789
294
+ -16668077
295
+ 66981438
296
+ 89770745
297
+ -16024329
298
+ 39669592
299
+ 89770745
300
+ 89770745
301
+ 55323149
302
+ -16024329
303
+ 12874486
304
+ 95076029
305
+ -11851033
306
+ -16024329
307
+ -16024329
308
+ -58315984
309
+ -38880576
310
+ 39616789
311
+ 39669592
312
+ -13556285
313
+ 39616789
314
+ -42642938
315
+ 80749504
316
+ 80749504
317
+ 39669592
318
+ -16024329
319
+ 14972279
320
+ -16668077
321
+ 80749504
322
+ 12874486
323
+ 80749504
324
+ -58315984
325
+ 55323149
326
+ 12874486
327
+ 66981438
328
+ 39669592
329
+ 12874486
330
+ -16668077
331
+ 89770745
332
+ 95076029
333
+ -59618138
334
+ -16668077
335
+ 89770745
336
+ 89770745
337
+ 39669592
338
+ 89770745
339
+ 41605509
340
+ -59618138
341
+ 12874486
342
+ 80749504
343
+ 39669592
344
+ 39669592
345
+ 89770745
346
+ 80749504
347
+ -58315984
348
+ 39669592
349
+ 39669592
350
+ 66981438
351
+ -16024329
352
+ 41605509
353
+ 80749504
354
+ -16668077
355
+ 12874486
356
+ 39616789
357
+ 12874486
358
+ 80749504
359
+ -16668077
360
+ -58315984
361
+ 39669592
362
+ 39669592
363
+ 12874486
364
+ 88846070
365
+ 95076029
366
+ 89770745
367
+ -59618138
368
+ 39669592
369
+ -11851033
370
+ -42642938
371
+ -58315984
372
+ 12874486
373
+ 80749504
374
+ 66981438
375
+ 39616789
376
+ -38880576
377
+ 66981438
378
+ 80749504
379
+ -42642938
380
+ 89770745
381
+ -58315984
382
+ 95076029
383
+ 89770745
384
+ 39616789
385
+ 39669592
386
+ 80749504
387
+ 22039045
388
+ -78232403
389
+ 95076029
390
+ -16024329
391
+ -38880576
392
+ 66981438
393
+ -58315984
394
+ -16024329
395
+ 39616789
396
+ 80749504
397
+ -42642938
398
+ -42642938
399
+ -86193768
400
+ -16024329
401
+ 55323149
402
+ -11851033
403
+ -78232403
404
+ 95076029
405
+ 89770745
406
+ -16024329
407
+ -86193768
408
+ 39616789
409
+ 66439916
410
+ 14972279
411
+ -58315984
412
+ -58315984
413
+ -78232403
414
+ 66981438
415
+ 89770745
416
+ 39616789
417
+ 12874486
418
+ 39669592
419
+ 89770745
420
+ 80749504
421
+ 39616789
422
+ 66981438
423
+ 39669592
424
+ -16024329
425
+ -16024329
426
+ -38880576
427
+ 80749504
428
+ 12874486
429
+ 55323149
430
+ -16024329
431
+ 66981438
432
+ -58315984
433
+ -42642938
434
+ -11851033
435
+ -16024329
436
+ 66981438
437
+ -11851033
438
+ 89770745
439
+ 39616789
440
+ 39616789
441
+ 12874486
442
+ -16024329
443
+ -16668077
444
+ 55323149
445
+ -78232403
446
+ 66981438
447
+ 95076029
448
+ 39669592
449
+ 66981438
450
+ 55323149
451
+ -86193768
452
+ 55323149
453
+ 39669592
454
+ 39616789
455
+ 80749504
456
+ 39669592
457
+ 80749504
458
+ 80749504
459
+ 12874486
460
+ -42642938
461
+ 95076029
462
+ 80749504
463
+ 39669592
464
+ 12874486
465
+ -16668077
466
+ 55323149
467
+ -38880576
468
+ 80749504
469
+ -38880576
470
+ 88846070
471
+ 39669592
472
+ -13556285
473
+ -13556285
474
+ -58315984
475
+ 80749504
476
+ -11851033
477
+ -16024329
478
+ 80749504
479
+ 88846070
480
+ 80749504
481
+ -78232403
482
+ -58315984
483
+ -16024329
484
+ -58315984
485
+ 12874486
486
+ 12874486
487
+ 12874486
488
+ -16024329
489
+ 66981438
490
+ 12874486
491
+ -16024329
492
+ 12874486
493
+ -86193768
494
+ -58315984
495
+ 66981438
496
+ 66981438
497
+ 39669592