finishm 0.0.1

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 (554) hide show
  1. checksums.yaml +7 -0
  2. data/.document +5 -0
  3. data/.gitmodules +3 -0
  4. data/.rspec +1 -0
  5. data/Gemfile +31 -0
  6. data/LICENSE.txt +20 -0
  7. data/README.md +59 -0
  8. data/Rakefile +51 -0
  9. data/VERSION +1 -0
  10. data/bin/assembly_visualiser +106 -0
  11. data/bin/check_primer_combinations.rb +73 -0
  12. data/bin/contig_joiner.rb +244 -0
  13. data/bin/contigs_against_assembly.rb +153 -0
  14. data/bin/finishm +143 -0
  15. data/bin/finishm_assembler +55 -0
  16. data/bin/finishm_gap_closer.rb +241 -0
  17. data/bin/kmer_abundance_file_tool.rb +49 -0
  18. data/bin/kmer_pattern_to_assembly.rb +377 -0
  19. data/bin/kmer_profile_finder.rb +92 -0
  20. data/bin/kmers_count_parse.d +52 -0
  21. data/bin/kmers_count_tabulate.d +123 -0
  22. data/bin/kmers_count_tabulate.rb +84 -0
  23. data/bin/pcr_result_parser.rb +108 -0
  24. data/bin/primer_finder.rb +119 -0
  25. data/bin/read_selection_by_kmer.d +174 -0
  26. data/bin/scaffold_by_pattern.rb +119 -0
  27. data/bin/scaffold_connection_possibilities_to_knowns.rb +193 -0
  28. data/bin/scaffold_end_coverages.rb +69 -0
  29. data/bin/trail_validator.rb +84 -0
  30. data/ext/mkrf_conf.rb +56 -0
  31. data/ext/src/Makefile +140 -0
  32. data/ext/src/src/allocArray.c +305 -0
  33. data/ext/src/src/allocArray.h +86 -0
  34. data/ext/src/src/autoOpen.c +107 -0
  35. data/ext/src/src/autoOpen.h +18 -0
  36. data/ext/src/src/binarySequences.c +813 -0
  37. data/ext/src/src/binarySequences.h +125 -0
  38. data/ext/src/src/concatenatedGraph.c +233 -0
  39. data/ext/src/src/concatenatedGraph.h +30 -0
  40. data/ext/src/src/concatenatedPreGraph.c +262 -0
  41. data/ext/src/src/concatenatedPreGraph.h +29 -0
  42. data/ext/src/src/correctedGraph.c +2643 -0
  43. data/ext/src/src/correctedGraph.h +32 -0
  44. data/ext/src/src/dfib.c +509 -0
  45. data/ext/src/src/dfib.h +69 -0
  46. data/ext/src/src/dfibHeap.c +89 -0
  47. data/ext/src/src/dfibHeap.h +39 -0
  48. data/ext/src/src/dfibpriv.h +105 -0
  49. data/ext/src/src/fib.c +628 -0
  50. data/ext/src/src/fib.h +78 -0
  51. data/ext/src/src/fibHeap.c +79 -0
  52. data/ext/src/src/fibHeap.h +41 -0
  53. data/ext/src/src/fibpriv.h +110 -0
  54. data/ext/src/src/globals.h +154 -0
  55. data/ext/src/src/graph.c +3932 -0
  56. data/ext/src/src/graph.h +233 -0
  57. data/ext/src/src/graphReConstruction.c +1472 -0
  58. data/ext/src/src/graphReConstruction.h +30 -0
  59. data/ext/src/src/graphStats.c +2167 -0
  60. data/ext/src/src/graphStats.h +72 -0
  61. data/ext/src/src/graphStructures.h +52 -0
  62. data/ext/src/src/kmer.c +652 -0
  63. data/ext/src/src/kmer.h +73 -0
  64. data/ext/src/src/kmerOccurenceTable.c +236 -0
  65. data/ext/src/src/kmerOccurenceTable.h +44 -0
  66. data/ext/src/src/kseq.h +223 -0
  67. data/ext/src/src/locallyCorrectedGraph.c +557 -0
  68. data/ext/src/src/locallyCorrectedGraph.h +40 -0
  69. data/ext/src/src/passageMarker.c +677 -0
  70. data/ext/src/src/passageMarker.h +137 -0
  71. data/ext/src/src/preGraph.c +1717 -0
  72. data/ext/src/src/preGraph.h +106 -0
  73. data/ext/src/src/preGraphConstruction.c +990 -0
  74. data/ext/src/src/preGraphConstruction.h +26 -0
  75. data/ext/src/src/probe_node_finder.c +84 -0
  76. data/ext/src/src/probe_node_finder.h +6 -0
  77. data/ext/src/src/readCoherentGraph.c +557 -0
  78. data/ext/src/src/readCoherentGraph.h +30 -0
  79. data/ext/src/src/readSet.c +1734 -0
  80. data/ext/src/src/readSet.h +67 -0
  81. data/ext/src/src/readToNode.c +218 -0
  82. data/ext/src/src/readToNode.h +35 -0
  83. data/ext/src/src/recycleBin.c +199 -0
  84. data/ext/src/src/recycleBin.h +58 -0
  85. data/ext/src/src/roadMap.c +342 -0
  86. data/ext/src/src/roadMap.h +65 -0
  87. data/ext/src/src/run.c +318 -0
  88. data/ext/src/src/run.h +52 -0
  89. data/ext/src/src/run2.c +744 -0
  90. data/ext/src/src/runReadToNode.c +29 -0
  91. data/ext/src/src/scaffold.c +1876 -0
  92. data/ext/src/src/scaffold.h +64 -0
  93. data/ext/src/src/shortReadPairs.c +1243 -0
  94. data/ext/src/src/shortReadPairs.h +32 -0
  95. data/ext/src/src/splay.c +259 -0
  96. data/ext/src/src/splay.h +43 -0
  97. data/ext/src/src/splayTable.c +1315 -0
  98. data/ext/src/src/splayTable.h +31 -0
  99. data/ext/src/src/tightString.c +362 -0
  100. data/ext/src/src/tightString.h +82 -0
  101. data/ext/src/src/utility.c +199 -0
  102. data/ext/src/src/utility.h +98 -0
  103. data/ext/src/third-party/zlib-1.2.3/ChangeLog +855 -0
  104. data/ext/src/third-party/zlib-1.2.3/FAQ +339 -0
  105. data/ext/src/third-party/zlib-1.2.3/INDEX +51 -0
  106. data/ext/src/third-party/zlib-1.2.3/Makefile +154 -0
  107. data/ext/src/third-party/zlib-1.2.3/Makefile.in +154 -0
  108. data/ext/src/third-party/zlib-1.2.3/README +125 -0
  109. data/ext/src/third-party/zlib-1.2.3/adler32.c +149 -0
  110. data/ext/src/third-party/zlib-1.2.3/adler32.o +0 -0
  111. data/ext/src/third-party/zlib-1.2.3/algorithm.txt +209 -0
  112. data/ext/src/third-party/zlib-1.2.3/amiga/Makefile.pup +66 -0
  113. data/ext/src/third-party/zlib-1.2.3/amiga/Makefile.sas +65 -0
  114. data/ext/src/third-party/zlib-1.2.3/as400/bndsrc +132 -0
  115. data/ext/src/third-party/zlib-1.2.3/as400/compile.clp +123 -0
  116. data/ext/src/third-party/zlib-1.2.3/as400/readme.txt +111 -0
  117. data/ext/src/third-party/zlib-1.2.3/as400/zlib.inc +331 -0
  118. data/ext/src/third-party/zlib-1.2.3/compress.c +79 -0
  119. data/ext/src/third-party/zlib-1.2.3/compress.o +0 -0
  120. data/ext/src/third-party/zlib-1.2.3/configure +459 -0
  121. data/ext/src/third-party/zlib-1.2.3/contrib/README.contrib +71 -0
  122. data/ext/src/third-party/zlib-1.2.3/contrib/ada/buffer_demo.adb +106 -0
  123. data/ext/src/third-party/zlib-1.2.3/contrib/ada/mtest.adb +156 -0
  124. data/ext/src/third-party/zlib-1.2.3/contrib/ada/read.adb +156 -0
  125. data/ext/src/third-party/zlib-1.2.3/contrib/ada/readme.txt +65 -0
  126. data/ext/src/third-party/zlib-1.2.3/contrib/ada/test.adb +463 -0
  127. data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-streams.adb +225 -0
  128. data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-streams.ads +114 -0
  129. data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-thin.adb +141 -0
  130. data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-thin.ads +450 -0
  131. data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.adb +701 -0
  132. data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.ads +328 -0
  133. data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.gpr +20 -0
  134. data/ext/src/third-party/zlib-1.2.3/contrib/asm586/README.586 +43 -0
  135. data/ext/src/third-party/zlib-1.2.3/contrib/asm586/match.S +364 -0
  136. data/ext/src/third-party/zlib-1.2.3/contrib/asm686/README.686 +34 -0
  137. data/ext/src/third-party/zlib-1.2.3/contrib/asm686/match.S +329 -0
  138. data/ext/src/third-party/zlib-1.2.3/contrib/blast/Makefile +8 -0
  139. data/ext/src/third-party/zlib-1.2.3/contrib/blast/README +4 -0
  140. data/ext/src/third-party/zlib-1.2.3/contrib/blast/blast.c +444 -0
  141. data/ext/src/third-party/zlib-1.2.3/contrib/blast/blast.h +71 -0
  142. data/ext/src/third-party/zlib-1.2.3/contrib/blast/test.pk +0 -0
  143. data/ext/src/third-party/zlib-1.2.3/contrib/blast/test.txt +1 -0
  144. data/ext/src/third-party/zlib-1.2.3/contrib/delphi/ZLib.pas +557 -0
  145. data/ext/src/third-party/zlib-1.2.3/contrib/delphi/ZLibConst.pas +11 -0
  146. data/ext/src/third-party/zlib-1.2.3/contrib/delphi/readme.txt +76 -0
  147. data/ext/src/third-party/zlib-1.2.3/contrib/delphi/zlibd32.mak +93 -0
  148. data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.build +33 -0
  149. data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.chm +0 -0
  150. data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.sln +21 -0
  151. data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/AssemblyInfo.cs +58 -0
  152. data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/ChecksumImpl.cs +202 -0
  153. data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/CircularBuffer.cs +83 -0
  154. data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/CodecBase.cs +198 -0
  155. data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/Deflater.cs +106 -0
  156. data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/DotZLib.cs +288 -0
  157. data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/DotZLib.csproj +141 -0
  158. data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/GZipStream.cs +301 -0
  159. data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/Inflater.cs +105 -0
  160. data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/UnitTests.cs +274 -0
  161. data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/LICENSE_1_0.txt +23 -0
  162. data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/readme.txt +58 -0
  163. data/ext/src/third-party/zlib-1.2.3/contrib/infback9/README +1 -0
  164. data/ext/src/third-party/zlib-1.2.3/contrib/infback9/infback9.c +608 -0
  165. data/ext/src/third-party/zlib-1.2.3/contrib/infback9/infback9.h +37 -0
  166. data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inffix9.h +107 -0
  167. data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inflate9.h +47 -0
  168. data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inftree9.c +323 -0
  169. data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inftree9.h +55 -0
  170. data/ext/src/third-party/zlib-1.2.3/contrib/inflate86/inffas86.c +1157 -0
  171. data/ext/src/third-party/zlib-1.2.3/contrib/inflate86/inffast.S +1368 -0
  172. data/ext/src/third-party/zlib-1.2.3/contrib/iostream/test.cpp +24 -0
  173. data/ext/src/third-party/zlib-1.2.3/contrib/iostream/zfstream.cpp +329 -0
  174. data/ext/src/third-party/zlib-1.2.3/contrib/iostream/zfstream.h +128 -0
  175. data/ext/src/third-party/zlib-1.2.3/contrib/iostream2/zstream.h +307 -0
  176. data/ext/src/third-party/zlib-1.2.3/contrib/iostream2/zstream_test.cpp +25 -0
  177. data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/README +35 -0
  178. data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/TODO +17 -0
  179. data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/test.cc +50 -0
  180. data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/zfstream.cc +479 -0
  181. data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/zfstream.h +466 -0
  182. data/ext/src/third-party/zlib-1.2.3/contrib/masm686/match.asm +413 -0
  183. data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/bld_ml64.bat +2 -0
  184. data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/gvmat64.asm +513 -0
  185. data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/gvmat64.obj +0 -0
  186. data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffas8664.c +186 -0
  187. data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffasx64.asm +392 -0
  188. data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffasx64.obj +0 -0
  189. data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/readme.txt +28 -0
  190. data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/bld_ml32.bat +2 -0
  191. data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32.asm +972 -0
  192. data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32.obj +0 -0
  193. data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32c.c +62 -0
  194. data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/inffas32.asm +1083 -0
  195. data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/inffas32.obj +0 -0
  196. data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/mkasm.bat +3 -0
  197. data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/readme.txt +21 -0
  198. data/ext/src/third-party/zlib-1.2.3/contrib/minizip/ChangeLogUnzip +67 -0
  199. data/ext/src/third-party/zlib-1.2.3/contrib/minizip/Makefile +25 -0
  200. data/ext/src/third-party/zlib-1.2.3/contrib/minizip/crypt.h +132 -0
  201. data/ext/src/third-party/zlib-1.2.3/contrib/minizip/ioapi.c +177 -0
  202. data/ext/src/third-party/zlib-1.2.3/contrib/minizip/ioapi.h +75 -0
  203. data/ext/src/third-party/zlib-1.2.3/contrib/minizip/iowin32.c +270 -0
  204. data/ext/src/third-party/zlib-1.2.3/contrib/minizip/iowin32.h +21 -0
  205. data/ext/src/third-party/zlib-1.2.3/contrib/minizip/miniunz.c +585 -0
  206. data/ext/src/third-party/zlib-1.2.3/contrib/minizip/minizip.c +420 -0
  207. data/ext/src/third-party/zlib-1.2.3/contrib/minizip/mztools.c +281 -0
  208. data/ext/src/third-party/zlib-1.2.3/contrib/minizip/mztools.h +31 -0
  209. data/ext/src/third-party/zlib-1.2.3/contrib/minizip/unzip.c +1598 -0
  210. data/ext/src/third-party/zlib-1.2.3/contrib/minizip/unzip.h +354 -0
  211. data/ext/src/third-party/zlib-1.2.3/contrib/minizip/zip.c +1219 -0
  212. data/ext/src/third-party/zlib-1.2.3/contrib/minizip/zip.h +235 -0
  213. data/ext/src/third-party/zlib-1.2.3/contrib/pascal/example.pas +599 -0
  214. data/ext/src/third-party/zlib-1.2.3/contrib/pascal/readme.txt +76 -0
  215. data/ext/src/third-party/zlib-1.2.3/contrib/pascal/zlibd32.mak +93 -0
  216. data/ext/src/third-party/zlib-1.2.3/contrib/pascal/zlibpas.pas +236 -0
  217. data/ext/src/third-party/zlib-1.2.3/contrib/puff/Makefile +8 -0
  218. data/ext/src/third-party/zlib-1.2.3/contrib/puff/README +63 -0
  219. data/ext/src/third-party/zlib-1.2.3/contrib/puff/puff.c +837 -0
  220. data/ext/src/third-party/zlib-1.2.3/contrib/puff/puff.h +31 -0
  221. data/ext/src/third-party/zlib-1.2.3/contrib/puff/zeros.raw +0 -0
  222. data/ext/src/third-party/zlib-1.2.3/contrib/testzlib/testzlib.c +275 -0
  223. data/ext/src/third-party/zlib-1.2.3/contrib/testzlib/testzlib.txt +10 -0
  224. data/ext/src/third-party/zlib-1.2.3/contrib/untgz/Makefile +14 -0
  225. data/ext/src/third-party/zlib-1.2.3/contrib/untgz/Makefile.msc +17 -0
  226. data/ext/src/third-party/zlib-1.2.3/contrib/untgz/untgz.c +674 -0
  227. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/readme.txt +73 -0
  228. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/miniunz.vcproj +126 -0
  229. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/minizip.vcproj +126 -0
  230. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/testzlib.vcproj +126 -0
  231. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlib.rc +32 -0
  232. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibstat.vcproj +246 -0
  233. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.def +92 -0
  234. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.sln +78 -0
  235. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.vcproj +445 -0
  236. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/miniunz.vcproj +566 -0
  237. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/minizip.vcproj +563 -0
  238. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/testzlib.vcproj +948 -0
  239. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/testzlibdll.vcproj +567 -0
  240. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlib.rc +32 -0
  241. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibstat.vcproj +870 -0
  242. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.def +92 -0
  243. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.sln +144 -0
  244. data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.vcproj +1219 -0
  245. data/ext/src/third-party/zlib-1.2.3/crc32.c +423 -0
  246. data/ext/src/third-party/zlib-1.2.3/crc32.h +441 -0
  247. data/ext/src/third-party/zlib-1.2.3/crc32.o +0 -0
  248. data/ext/src/third-party/zlib-1.2.3/deflate.c +1736 -0
  249. data/ext/src/third-party/zlib-1.2.3/deflate.h +331 -0
  250. data/ext/src/third-party/zlib-1.2.3/deflate.o +0 -0
  251. data/ext/src/third-party/zlib-1.2.3/example +0 -0
  252. data/ext/src/third-party/zlib-1.2.3/example.c +565 -0
  253. data/ext/src/third-party/zlib-1.2.3/examples/README.examples +42 -0
  254. data/ext/src/third-party/zlib-1.2.3/examples/fitblk.c +233 -0
  255. data/ext/src/third-party/zlib-1.2.3/examples/gun.c +693 -0
  256. data/ext/src/third-party/zlib-1.2.3/examples/gzappend.c +500 -0
  257. data/ext/src/third-party/zlib-1.2.3/examples/gzjoin.c +448 -0
  258. data/ext/src/third-party/zlib-1.2.3/examples/gzlog.c +413 -0
  259. data/ext/src/third-party/zlib-1.2.3/examples/gzlog.h +58 -0
  260. data/ext/src/third-party/zlib-1.2.3/examples/zlib_how.html +523 -0
  261. data/ext/src/third-party/zlib-1.2.3/examples/zpipe.c +191 -0
  262. data/ext/src/third-party/zlib-1.2.3/examples/zran.c +404 -0
  263. data/ext/src/third-party/zlib-1.2.3/gzio.c +1026 -0
  264. data/ext/src/third-party/zlib-1.2.3/gzio.o +0 -0
  265. data/ext/src/third-party/zlib-1.2.3/infback.c +623 -0
  266. data/ext/src/third-party/zlib-1.2.3/infback.o +0 -0
  267. data/ext/src/third-party/zlib-1.2.3/inffast.c +318 -0
  268. data/ext/src/third-party/zlib-1.2.3/inffast.h +11 -0
  269. data/ext/src/third-party/zlib-1.2.3/inffast.o +0 -0
  270. data/ext/src/third-party/zlib-1.2.3/inffixed.h +94 -0
  271. data/ext/src/third-party/zlib-1.2.3/inflate.c +1368 -0
  272. data/ext/src/third-party/zlib-1.2.3/inflate.h +115 -0
  273. data/ext/src/third-party/zlib-1.2.3/inflate.o +0 -0
  274. data/ext/src/third-party/zlib-1.2.3/inftrees.c +329 -0
  275. data/ext/src/third-party/zlib-1.2.3/inftrees.h +55 -0
  276. data/ext/src/third-party/zlib-1.2.3/inftrees.o +0 -0
  277. data/ext/src/third-party/zlib-1.2.3/libz.a +0 -0
  278. data/ext/src/third-party/zlib-1.2.3/make_vms.com +461 -0
  279. data/ext/src/third-party/zlib-1.2.3/minigzip +0 -0
  280. data/ext/src/third-party/zlib-1.2.3/minigzip.c +322 -0
  281. data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.bor +109 -0
  282. data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.dj2 +104 -0
  283. data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.emx +69 -0
  284. data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.msc +106 -0
  285. data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.tc +94 -0
  286. data/ext/src/third-party/zlib-1.2.3/old/Makefile.riscos +151 -0
  287. data/ext/src/third-party/zlib-1.2.3/old/README +3 -0
  288. data/ext/src/third-party/zlib-1.2.3/old/descrip.mms +48 -0
  289. data/ext/src/third-party/zlib-1.2.3/old/os2/Makefile.os2 +136 -0
  290. data/ext/src/third-party/zlib-1.2.3/old/os2/zlib.def +51 -0
  291. data/ext/src/third-party/zlib-1.2.3/old/visual-basic.txt +160 -0
  292. data/ext/src/third-party/zlib-1.2.3/old/zlib.html +971 -0
  293. data/ext/src/third-party/zlib-1.2.3/projects/README.projects +41 -0
  294. data/ext/src/third-party/zlib-1.2.3/projects/visualc6/README.txt +73 -0
  295. data/ext/src/third-party/zlib-1.2.3/projects/visualc6/example.dsp +278 -0
  296. data/ext/src/third-party/zlib-1.2.3/projects/visualc6/minigzip.dsp +278 -0
  297. data/ext/src/third-party/zlib-1.2.3/projects/visualc6/zlib.dsp +609 -0
  298. data/ext/src/third-party/zlib-1.2.3/projects/visualc6/zlib.dsw +59 -0
  299. data/ext/src/third-party/zlib-1.2.3/qnx/package.qpg +141 -0
  300. data/ext/src/third-party/zlib-1.2.3/trees.c +1219 -0
  301. data/ext/src/third-party/zlib-1.2.3/trees.h +128 -0
  302. data/ext/src/third-party/zlib-1.2.3/trees.o +0 -0
  303. data/ext/src/third-party/zlib-1.2.3/uncompr.c +61 -0
  304. data/ext/src/third-party/zlib-1.2.3/uncompr.o +0 -0
  305. data/ext/src/third-party/zlib-1.2.3/win32/DLL_FAQ.txt +397 -0
  306. data/ext/src/third-party/zlib-1.2.3/win32/Makefile.bor +107 -0
  307. data/ext/src/third-party/zlib-1.2.3/win32/Makefile.emx +69 -0
  308. data/ext/src/third-party/zlib-1.2.3/win32/Makefile.gcc +141 -0
  309. data/ext/src/third-party/zlib-1.2.3/win32/Makefile.msc +126 -0
  310. data/ext/src/third-party/zlib-1.2.3/win32/VisualC.txt +3 -0
  311. data/ext/src/third-party/zlib-1.2.3/win32/zlib.def +60 -0
  312. data/ext/src/third-party/zlib-1.2.3/win32/zlib1.rc +39 -0
  313. data/ext/src/third-party/zlib-1.2.3/zconf.h +332 -0
  314. data/ext/src/third-party/zlib-1.2.3/zconf.in.h +332 -0
  315. data/ext/src/third-party/zlib-1.2.3/zlib.3 +159 -0
  316. data/ext/src/third-party/zlib-1.2.3/zlib.h +1357 -0
  317. data/ext/src/third-party/zlib-1.2.3/zutil.c +318 -0
  318. data/ext/src/third-party/zlib-1.2.3/zutil.h +269 -0
  319. data/ext/src/third-party/zlib-1.2.3/zutil.o +0 -0
  320. data/lib/assembly/a_b_visualiser.rb +169 -0
  321. data/lib/assembly/acyclic_connection_finder.rb +81 -0
  322. data/lib/assembly/all_orfs.rb +615 -0
  323. data/lib/assembly/bad_format_writer.rb +46 -0
  324. data/lib/assembly/bam_probe_read_selector.rb +48 -0
  325. data/lib/assembly/bubbly_assembler.rb +842 -0
  326. data/lib/assembly/c_probe_node_finder.rb +38 -0
  327. data/lib/assembly/connection_interpreter.rb +350 -0
  328. data/lib/assembly/contig_printer.rb +400 -0
  329. data/lib/assembly/coverage_based_graph_filter.rb +68 -0
  330. data/lib/assembly/depth_first_search.rb +63 -0
  331. data/lib/assembly/dijkstra.rb +216 -0
  332. data/lib/assembly/fluffer.rb +253 -0
  333. data/lib/assembly/graph_explorer.rb +85 -0
  334. data/lib/assembly/graph_generator.rb +315 -0
  335. data/lib/assembly/height_finder.rb +355 -0
  336. data/lib/assembly/hybrid_velvet_graph.rb +70 -0
  337. data/lib/assembly/input_genome.rb +182 -0
  338. data/lib/assembly/kmer_coverage_based_path_filter.rb +65 -0
  339. data/lib/assembly/node_finder.rb +171 -0
  340. data/lib/assembly/oriented_node_trail.rb +507 -0
  341. data/lib/assembly/paired_end_assembler.rb +53 -0
  342. data/lib/assembly/paired_end_neighbour_finder.rb +176 -0
  343. data/lib/assembly/probed_graph.rb +105 -0
  344. data/lib/assembly/read_input.rb +79 -0
  345. data/lib/assembly/read_to_node.rb +37 -0
  346. data/lib/assembly/scaffold_breaker.rb +126 -0
  347. data/lib/assembly/sequence_hasher.rb +71 -0
  348. data/lib/assembly/single_coherent_paths_between_nodes.rb +533 -0
  349. data/lib/assembly/single_coherent_wanderer.rb +261 -0
  350. data/lib/assembly/single_ended_assembler.rb +441 -0
  351. data/lib/assembly/velvet_c_binding.rb +54 -0
  352. data/lib/assembly/velvet_graph_sequence_extractor.rb +123 -0
  353. data/lib/external/VERSION +1 -0
  354. data/lib/finishm/assemble.rb +224 -0
  355. data/lib/finishm/explore.rb +217 -0
  356. data/lib/finishm/finisher.rb +303 -0
  357. data/lib/finishm/fluff.rb +122 -0
  358. data/lib/finishm/gapfiller.rb +325 -0
  359. data/lib/finishm/orfs_finder.rb +88 -0
  360. data/lib/finishm/path_counter.rb +90 -0
  361. data/lib/finishm/primers.rb +425 -0
  362. data/lib/finishm/primers_check.rb +176 -0
  363. data/lib/finishm/roundup.rb +344 -0
  364. data/lib/finishm/sequence.rb +142 -0
  365. data/lib/finishm/visualise.rb +430 -0
  366. data/lib/finishm/wander.rb +270 -0
  367. data/lib/kmer_abundance_pattern.rb +79 -0
  368. data/lib/kmer_multi_abundance_file.rb +48 -0
  369. data/lib/oligo_designer.rb +88 -0
  370. data/lib/priner.rb +66 -0
  371. data/spec/acyclic_connection_finder_spec.rb +551 -0
  372. data/spec/all_orfs_spec.rb +443 -0
  373. data/spec/assemble_spec.rb +186 -0
  374. data/spec/bubbly_assembler_spec.rb +707 -0
  375. data/spec/c_node_finder_spec.rb +58 -0
  376. data/spec/connection_interpreter_spec.rb +284 -0
  377. data/spec/contig_printer_spec.rb +291 -0
  378. data/spec/coverage_based_graph_filter_spec.rb +102 -0
  379. data/spec/data/6_3e4e5e6e.1vANME.bam +0 -0
  380. data/spec/data/6_3e4e5e6e.1vANME.bam.bai +0 -0
  381. data/spec/data/acyclic_connection_finder/1/probes.fa +5 -0
  382. data/spec/data/acyclic_connection_finder/1/random1.fa +2 -0
  383. data/spec/data/acyclic_connection_finder/1/random1.sammy.fa.gz +0 -0
  384. data/spec/data/acyclic_connection_finder/1/random2.fa +2 -0
  385. data/spec/data/acyclic_connection_finder/1/random2.sammy.fa.gz +0 -0
  386. data/spec/data/assembly/1_simple_bubble_uneven_coverage/random3000.fa +39 -0
  387. data/spec/data/assembly/1_simple_bubble_uneven_coverage/random3000.slightly_changed.fa +39 -0
  388. data/spec/data/assembly/1_simple_bubble_uneven_coverage/reads_combined.fa.gz +0 -0
  389. data/spec/data/assembly_visualiser/Contig_6_1_to_250.fa.kmers31 +220 -0
  390. data/spec/data/assembly_visualiser/Contig_7_1_to_250.fa.kmers31 +220 -0
  391. data/spec/data/assembly_visualiser/Graph +46 -0
  392. data/spec/data/assembly_visualiser/start_kmers1 +2 -0
  393. data/spec/data/bands.csv +1 -0
  394. data/spec/data/c_probe_node_finder/1/CnyUnifiedSeq +0 -0
  395. data/spec/data/c_probe_node_finder/1/CnyUnifiedSeq.names +544 -0
  396. data/spec/data/c_probe_node_finder/1/Graph2 +668 -0
  397. data/spec/data/c_probe_node_finder/1/LastGraph +668 -0
  398. data/spec/data/c_probe_node_finder/1/Log +756 -0
  399. data/spec/data/c_probe_node_finder/1/PreGraph +11 -0
  400. data/spec/data/c_probe_node_finder/1/Roadmaps +2009 -0
  401. data/spec/data/c_probe_node_finder/1/contigs.fa +29 -0
  402. data/spec/data/c_probe_node_finder/1/stats.txt +6 -0
  403. data/spec/data/contig_printer/1/HOWTO_RECREATE +17 -0
  404. data/spec/data/contig_printer/1/contigs.fa +4 -0
  405. data/spec/data/contig_printer/1/seq.fa +2408 -0
  406. data/spec/data/contig_printer/1/seq.fa.svg +153 -0
  407. data/spec/data/contig_printer/1/seq.fa.velvet/Graph2 +2953 -0
  408. data/spec/data/contig_printer/1/seq.fa.velvet/LastGraph +2953 -0
  409. data/spec/data/contig_printer/1/seq.fa.velvet/Log +21 -0
  410. data/spec/data/contig_printer/1/seq.fa.velvet/PreGraph +27 -0
  411. data/spec/data/contig_printer/1/seq.fa.velvet/Roadmaps +5182 -0
  412. data/spec/data/contig_printer/1/seq.fa.velvet/Sequences +3612 -0
  413. data/spec/data/contig_printer/1/seq.fa.velvet/contigs.fa +36 -0
  414. data/spec/data/contig_printer/1/seq.fa.velvet/stats.txt +14 -0
  415. data/spec/data/contig_printer/1/seq.faVseq2_1to550.fa.bam +0 -0
  416. data/spec/data/contig_printer/1/seq.faVseq2_1to550.fa.bam.bai +0 -0
  417. data/spec/data/contig_printer/1/seq.node12.fa +4 -0
  418. data/spec/data/contig_printer/1/seq1_1to550.fa +2 -0
  419. data/spec/data/contig_printer/1/seq2_1to550.fa +2 -0
  420. data/spec/data/contig_printer/1/seq2_1to550.fa.fai +1 -0
  421. data/spec/data/explore/1/2seqs.sammy.fa +12004 -0
  422. data/spec/data/explore/1/HOWTO_RECREATE.txt +6 -0
  423. data/spec/data/explore/1/a.fa +2 -0
  424. data/spec/data/explore/1/seq1_and_a.fa +3 -0
  425. data/spec/data/explore/1/seq2.fa +2 -0
  426. data/spec/data/fluff/1/2seqs.sammy.fa +12004 -0
  427. data/spec/data/fluff/1/HOWTO_RECREATE.txt +5 -0
  428. data/spec/data/fluff/1/seq1.fa +2 -0
  429. data/spec/data/fluff/1/seq2.fa +2 -0
  430. data/spec/data/gapfilling/1/reads.fa +171 -0
  431. data/spec/data/gapfilling/1/trail_with_Ns.fa +5 -0
  432. data/spec/data/gapfilling/1/velvetAssembly/Graph2 +130 -0
  433. data/spec/data/gapfilling/1/velvetAssembly/LastGraph +130 -0
  434. data/spec/data/gapfilling/1/velvetAssembly/Log +199 -0
  435. data/spec/data/gapfilling/1/velvetAssembly/PreGraph +7 -0
  436. data/spec/data/gapfilling/1/velvetAssembly/Roadmaps +239 -0
  437. data/spec/data/gapfilling/1/velvetAssembly/Sequences +281 -0
  438. data/spec/data/gapfilling/1/velvetAssembly/contigs.fa +12 -0
  439. data/spec/data/gapfilling/1/velvetAssembly/stats.txt +4 -0
  440. data/spec/data/gapfilling/2/HOWTO_recreate +17 -0
  441. data/spec/data/gapfilling/2/reference.fa +2 -0
  442. data/spec/data/gapfilling/2/reference_part1.fa +4 -0
  443. data/spec/data/gapfilling/2/reference_part2.fa +4 -0
  444. data/spec/data/gapfilling/2/sammy_reads.fa.gz +0 -0
  445. data/spec/data/gapfilling/2/with_gaps.fa +4 -0
  446. data/spec/data/gapfilling/3/HOWTO_recreate +4 -0
  447. data/spec/data/gapfilling/3/reads.fa.gz +0 -0
  448. data/spec/data/gapfilling/3/reference_part1.fa +4 -0
  449. data/spec/data/gapfilling/3/reference_part2.fa +4 -0
  450. data/spec/data/gapfilling/3/with_gaps.fa +4 -0
  451. data/spec/data/gapfilling/4/HOWTO_recreate +1 -0
  452. data/spec/data/gapfilling/4/reads.fa.gz +0 -0
  453. data/spec/data/gapfilling/5/HOWTO_RECREATE +7 -0
  454. data/spec/data/gapfilling/5/answer.fna +2 -0
  455. data/spec/data/gapfilling/5/gappy.fna +2 -0
  456. data/spec/data/gapfilling/5/reads.fa +17961 -0
  457. data/spec/data/gapfilling/5/velvet51_3.5/LastGraph +8337 -0
  458. data/spec/data/gapfilling/5/velvet51_3.5/Sequences +20921 -0
  459. data/spec/data/gapfilling/6/random1.fa +28 -0
  460. data/spec/data/gapfilling/6/random2.fa +28 -0
  461. data/spec/data/gapfilling/6/random_sequence_length_2000 +0 -0
  462. data/spec/data/gapfilling/6/reads.random1.fa.gz +0 -0
  463. data/spec/data/gapfilling/6/reads.random2.fa.gz +0 -0
  464. data/spec/data/gapfilling/6/to_gapfill.fa +22 -0
  465. data/spec/data/kmer_profile_to_assembly/multiple_abundance_file1.csv +2 -0
  466. data/spec/data/kmers_count1.csv +2 -0
  467. data/spec/data/kmers_count2.csv +3 -0
  468. data/spec/data/out +3 -0
  469. data/spec/data/positive_latching_pair.fa +2 -0
  470. data/spec/data/primers.csv +4 -0
  471. data/spec/data/read_selection_by_kmer/blacklist1.txt +1 -0
  472. data/spec/data/read_selection_by_kmer/input.fasta +6 -0
  473. data/spec/data/read_selection_by_kmer/whitelist1.txt +1 -0
  474. data/spec/data/read_selection_by_kmer/whitelist2.txt +2 -0
  475. data/spec/data/read_to_node/1_a_graph/HOWTO_RECREATE.txt +2 -0
  476. data/spec/data/read_to_node/1_a_graph/LastGraph +6695 -0
  477. data/spec/data/read_to_node/1_a_graph/ReadToNode.bin +0 -0
  478. data/spec/data/read_to_node/2_no_read256_or_259/HOWTO_RECREATE.txt +3 -0
  479. data/spec/data/read_to_node/2_no_read256_or_259/LastGraph +6693 -0
  480. data/spec/data/read_to_node/2_no_read256_or_259/ReadToNode.bin +0 -0
  481. data/spec/data/read_to_node/3_no_last_read/LastGraph +6694 -0
  482. data/spec/data/read_to_node/3_no_last_read/ReadToNode.bin +0 -0
  483. data/spec/data/t/details.txt +5 -0
  484. data/spec/data/t/details.txt.srt +5 -0
  485. data/spec/data/t/location.txt +3 -0
  486. data/spec/data/t/location.txt.srt +3 -0
  487. data/spec/data/tweak/1_gap_then_unscaffolded/answer.fa +2 -0
  488. data/spec/data/tweak/1_gap_then_unscaffolded/reads.fa.gz +0 -0
  489. data/spec/data/tweak/1_gap_then_unscaffolded/scaffolds.fa +6 -0
  490. data/spec/data/tweak/2_second_genome/answer2.fa +2 -0
  491. data/spec/data/tweak/2_second_genome/reads.fa.gz +0 -0
  492. data/spec/data/tweak/3_variant/answer.fa +2 -0
  493. data/spec/data/tweak/3_variant/lesser_answer.fa +2 -0
  494. data/spec/data/tweak/3_variant/reads.fa.gz +0 -0
  495. data/spec/data/tweak/3_variant/with_gaps.fa +2 -0
  496. data/spec/data/velvet_test_trails/Assem/Graph +17 -0
  497. data/spec/data/velvet_test_trails/Assem/Graph2 +40 -0
  498. data/spec/data/velvet_test_trails/Assem/LastGraph +40 -0
  499. data/spec/data/velvet_test_trails/Assem/Log +35 -0
  500. data/spec/data/velvet_test_trails/Assem/PreGraph +9 -0
  501. data/spec/data/velvet_test_trails/Assem/Roadmaps +89 -0
  502. data/spec/data/velvet_test_trails/Assem/Sequences +50 -0
  503. data/spec/data/velvet_test_trails/Assem/a.svg +53 -0
  504. data/spec/data/velvet_test_trails/Assem/contigs.fa +15 -0
  505. data/spec/data/velvet_test_trails/Assem/stats.txt +5 -0
  506. data/spec/data/velvet_test_trails/node_fwds.fa +8 -0
  507. data/spec/data/velvet_test_trails/node_seqs.fa +9 -0
  508. data/spec/data/velvet_test_trails/nodes_fwd_rev.fa +16 -0
  509. data/spec/data/velvet_test_trails/read1.fa +2 -0
  510. data/spec/data/velvet_test_trails/reads.fa +50 -0
  511. data/spec/data/velvet_test_trails_reverse/Assem/LastGraph +17 -0
  512. data/spec/data/velvet_test_trails_reverse/Assem/a.svg +53 -0
  513. data/spec/data/velvet_test_trails_reverse/reads_reversed.fa +10 -0
  514. data/spec/data/visualise/1/LastGraph +6695 -0
  515. data/spec/data/visualise/2_paired_end/HOWTO_RECREATE.txt +10 -0
  516. data/spec/data/visualise/2_paired_end/rand1.fa +2 -0
  517. data/spec/data/visualise/2_paired_end/rand2.fa +2 -0
  518. data/spec/data/visualise/2_paired_end/with_gaps.fa +8 -0
  519. data/spec/data/visualise/2_paired_end/with_gaps.read_pairs.fa.gz +0 -0
  520. data/spec/data/wander/1/random1.fa +2 -0
  521. data/spec/data/wander/1/random1.sammy.fa +804 -0
  522. data/spec/depth_first_search_spec.rb +190 -0
  523. data/spec/dijkstra_spec.rb +143 -0
  524. data/spec/explore_spec.rb +29 -0
  525. data/spec/fluffer_spec.rb +155 -0
  526. data/spec/gapfiller_spec.rb +107 -0
  527. data/spec/graph_explorer_spec.rb +475 -0
  528. data/spec/graph_generator_spec.rb +99 -0
  529. data/spec/height_finder_spec.rb +306 -0
  530. data/spec/kmer_abundance_pattern_spec.rb +56 -0
  531. data/spec/kmer_coverage_based_path_filter_spec.rb +73 -0
  532. data/spec/kmer_profile_finder_spec.rb +38 -0
  533. data/spec/kmers_count_tabulate_spec.rb +120 -0
  534. data/spec/oriented_node_trail_spec.rb +221 -0
  535. data/spec/paired_end_neighbours_spec.rb +126 -0
  536. data/spec/paths_between_nodes_spec.rb +349 -0
  537. data/spec/priner_spec.rb +7 -0
  538. data/spec/read_input_spec.rb +23 -0
  539. data/spec/read_selection_by_kmer_spec.rb +166 -0
  540. data/spec/read_to_node_spec.rb +35 -0
  541. data/spec/roundup_spec.rb +366 -0
  542. data/spec/scaffold_breaker_spec.rb +144 -0
  543. data/spec/sequence_spec.rb +43 -0
  544. data/spec/single_coherent_paths_between_nodes_spec.rb +492 -0
  545. data/spec/single_coherent_wanderer_spec.rb +120 -0
  546. data/spec/single_ended_assembler_spec.rb +398 -0
  547. data/spec/spec_helper.rb +310 -0
  548. data/spec/velvet_graph_sequence_extractor_spec.rb +80 -0
  549. data/spec/visualise_spec.rb +105 -0
  550. data/spec/wander_spec.rb +119 -0
  551. data/spec/watch_for_changes.sh +16 -0
  552. data/validation/fasta_compare.rb +72 -0
  553. data/validation/gapfill_simulate_perfect.rb +108 -0
  554. metadata +899 -0
@@ -0,0 +1,2953 @@
1
+ 13 1204 31 1
2
+ NODE 1 31 3588 3588 0 0
3
+ AGCTCACCAAGGCGACGATCCTTAGCTGGTC
4
+ TTTTACCTCACCAACAAGCTAATCCTACGCG
5
+ NODE 2 34 8427 8427 0 0
6
+ TGAGAGGATGATCAGCCACACTGGGACTGAGACA
7
+ CTCAGACCAGCTAAGGATCGTCGCCTTGGTGAGC
8
+ NODE 3 31 3838 3838 0 0
9
+ CGGCCCAGACTCCTACGGGAGGCAGCAGTGG
10
+ GTGTCTCAGTCCCAGTGTGGCTGATCATCCT
11
+ NODE 4 247 35455 35455 0 0
12
+ TCTAACTTACAAAGCCGCCTACGTGCGCTTTACGCCCAGTAATTCCGAACAACGCTAGCCCCCTCCGTATTACCGCGGCTGCTGGCACGGAGTTAGCCGGGGCTTATTCTCCCGGTACTGTCATTATCATCCCGGGTAAAAGAGCTTTACAACCCTAAGGCCTTCATCACTCACGCGGCATTGCTGGATCAGGCTTTCGCCCATTGTCCAATATTCCCCACTGCTGCCTCCCGTAGGAGTCTGGGCC
13
+ GGAATATTGGACAATGGGCGAAAGCCTGATCCAGCAATGCCGCGTGAGTGATGAAGGCCTTAGGGTTGTAAAGCTCTTTTACCCGGGATGATAATGACAGTACCGGGAGAATAAGCCCCGGCTAACTCCGTGCCAGCAGCCGCGGTAATACGGAGGGGGCTAGCGTTGTTCGGAATTACTGGGCGTAAAGCGCACGTAGGCGGCTTTGTAAGTTAGAGGTGAAAGCCCGGGGCTCAACTCCGGAATT
14
+ NODE 5 9 2094 2094 0 0
15
+ GGCTCATCC
16
+ TGAGGTAAA
17
+ NODE 6 33 3500 3500 0 0
18
+ TCAGGCGATAAATCTTTGGACCGAAGTCATTAT
19
+ TGAGGATGAGCCCGCGTAGGATTAGCTTGTTGG
20
+ NODE 7 11 1935 1935 0 0
21
+ ACGGTATTAGC
22
+ GATTTATCGCC
23
+ NODE 8 59 4565 4565 0 0
24
+ CTGGTACGGAATAACTCAGGGAAACTTGAGCTAATACCGTATAATGACTTCGGTCCAAA
25
+ TCAAGTTTCCCTGAGTTATTCCGTACCAGAGGGCAGATTCCCACGCGTTACGCACCCGT
26
+ NODE 9 85 5278 5278 0 0
27
+ CTGGCGGCATGCCTAACACATGCAAGTCGAACGAGACCTTCGGGTCTAGTGGCGCACGGGTGCGTAACGCGTGGGAATCTGCCCT
28
+ GCGCCACTAGACCCGAAGGTCTCGTTCGACTTGCATGTGTTAGGCATGCCGCCAGCGTTCGTTCTGAGCCAGGATCAAACTCTAA
29
+ NODE 10 31 3746 3746 0 0
30
+ TGGCCCAGACTCCTACGGGAGGCAGCAGTGG
31
+ ATGTCTCAGTCCCAGTGTGGCTGATCATCCT
32
+ NODE 11 31 4357 4357 0 0
33
+ CTTTACCTCACCAACAAGCTAATCCTACGCG
34
+ GGCTCACCAAGGCGACGATCCTTAGCTGGTC
35
+ NODE 12 59 4143 4143 0 0
36
+ TGGGTACGGAATAACAGTTAGAAATGACTGCTAATACCGTATAATGACTTCGGTCCAAA
37
+ AGTCATTTCTAACTGTTATTCCGTACCCAAGGGCAGATTCCCACGCGTTACGCACCCGT
38
+ NODE 13 33 3354 3354 0 0
39
+ CAGGGATGAGCCCGCGTAGGATTAGCTTGTTGG
40
+ CTGGGCGATAAATCTTTGGACCGAAGTCATTAT
41
+ ARC 1 2 114
42
+ ARC -1 5 112
43
+ ARC 2 3 114
44
+ ARC 2 10 128
45
+ ARC -2 11 140
46
+ ARC 3 -4 128
47
+ ARC 4 -10 111
48
+ ARC 5 -13 116
49
+ ARC 5 6 110
50
+ ARC -5 -11 117
51
+ ARC 6 7 95
52
+ ARC 7 -12 76
53
+ ARC 7 -8 91
54
+ ARC -7 13 87
55
+ ARC -8 -9 72
56
+ ARC 9 12 56
57
+ NR -13 53
58
+ 619 0 25
59
+ 630 0 41
60
+ 632 16 0
61
+ 650 0 59
62
+ 667 0 33
63
+ 676 21 0
64
+ 680 0 47
65
+ 692 0 33
66
+ 693 0 3
67
+ 702 0 58
68
+ 710 0 30
69
+ 711 0 59
70
+ 723 0 66
71
+ 728 0 52
72
+ 776 19 0
73
+ 817 0 38
74
+ 839 0 40
75
+ 843 0 48
76
+ 847 0 25
77
+ 869 0 49
78
+ 874 0 52
79
+ 883 0 69
80
+ 888 0 55
81
+ 890 0 39
82
+ 893 0 13
83
+ 924 8 0
84
+ 933 0 61
85
+ 935 0 38
86
+ 937 0 34
87
+ 952 0 49
88
+ 963 0 7
89
+ 969 0 47
90
+ 980 0 9
91
+ 1016 0 56
92
+ 1038 0 55
93
+ 1041 0 68
94
+ 1051 0 56
95
+ 1086 0 36
96
+ 1097 0 47
97
+ 1102 0 0
98
+ 1105 0 42
99
+ 1116 0 50
100
+ 1125 0 63
101
+ 1130 0 40
102
+ 1137 0 26
103
+ 1139 0 18
104
+ 1148 0 57
105
+ 1162 0 25
106
+ 1172 0 36
107
+ 1174 27 0
108
+ 1177 0 64
109
+ 1189 0 10
110
+ 1200 0 67
111
+ NR -12 17
112
+ 619 0 69
113
+ 632 0 28
114
+ 676 0 23
115
+ 693 0 47
116
+ 770 0 4
117
+ 776 0 25
118
+ 823 0 6
119
+ 847 0 69
120
+ 893 0 57
121
+ 924 0 36
122
+ 963 0 51
123
+ 980 0 53
124
+ 1102 0 44
125
+ 1139 0 62
126
+ 1162 0 69
127
+ 1174 0 17
128
+ 1189 0 54
129
+ NR -11 99
130
+ 606 0 56
131
+ 611 0 60
132
+ 614 0 36
133
+ 627 0 36
134
+ 640 0 10
135
+ 642 0 44
136
+ 644 0 32
137
+ 654 0 35
138
+ 657 0 55
139
+ 659 0 42
140
+ 662 0 16
141
+ 665 12 0
142
+ 678 10 0
143
+ 687 0 1
144
+ 689 0 44
145
+ 699 0 53
146
+ 704 0 39
147
+ 707 0 11
148
+ 712 0 68
149
+ 722 0 26
150
+ 726 0 13
151
+ 732 12 0
152
+ 738 0 12
153
+ 744 10 0
154
+ 746 0 13
155
+ 756 0 67
156
+ 760 0 20
157
+ 764 0 35
158
+ 771 17 0
159
+ 773 0 31
160
+ 783 0 27
161
+ 786 0 22
162
+ 799 0 6
163
+ 801 12 0
164
+ 810 15 0
165
+ 820 24 0
166
+ 822 0 49
167
+ 829 14 0
168
+ 834 0 22
169
+ 841 0 37
170
+ 844 0 68
171
+ 857 2 0
172
+ 868 0 30
173
+ 872 0 33
174
+ 875 0 35
175
+ 882 0 50
176
+ 891 25 0
177
+ 895 0 46
178
+ 898 28 0
179
+ 899 5 0
180
+ 914 0 47
181
+ 915 2 0
182
+ 919 10 0
183
+ 921 0 21
184
+ 926 0 11
185
+ 946 13 0
186
+ 948 0 18
187
+ 949 0 13
188
+ 956 8 0
189
+ 959 0 57
190
+ 961 0 40
191
+ 968 0 49
192
+ 973 0 10
193
+ 975 0 21
194
+ 977 0 32
195
+ 987 26 0
196
+ 994 16 0
197
+ 1006 0 20
198
+ 1011 0 9
199
+ 1022 5 0
200
+ 1028 0 27
201
+ 1029 0 47
202
+ 1035 0 32
203
+ 1055 0 21
204
+ 1057 0 63
205
+ 1062 15 0
206
+ 1064 0 50
207
+ 1067 18 0
208
+ 1074 0 50
209
+ 1082 0 56
210
+ 1087 0 8
211
+ 1095 8 0
212
+ 1108 0 42
213
+ 1118 7 0
214
+ 1122 6 0
215
+ 1124 28 0
216
+ 1131 0 22
217
+ 1134 0 12
218
+ 1141 23 0
219
+ 1143 6 0
220
+ 1154 15 0
221
+ 1156 3 0
222
+ 1159 0 64
223
+ 1161 0 62
224
+ 1164 0 37
225
+ 1178 0 63
226
+ 1184 0 0
227
+ 1192 6 0
228
+ 1201 0 34
229
+ NR -10 99
230
+ 605 24 0
231
+ 609 0 32
232
+ 612 0 38
233
+ 613 0 60
234
+ 639 0 64
235
+ 641 0 44
236
+ 643 0 61
237
+ 652 12 0
238
+ 653 0 55
239
+ 660 0 40
240
+ 663 27 0
241
+ 666 0 44
242
+ 669 0 37
243
+ 677 0 53
244
+ 681 0 6
245
+ 690 11 0
246
+ 696 0 63
247
+ 708 0 65
248
+ 717 18 0
249
+ 720 12 0
250
+ 721 0 45
251
+ 725 0 42
252
+ 729 8 0
253
+ 737 0 32
254
+ 748 20 0
255
+ 755 0 17
256
+ 763 0 53
257
+ 772 0 32
258
+ 774 0 36
259
+ 777 25 0
260
+ 782 4 0
261
+ 784 0 53
262
+ 787 24 0
263
+ 790 26 0
264
+ 800 3 0
265
+ 816 28 0
266
+ 819 0 42
267
+ 821 18 0
268
+ 826 18 0
269
+ 828 0 25
270
+ 830 0 63
271
+ 842 0 5
272
+ 852 25 0
273
+ 853 0 11
274
+ 861 24 0
275
+ 867 0 64
276
+ 871 0 65
277
+ 876 0 44
278
+ 878 12 0
279
+ 880 27 0
280
+ 881 0 59
281
+ 900 0 62
282
+ 903 25 0
283
+ 913 0 17
284
+ 942 0 42
285
+ 947 0 19
286
+ 950 0 11
287
+ 958 0 3
288
+ 962 0 27
289
+ 967 23 0
290
+ 972 0 55
291
+ 982 4 0
292
+ 988 0 51
293
+ 989 0 22
294
+ 992 0 31
295
+ 1001 26 0
296
+ 1012 0 9
297
+ 1020 0 3
298
+ 1021 0 6
299
+ 1027 0 2
300
+ 1040 15 0
301
+ 1049 0 2
302
+ 1058 21 0
303
+ 1061 0 54
304
+ 1065 19 0
305
+ 1068 0 27
306
+ 1073 0 58
307
+ 1081 27 0
308
+ 1084 21 0
309
+ 1088 0 59
310
+ 1092 14 0
311
+ 1100 25 0
312
+ 1103 0 4
313
+ 1107 0 43
314
+ 1109 0 8
315
+ 1114 21 0
316
+ 1121 7 0
317
+ 1132 0 35
318
+ 1133 0 59
319
+ 1136 0 28
320
+ 1145 0 7
321
+ 1153 0 32
322
+ 1155 0 31
323
+ 1160 0 44
324
+ 1168 9 0
325
+ 1188 18 0
326
+ 1194 0 33
327
+ 1195 0 48
328
+ 1197 0 37
329
+ NR -9 12
330
+ 70 0 38
331
+ 115 0 66
332
+ 194 0 47
333
+ 286 0 24
334
+ 361 0 63
335
+ 363 0 27
336
+ 407 0 59
337
+ 427 0 68
338
+ 469 0 63
339
+ 493 0 69
340
+ 770 0 63
341
+ 823 0 65
342
+ NR -8 41
343
+ 21 0 56
344
+ 37 0 35
345
+ 51 0 60
346
+ 70 21 0
347
+ 102 0 60
348
+ 108 0 34
349
+ 110 0 48
350
+ 115 0 7
351
+ 118 0 69
352
+ 123 0 67
353
+ 145 0 29
354
+ 162 0 48
355
+ 190 0 69
356
+ 194 12 0
357
+ 204 0 64
358
+ 208 0 41
359
+ 209 0 65
360
+ 231 0 64
361
+ 256 0 49
362
+ 267 0 47
363
+ 271 0 54
364
+ 286 35 0
365
+ 287 0 44
366
+ 290 0 68
367
+ 361 0 4
368
+ 363 32 0
369
+ 365 0 61
370
+ 375 0 68
371
+ 388 0 66
372
+ 398 0 33
373
+ 407 0 0
374
+ 427 0 9
375
+ 443 0 66
376
+ 455 0 64
377
+ 465 0 20
378
+ 469 0 4
379
+ 474 0 37
380
+ 493 0 10
381
+ 523 0 32
382
+ 526 0 21
383
+ 580 0 37
384
+ NR -7 135
385
+ 8 0 19
386
+ 13 0 33
387
+ 22 0 43
388
+ 30 0 28
389
+ 33 0 33
390
+ 36 0 12
391
+ 50 0 32
392
+ 57 0 17
393
+ 65 0 29
394
+ 67 0 66
395
+ 73 0 8
396
+ 76 0 22
397
+ 81 0 17
398
+ 95 0 15
399
+ 128 7 0
400
+ 130 0 42
401
+ 132 0 54
402
+ 152 0 38
403
+ 163 0 39
404
+ 166 6 0
405
+ 169 0 49
406
+ 172 8 0
407
+ 178 0 38
408
+ 192 0 25
409
+ 203 0 48
410
+ 206 0 0
411
+ 217 0 69
412
+ 220 0 58
413
+ 224 0 29
414
+ 233 0 19
415
+ 260 0 15
416
+ 266 0 67
417
+ 276 0 19
418
+ 281 0 37
419
+ 289 2 0
420
+ 317 0 5
421
+ 320 0 4
422
+ 340 0 18
423
+ 344 0 65
424
+ 348 0 26
425
+ 359 0 18
426
+ 366 0 55
427
+ 384 0 66
428
+ 400 0 53
429
+ 409 0 31
430
+ 429 0 65
431
+ 434 7 0
432
+ 437 0 17
433
+ 444 0 42
434
+ 452 1 0
435
+ 463 0 50
436
+ 476 0 39
437
+ 477 0 49
438
+ 490 0 53
439
+ 494 0 65
440
+ 512 0 25
441
+ 514 2 0
442
+ 517 0 35
443
+ 538 0 5
444
+ 551 0 35
445
+ 554 0 65
446
+ 562 2 0
447
+ 576 9 0
448
+ 577 0 9
449
+ 586 0 18
450
+ 606 0 3
451
+ 611 0 7
452
+ 620 0 53
453
+ 629 0 66
454
+ 642 9 0
455
+ 649 0 28
456
+ 651 0 38
457
+ 657 0 2
458
+ 670 0 45
459
+ 675 0 19
460
+ 679 0 34
461
+ 682 0 24
462
+ 689 9 0
463
+ 695 0 21
464
+ 699 0 0
465
+ 701 0 44
466
+ 712 0 15
467
+ 719 0 31
468
+ 747 0 36
469
+ 756 0 14
470
+ 778 0 27
471
+ 822 4 0
472
+ 824 0 58
473
+ 844 0 15
474
+ 848 0 67
475
+ 851 0 65
476
+ 854 0 23
477
+ 870 0 33
478
+ 879 0 41
479
+ 882 3 0
480
+ 895 7 0
481
+ 904 0 45
482
+ 914 6 0
483
+ 934 0 51
484
+ 936 0 53
485
+ 957 0 39
486
+ 959 0 4
487
+ 968 4 0
488
+ 971 0 29
489
+ 979 0 66
490
+ 981 0 30
491
+ 990 0 58
492
+ 991 0 58
493
+ 1002 0 40
494
+ 1029 6 0
495
+ 1037 0 43
496
+ 1039 0 41
497
+ 1042 0 44
498
+ 1052 0 51
499
+ 1057 0 10
500
+ 1064 3 0
501
+ 1066 0 48
502
+ 1074 3 0
503
+ 1082 0 3
504
+ 1085 0 56
505
+ 1091 0 24
506
+ 1104 0 38
507
+ 1110 0 49
508
+ 1113 0 30
509
+ 1115 0 54
510
+ 1126 0 20
511
+ 1147 0 55
512
+ 1159 0 11
513
+ 1161 0 9
514
+ 1171 0 63
515
+ 1178 0 10
516
+ 1187 0 44
517
+ 1190 0 47
518
+ 1193 0 39
519
+ 1196 0 56
520
+ NR -6 92
521
+ 8 0 30
522
+ 11 22 0
523
+ 13 0 44
524
+ 15 29 0
525
+ 22 0 54
526
+ 30 0 39
527
+ 32 7 0
528
+ 33 0 44
529
+ 36 0 23
530
+ 39 32 0
531
+ 50 0 43
532
+ 54 26 0
533
+ 55 17 0
534
+ 57 0 28
535
+ 65 0 40
536
+ 73 0 19
537
+ 76 0 33
538
+ 81 0 28
539
+ 86 2 0
540
+ 95 0 26
541
+ 105 10 0
542
+ 113 27 0
543
+ 128 0 4
544
+ 130 0 53
545
+ 132 0 65
546
+ 136 5 0
547
+ 140 25 0
548
+ 142 5 0
549
+ 149 22 0
550
+ 152 0 49
551
+ 157 25 0
552
+ 163 0 50
553
+ 166 0 5
554
+ 168 32 0
555
+ 169 0 60
556
+ 172 0 3
557
+ 178 0 49
558
+ 188 12 0
559
+ 192 0 36
560
+ 202 32 0
561
+ 203 0 59
562
+ 206 0 11
563
+ 220 0 69
564
+ 224 0 40
565
+ 229 11 0
566
+ 232 19 0
567
+ 233 0 30
568
+ 248 5 0
569
+ 252 1 0
570
+ 260 0 26
571
+ 263 25 0
572
+ 276 0 30
573
+ 277 21 0
574
+ 281 0 48
575
+ 289 0 9
576
+ 307 11 0
577
+ 317 0 16
578
+ 320 0 15
579
+ 340 0 29
580
+ 348 0 37
581
+ 359 0 29
582
+ 366 0 66
583
+ 373 17 0
584
+ 400 0 64
585
+ 409 0 42
586
+ 419 14 0
587
+ 426 11 0
588
+ 434 0 4
589
+ 437 0 28
590
+ 444 0 53
591
+ 449 19 0
592
+ 452 0 10
593
+ 463 0 61
594
+ 476 0 50
595
+ 477 0 60
596
+ 483 20 0
597
+ 490 0 64
598
+ 503 14 0
599
+ 510 0 0
600
+ 512 0 36
601
+ 514 0 9
602
+ 517 0 46
603
+ 531 32 0
604
+ 538 0 16
605
+ 548 15 0
606
+ 551 0 46
607
+ 556 17 0
608
+ 562 0 9
609
+ 576 0 2
610
+ 577 0 20
611
+ 586 0 29
612
+ 599 22 0
613
+ NR -5 151
614
+ 8 0 63
615
+ 10 2 0
616
+ 11 0 11
617
+ 15 0 4
618
+ 32 0 26
619
+ 36 0 56
620
+ 39 0 1
621
+ 46 0 0
622
+ 54 0 7
623
+ 55 0 16
624
+ 57 0 61
625
+ 73 0 52
626
+ 76 0 66
627
+ 81 0 61
628
+ 86 0 31
629
+ 95 0 59
630
+ 105 0 23
631
+ 113 0 6
632
+ 128 0 37
633
+ 134 1 0
634
+ 136 0 28
635
+ 140 0 8
636
+ 142 0 28
637
+ 149 0 11
638
+ 157 0 8
639
+ 166 0 38
640
+ 168 0 1
641
+ 172 0 36
642
+ 188 0 21
643
+ 192 0 69
644
+ 202 0 1
645
+ 206 0 44
646
+ 229 0 22
647
+ 232 0 14
648
+ 233 0 63
649
+ 248 0 28
650
+ 252 0 32
651
+ 260 0 59
652
+ 263 0 8
653
+ 276 0 63
654
+ 277 0 12
655
+ 289 0 42
656
+ 307 0 22
657
+ 313 5 0
658
+ 317 0 49
659
+ 320 0 48
660
+ 340 0 62
661
+ 354 0 0
662
+ 359 0 62
663
+ 373 0 16
664
+ 419 0 19
665
+ 421 0 0
666
+ 426 0 22
667
+ 434 0 37
668
+ 437 0 61
669
+ 449 0 14
670
+ 452 0 43
671
+ 468 6 0
672
+ 483 0 13
673
+ 501 5 0
674
+ 503 0 19
675
+ 510 0 33
676
+ 512 0 69
677
+ 514 0 42
678
+ 515 4 0
679
+ 522 1 0
680
+ 531 0 1
681
+ 538 0 49
682
+ 539 7 0
683
+ 548 0 18
684
+ 556 0 16
685
+ 559 3 0
686
+ 562 0 42
687
+ 576 0 35
688
+ 577 0 53
689
+ 586 0 62
690
+ 597 5 0
691
+ 599 0 11
692
+ 606 0 47
693
+ 611 0 51
694
+ 614 0 27
695
+ 627 0 27
696
+ 640 0 1
697
+ 642 0 35
698
+ 644 0 23
699
+ 654 0 26
700
+ 657 0 46
701
+ 659 0 33
702
+ 662 0 7
703
+ 675 0 63
704
+ 682 0 68
705
+ 687 8 0
706
+ 689 0 35
707
+ 695 0 65
708
+ 699 0 44
709
+ 704 0 30
710
+ 707 0 2
711
+ 712 0 59
712
+ 722 0 17
713
+ 726 0 4
714
+ 738 0 3
715
+ 746 0 4
716
+ 756 0 58
717
+ 760 0 11
718
+ 764 0 26
719
+ 773 0 22
720
+ 783 0 18
721
+ 786 0 13
722
+ 799 3 0
723
+ 822 0 40
724
+ 834 0 13
725
+ 841 0 28
726
+ 844 0 59
727
+ 854 0 67
728
+ 868 0 21
729
+ 872 0 24
730
+ 875 0 26
731
+ 882 0 41
732
+ 895 0 37
733
+ 914 0 38
734
+ 921 0 12
735
+ 926 0 2
736
+ 948 0 9
737
+ 949 0 4
738
+ 959 0 48
739
+ 961 0 31
740
+ 968 0 40
741
+ 973 0 1
742
+ 975 0 12
743
+ 977 0 23
744
+ 1006 0 11
745
+ 1011 0 0
746
+ 1028 0 18
747
+ 1029 0 38
748
+ 1035 0 23
749
+ 1055 0 12
750
+ 1057 0 54
751
+ 1064 0 41
752
+ 1074 0 41
753
+ 1082 0 47
754
+ 1087 1 0
755
+ 1091 0 68
756
+ 1108 0 33
757
+ 1126 0 64
758
+ 1131 0 13
759
+ 1134 0 3
760
+ 1159 0 55
761
+ 1161 0 53
762
+ 1164 0 28
763
+ 1178 0 54
764
+ 1201 0 25
765
+ NR -4 207
766
+ 6 28 0
767
+ 18 0 17
768
+ 24 20 0
769
+ 42 0 65
770
+ 78 12 0
771
+ 80 0 10
772
+ 84 0 0
773
+ 90 0 68
774
+ 92 0 13
775
+ 94 100 0
776
+ 97 0 28
777
+ 104 0 18
778
+ 119 0 38
779
+ 122 0 36
780
+ 137 74 0
781
+ 144 27 0
782
+ 148 19 0
783
+ 174 9 0
784
+ 180 29 0
785
+ 182 0 36
786
+ 184 0 5
787
+ 185 0 24
788
+ 195 2 0
789
+ 198 0 7
790
+ 212 0 20
791
+ 214 34 0
792
+ 216 0 50
793
+ 222 8 0
794
+ 226 0 55
795
+ 227 0 61
796
+ 237 51 0
797
+ 240 0 44
798
+ 242 0 26
799
+ 245 0 63
800
+ 249 0 26
801
+ 253 0 7
802
+ 258 0 41
803
+ 262 0 28
804
+ 269 0 5
805
+ 274 0 59
806
+ 279 23 0
807
+ 283 0 34
808
+ 292 0 44
809
+ 297 64 0
810
+ 302 18 0
811
+ 303 0 20
812
+ 305 20 0
813
+ 312 98 0
814
+ 324 0 31
815
+ 325 0 22
816
+ 327 36 0
817
+ 333 0 26
818
+ 335 64 0
819
+ 338 22 0
820
+ 345 0 54
821
+ 349 0 17
822
+ 352 92 0
823
+ 355 14 0
824
+ 358 13 0
825
+ 368 0 29
826
+ 369 0 22
827
+ 381 0 23
828
+ 392 0 32
829
+ 395 0 16
830
+ 403 0 22
831
+ 412 74 0
832
+ 414 0 22
833
+ 423 0 24
834
+ 432 63 0
835
+ 436 0 17
836
+ 440 0 46
837
+ 445 80 0
838
+ 453 78 0
839
+ 458 0 26
840
+ 459 50 0
841
+ 479 0 1
842
+ 482 0 3
843
+ 485 0 40
844
+ 496 71 0
845
+ 497 39 0
846
+ 500 81 0
847
+ 506 53 0
848
+ 519 26 0
849
+ 533 2 0
850
+ 536 0 32
851
+ 541 78 0
852
+ 549 153 0
853
+ 557 25 0
854
+ 563 0 56
855
+ 566 0 26
856
+ 568 0 15
857
+ 569 45 0
858
+ 572 74 0
859
+ 574 4 0
860
+ 582 0 5
861
+ 584 0 60
862
+ 592 59 0
863
+ 594 0 24
864
+ 602 0 56
865
+ 603 0 31
866
+ 608 0 36
867
+ 616 0 0
868
+ 618 47 0
869
+ 622 59 0
870
+ 624 112 0
871
+ 625 0 43
872
+ 634 58 0
873
+ 635 0 11
874
+ 637 81 0
875
+ 646 8 0
876
+ 647 0 31
877
+ 655 22 0
878
+ 672 82 0
879
+ 673 85 0
880
+ 684 55 0
881
+ 685 0 59
882
+ 698 34 0
883
+ 705 32 0
884
+ 713 0 31
885
+ 715 0 60
886
+ 734 50 0
887
+ 736 140 0
888
+ 739 69 0
889
+ 741 0 55
890
+ 750 0 30
891
+ 751 0 47
892
+ 753 87 0
893
+ 758 0 56
894
+ 761 0 28
895
+ 766 0 3
896
+ 767 0 46
897
+ 780 0 11
898
+ 791 0 40
899
+ 794 0 38
900
+ 796 0 39
901
+ 797 0 25
902
+ 804 0 35
903
+ 805 0 8
904
+ 807 0 8
905
+ 812 15 0
906
+ 814 94 0
907
+ 827 0 28
908
+ 832 100 0
909
+ 835 14 0
910
+ 837 66 0
911
+ 846 97 0
912
+ 850 0 54
913
+ 856 113 0
914
+ 859 0 49
915
+ 863 120 0
916
+ 865 166 0
917
+ 886 81 0
918
+ 898 0 68
919
+ 902 109 0
920
+ 905 83 0
921
+ 907 85 0
922
+ 910 35 0
923
+ 912 9 0
924
+ 917 0 47
925
+ 928 60 0
926
+ 929 0 43
927
+ 932 64 0
928
+ 939 136 0
929
+ 944 125 0
930
+ 954 38 0
931
+ 965 0 63
932
+ 983 0 13
933
+ 985 0 51
934
+ 996 0 48
935
+ 997 52 0
936
+ 1000 0 31
937
+ 1004 0 39
938
+ 1008 21 0
939
+ 1010 43 0
940
+ 1014 54 0
941
+ 1017 0 63
942
+ 1024 23 0
943
+ 1026 116 0
944
+ 1031 68 0
945
+ 1033 42 0
946
+ 1043 33 0
947
+ 1046 66 0
948
+ 1047 34 0
949
+ 1054 24 0
950
+ 1070 0 61
951
+ 1071 48 0
952
+ 1075 0 62
953
+ 1078 33 0
954
+ 1080 0 53
955
+ 1089 22 0
956
+ 1094 0 13
957
+ 1112 32 0
958
+ 1119 0 3
959
+ 1124 0 68
960
+ 1127 69 0
961
+ 1135 0 49
962
+ 1149 7 0
963
+ 1151 0 31
964
+ 1158 39 0
965
+ 1166 0 32
966
+ 1169 41 0
967
+ 1176 19 0
968
+ 1180 16 0
969
+ 1182 4 0
970
+ 1185 72 0
971
+ 1198 0 62
972
+ 1204 0 29
973
+ NR -3 97
974
+ 9 0 51
975
+ 12 0 43
976
+ 16 0 65
977
+ 28 29 0
978
+ 29 0 60
979
+ 31 25 0
980
+ 34 18 0
981
+ 35 0 66
982
+ 48 0 53
983
+ 56 0 66
984
+ 59 14 0
985
+ 62 0 57
986
+ 66 0 18
987
+ 68 0 50
988
+ 72 0 28
989
+ 74 0 27
990
+ 75 0 22
991
+ 82 0 30
992
+ 85 0 40
993
+ 111 28 0
994
+ 127 15 0
995
+ 129 14 0
996
+ 135 24 0
997
+ 139 0 4
998
+ 141 0 69
999
+ 151 22 0
1000
+ 154 0 63
1001
+ 158 0 56
1002
+ 164 0 28
1003
+ 165 0 19
1004
+ 171 0 14
1005
+ 177 2 0
1006
+ 191 0 45
1007
+ 205 0 24
1008
+ 223 0 15
1009
+ 230 0 9
1010
+ 234 0 35
1011
+ 247 0 25
1012
+ 251 0 31
1013
+ 259 0 52
1014
+ 264 0 68
1015
+ 265 0 10
1016
+ 273 0 58
1017
+ 278 0 47
1018
+ 296 0 55
1019
+ 299 0 10
1020
+ 310 0 3
1021
+ 315 0 8
1022
+ 318 0 45
1023
+ 330 24 0
1024
+ 339 3 0
1025
+ 343 0 38
1026
+ 347 0 50
1027
+ 353 0 40
1028
+ 360 0 38
1029
+ 374 0 44
1030
+ 379 0 14
1031
+ 383 0 33
1032
+ 386 23 0
1033
+ 393 21 0
1034
+ 399 0 53
1035
+ 404 0 28
1036
+ 410 0 2
1037
+ 416 0 65
1038
+ 417 0 59
1039
+ 425 0 10
1040
+ 430 4 0
1041
+ 433 0 21
1042
+ 447 0 6
1043
+ 450 0 3
1044
+ 451 0 37
1045
+ 464 0 44
1046
+ 484 0 49
1047
+ 487 9 0
1048
+ 492 18 0
1049
+ 504 3 0
1050
+ 509 0 3
1051
+ 511 0 12
1052
+ 513 0 23
1053
+ 516 0 49
1054
+ 518 10 0
1055
+ 521 0 35
1056
+ 528 8 0
1057
+ 529 25 0
1058
+ 532 0 29
1059
+ 537 28 0
1060
+ 545 11 0
1061
+ 547 18 0
1062
+ 552 0 34
1063
+ 553 22 0
1064
+ 555 0 58
1065
+ 560 0 15
1066
+ 561 0 18
1067
+ 578 0 20
1068
+ 583 0 59
1069
+ 585 0 21
1070
+ 598 0 23
1071
+ NR -2 179
1072
+ 20 25 0
1073
+ 25 19 0
1074
+ 28 0 2
1075
+ 31 0 6
1076
+ 34 0 13
1077
+ 40 4 0
1078
+ 43 31 0
1079
+ 53 31 0
1080
+ 59 0 17
1081
+ 64 32 0
1082
+ 66 0 49
1083
+ 72 0 59
1084
+ 74 0 58
1085
+ 75 0 53
1086
+ 82 0 61
1087
+ 96 13 0
1088
+ 111 0 3
1089
+ 127 0 16
1090
+ 129 0 17
1091
+ 131 3 0
1092
+ 135 0 7
1093
+ 139 0 35
1094
+ 151 0 9
1095
+ 155 12 0
1096
+ 164 0 59
1097
+ 165 0 50
1098
+ 171 0 45
1099
+ 177 0 29
1100
+ 205 0 55
1101
+ 223 0 46
1102
+ 230 0 40
1103
+ 234 0 66
1104
+ 247 0 56
1105
+ 251 0 62
1106
+ 265 0 41
1107
+ 282 18 0
1108
+ 299 0 41
1109
+ 310 0 34
1110
+ 315 0 39
1111
+ 321 12 0
1112
+ 330 0 7
1113
+ 331 28 0
1114
+ 339 0 28
1115
+ 341 25 0
1116
+ 343 0 69
1117
+ 360 0 69
1118
+ 372 6 0
1119
+ 379 0 45
1120
+ 383 0 64
1121
+ 386 0 8
1122
+ 393 0 10
1123
+ 402 19 0
1124
+ 404 0 59
1125
+ 410 0 33
1126
+ 425 0 41
1127
+ 430 0 27
1128
+ 433 0 52
1129
+ 447 0 37
1130
+ 450 0 34
1131
+ 451 0 68
1132
+ 487 0 22
1133
+ 489 11 0
1134
+ 492 0 13
1135
+ 504 0 28
1136
+ 509 0 34
1137
+ 511 0 43
1138
+ 513 0 54
1139
+ 518 0 21
1140
+ 521 0 66
1141
+ 528 0 23
1142
+ 529 0 6
1143
+ 532 0 60
1144
+ 537 0 3
1145
+ 545 0 20
1146
+ 547 0 13
1147
+ 552 0 65
1148
+ 553 0 9
1149
+ 560 0 46
1150
+ 561 0 49
1151
+ 578 0 51
1152
+ 585 0 52
1153
+ 595 13 0
1154
+ 598 0 54
1155
+ 605 0 7
1156
+ 609 0 63
1157
+ 612 0 69
1158
+ 630 33 0
1159
+ 650 15 0
1160
+ 652 0 19
1161
+ 663 0 4
1162
+ 669 0 68
1163
+ 680 27 0
1164
+ 681 0 37
1165
+ 690 0 20
1166
+ 702 16 0
1167
+ 711 15 0
1168
+ 717 0 13
1169
+ 720 0 19
1170
+ 723 8 0
1171
+ 728 22 0
1172
+ 729 0 23
1173
+ 737 0 63
1174
+ 748 0 11
1175
+ 755 0 48
1176
+ 772 0 63
1177
+ 774 0 67
1178
+ 777 0 6
1179
+ 782 0 27
1180
+ 787 0 7
1181
+ 790 0 5
1182
+ 800 0 28
1183
+ 816 0 3
1184
+ 821 0 13
1185
+ 826 0 13
1186
+ 828 0 56
1187
+ 842 0 36
1188
+ 843 26 0
1189
+ 852 0 6
1190
+ 853 0 42
1191
+ 861 0 7
1192
+ 869 25 0
1193
+ 874 22 0
1194
+ 878 0 19
1195
+ 880 0 4
1196
+ 883 5 0
1197
+ 888 19 0
1198
+ 903 0 6
1199
+ 913 0 48
1200
+ 933 13 0
1201
+ 947 0 50
1202
+ 950 0 42
1203
+ 952 25 0
1204
+ 958 0 34
1205
+ 962 0 58
1206
+ 967 0 8
1207
+ 969 27 0
1208
+ 982 0 27
1209
+ 989 0 53
1210
+ 992 0 62
1211
+ 1001 0 5
1212
+ 1012 0 40
1213
+ 1016 18 0
1214
+ 1020 0 34
1215
+ 1021 0 37
1216
+ 1027 0 33
1217
+ 1038 19 0
1218
+ 1040 0 16
1219
+ 1041 6 0
1220
+ 1049 0 33
1221
+ 1051 18 0
1222
+ 1058 0 10
1223
+ 1060 2 0
1224
+ 1065 0 12
1225
+ 1068 0 58
1226
+ 1081 0 4
1227
+ 1084 0 10
1228
+ 1092 0 17
1229
+ 1097 27 0
1230
+ 1100 0 6
1231
+ 1103 0 35
1232
+ 1105 32 0
1233
+ 1109 0 39
1234
+ 1114 0 10
1235
+ 1116 24 0
1236
+ 1121 0 24
1237
+ 1125 11 0
1238
+ 1132 0 66
1239
+ 1136 0 59
1240
+ 1145 0 38
1241
+ 1148 17 0
1242
+ 1153 0 63
1243
+ 1155 0 62
1244
+ 1168 0 22
1245
+ 1177 10 0
1246
+ 1188 0 13
1247
+ 1194 0 64
1248
+ 1197 0 68
1249
+ 1200 7 0
1250
+ 1202 4 0
1251
+ NR -1 73
1252
+ 7 10 0
1253
+ 20 0 9
1254
+ 21 28 0
1255
+ 25 0 15
1256
+ 28 0 36
1257
+ 31 0 40
1258
+ 34 0 47
1259
+ 40 0 30
1260
+ 43 0 3
1261
+ 49 2 0
1262
+ 51 24 0
1263
+ 53 0 3
1264
+ 59 0 51
1265
+ 64 0 2
1266
+ 96 0 21
1267
+ 102 24 0
1268
+ 111 0 37
1269
+ 118 15 0
1270
+ 123 17 0
1271
+ 127 0 50
1272
+ 129 0 51
1273
+ 131 0 31
1274
+ 135 0 41
1275
+ 139 0 69
1276
+ 151 0 43
1277
+ 155 0 22
1278
+ 175 6 0
1279
+ 177 0 63
1280
+ 190 15 0
1281
+ 204 20 0
1282
+ 209 19 0
1283
+ 218 14 0
1284
+ 219 3 0
1285
+ 231 20 0
1286
+ 271 30 0
1287
+ 282 0 16
1288
+ 290 16 0
1289
+ 310 0 68
1290
+ 319 12 0
1291
+ 321 0 22
1292
+ 330 0 41
1293
+ 331 0 6
1294
+ 339 0 62
1295
+ 341 0 9
1296
+ 365 23 0
1297
+ 372 0 28
1298
+ 375 16 0
1299
+ 386 0 42
1300
+ 388 18 0
1301
+ 389 7 0
1302
+ 393 0 44
1303
+ 402 0 15
1304
+ 410 0 67
1305
+ 430 0 61
1306
+ 443 18 0
1307
+ 450 0 68
1308
+ 455 20 0
1309
+ 475 1 0
1310
+ 487 0 56
1311
+ 489 0 23
1312
+ 492 0 47
1313
+ 504 0 62
1314
+ 508 13 0
1315
+ 509 0 68
1316
+ 518 0 55
1317
+ 528 0 57
1318
+ 529 0 40
1319
+ 537 0 37
1320
+ 545 0 54
1321
+ 547 0 47
1322
+ 553 0 43
1323
+ 589 14 0
1324
+ 595 0 21
1325
+ NR 1 88
1326
+ 1 23 0
1327
+ 3 21 0
1328
+ 10 0 7
1329
+ 11 0 20
1330
+ 15 0 13
1331
+ 32 0 35
1332
+ 36 0 65
1333
+ 39 0 10
1334
+ 46 0 9
1335
+ 47 9 0
1336
+ 54 0 16
1337
+ 55 0 25
1338
+ 61 4 0
1339
+ 73 0 61
1340
+ 86 0 40
1341
+ 87 24 0
1342
+ 90 28 0
1343
+ 95 0 68
1344
+ 100 11 0
1345
+ 105 0 32
1346
+ 113 0 15
1347
+ 126 9 0
1348
+ 128 0 46
1349
+ 134 0 8
1350
+ 136 0 37
1351
+ 140 0 17
1352
+ 142 0 37
1353
+ 149 0 20
1354
+ 153 4 0
1355
+ 157 0 17
1356
+ 160 6 0
1357
+ 166 0 47
1358
+ 168 0 10
1359
+ 172 0 45
1360
+ 188 0 30
1361
+ 199 21 0
1362
+ 202 0 10
1363
+ 206 0 53
1364
+ 229 0 31
1365
+ 232 0 23
1366
+ 235 18 0
1367
+ 244 8 0
1368
+ 248 0 37
1369
+ 252 0 41
1370
+ 260 0 68
1371
+ 263 0 17
1372
+ 277 0 21
1373
+ 289 0 51
1374
+ 293 23 0
1375
+ 295 23 0
1376
+ 307 0 31
1377
+ 313 0 4
1378
+ 317 0 58
1379
+ 320 0 57
1380
+ 354 0 9
1381
+ 373 0 25
1382
+ 377 12 0
1383
+ 406 20 0
1384
+ 415 3 0
1385
+ 419 0 28
1386
+ 421 0 9
1387
+ 426 0 31
1388
+ 434 0 46
1389
+ 442 24 0
1390
+ 449 0 23
1391
+ 452 0 52
1392
+ 462 25 0
1393
+ 468 0 3
1394
+ 483 0 22
1395
+ 501 0 4
1396
+ 503 0 28
1397
+ 510 0 42
1398
+ 514 0 51
1399
+ 515 0 5
1400
+ 522 0 8
1401
+ 531 0 10
1402
+ 538 0 58
1403
+ 539 0 2
1404
+ 544 3 0
1405
+ 548 0 27
1406
+ 556 0 25
1407
+ 559 0 6
1408
+ 562 0 51
1409
+ 576 0 44
1410
+ 577 0 62
1411
+ 588 8 0
1412
+ 597 0 4
1413
+ 599 0 20
1414
+ NR 2 187
1415
+ 1 0 8
1416
+ 3 0 10
1417
+ 10 0 38
1418
+ 11 0 51
1419
+ 15 0 44
1420
+ 32 0 66
1421
+ 39 0 41
1422
+ 42 0 0
1423
+ 46 0 40
1424
+ 47 0 22
1425
+ 54 0 47
1426
+ 55 0 56
1427
+ 61 0 27
1428
+ 87 0 7
1429
+ 90 0 3
1430
+ 100 0 20
1431
+ 105 0 63
1432
+ 113 0 46
1433
+ 119 27 0
1434
+ 122 29 0
1435
+ 126 0 22
1436
+ 134 0 39
1437
+ 136 0 68
1438
+ 140 0 48
1439
+ 142 0 68
1440
+ 149 0 51
1441
+ 153 0 27
1442
+ 157 0 48
1443
+ 160 0 25
1444
+ 168 0 41
1445
+ 182 29 0
1446
+ 188 0 61
1447
+ 199 0 10
1448
+ 202 0 41
1449
+ 216 15 0
1450
+ 226 10 0
1451
+ 227 4 0
1452
+ 229 0 62
1453
+ 232 0 54
1454
+ 235 0 13
1455
+ 240 21 0
1456
+ 244 0 23
1457
+ 245 2 0
1458
+ 248 0 68
1459
+ 258 24 0
1460
+ 263 0 48
1461
+ 274 6 0
1462
+ 277 0 52
1463
+ 283 31 0
1464
+ 292 21 0
1465
+ 293 0 8
1466
+ 295 0 8
1467
+ 307 0 62
1468
+ 313 0 35
1469
+ 345 11 0
1470
+ 354 0 40
1471
+ 373 0 56
1472
+ 377 0 19
1473
+ 392 33 0
1474
+ 406 0 11
1475
+ 415 0 28
1476
+ 419 0 59
1477
+ 421 0 40
1478
+ 426 0 62
1479
+ 440 19 0
1480
+ 442 0 7
1481
+ 449 0 54
1482
+ 462 0 6
1483
+ 468 0 34
1484
+ 483 0 53
1485
+ 485 25 0
1486
+ 501 0 35
1487
+ 503 0 59
1488
+ 515 0 36
1489
+ 522 0 39
1490
+ 531 0 41
1491
+ 536 33 0
1492
+ 539 0 33
1493
+ 544 0 28
1494
+ 548 0 58
1495
+ 556 0 56
1496
+ 559 0 37
1497
+ 563 9 0
1498
+ 584 5 0
1499
+ 588 0 23
1500
+ 597 0 35
1501
+ 599 0 51
1502
+ 602 9 0
1503
+ 608 29 0
1504
+ 614 0 67
1505
+ 625 22 0
1506
+ 627 0 67
1507
+ 640 0 41
1508
+ 644 0 63
1509
+ 654 0 66
1510
+ 662 0 47
1511
+ 665 0 19
1512
+ 678 0 21
1513
+ 685 6 0
1514
+ 687 0 32
1515
+ 707 0 42
1516
+ 715 5 0
1517
+ 722 0 57
1518
+ 726 0 44
1519
+ 732 0 19
1520
+ 738 0 43
1521
+ 741 10 0
1522
+ 744 0 21
1523
+ 746 0 44
1524
+ 751 18 0
1525
+ 758 9 0
1526
+ 760 0 51
1527
+ 764 0 66
1528
+ 767 19 0
1529
+ 771 0 14
1530
+ 773 0 62
1531
+ 783 0 58
1532
+ 786 0 53
1533
+ 791 25 0
1534
+ 794 27 0
1535
+ 796 26 0
1536
+ 799 0 37
1537
+ 801 0 19
1538
+ 804 30 0
1539
+ 810 0 16
1540
+ 820 0 7
1541
+ 829 0 17
1542
+ 834 0 53
1543
+ 841 0 68
1544
+ 850 11 0
1545
+ 857 0 29
1546
+ 859 16 0
1547
+ 868 0 61
1548
+ 872 0 64
1549
+ 875 0 66
1550
+ 891 0 6
1551
+ 898 0 3
1552
+ 899 0 26
1553
+ 915 0 29
1554
+ 917 18 0
1555
+ 919 0 21
1556
+ 921 0 52
1557
+ 926 0 42
1558
+ 929 22 0
1559
+ 946 0 18
1560
+ 948 0 49
1561
+ 949 0 44
1562
+ 956 0 23
1563
+ 965 2 0
1564
+ 973 0 41
1565
+ 975 0 52
1566
+ 977 0 63
1567
+ 985 14 0
1568
+ 987 0 5
1569
+ 994 0 15
1570
+ 996 17 0
1571
+ 1004 26 0
1572
+ 1006 0 51
1573
+ 1011 0 40
1574
+ 1017 2 0
1575
+ 1022 0 26
1576
+ 1028 0 58
1577
+ 1035 0 63
1578
+ 1055 0 52
1579
+ 1062 0 16
1580
+ 1067 0 13
1581
+ 1070 4 0
1582
+ 1075 3 0
1583
+ 1080 12 0
1584
+ 1087 0 39
1585
+ 1095 0 23
1586
+ 1118 0 24
1587
+ 1122 0 25
1588
+ 1124 0 3
1589
+ 1131 0 53
1590
+ 1134 0 43
1591
+ 1135 16 0
1592
+ 1141 0 8
1593
+ 1143 0 25
1594
+ 1154 0 16
1595
+ 1156 0 28
1596
+ 1164 0 68
1597
+ 1166 33 0
1598
+ 1184 0 31
1599
+ 1192 0 25
1600
+ 1198 3 0
1601
+ 1201 0 65
1602
+ NR 3 82
1603
+ 1 0 42
1604
+ 3 0 44
1605
+ 18 14 0
1606
+ 42 0 34
1607
+ 47 0 56
1608
+ 61 0 61
1609
+ 80 21 0
1610
+ 87 0 41
1611
+ 90 0 37
1612
+ 92 18 0
1613
+ 97 3 0
1614
+ 100 0 54
1615
+ 104 13 0
1616
+ 119 0 7
1617
+ 122 0 5
1618
+ 126 0 56
1619
+ 153 0 61
1620
+ 160 0 59
1621
+ 182 0 5
1622
+ 184 26 0
1623
+ 185 7 0
1624
+ 198 24 0
1625
+ 199 0 44
1626
+ 212 11 0
1627
+ 216 0 19
1628
+ 226 0 24
1629
+ 227 0 30
1630
+ 235 0 47
1631
+ 240 0 13
1632
+ 242 5 0
1633
+ 244 0 57
1634
+ 245 0 32
1635
+ 249 5 0
1636
+ 253 24 0
1637
+ 258 0 10
1638
+ 262 3 0
1639
+ 269 26 0
1640
+ 274 0 28
1641
+ 283 0 3
1642
+ 292 0 13
1643
+ 293 0 42
1644
+ 295 0 42
1645
+ 303 11 0
1646
+ 313 0 69
1647
+ 324 0 0
1648
+ 325 9 0
1649
+ 333 5 0
1650
+ 345 0 23
1651
+ 349 14 0
1652
+ 368 2 0
1653
+ 369 9 0
1654
+ 377 0 53
1655
+ 381 8 0
1656
+ 392 0 1
1657
+ 395 15 0
1658
+ 403 9 0
1659
+ 406 0 45
1660
+ 414 9 0
1661
+ 415 0 62
1662
+ 423 7 0
1663
+ 436 14 0
1664
+ 440 0 15
1665
+ 442 0 41
1666
+ 458 5 0
1667
+ 462 0 40
1668
+ 468 0 68
1669
+ 479 30 0
1670
+ 482 28 0
1671
+ 485 0 9
1672
+ 501 0 69
1673
+ 536 0 1
1674
+ 539 0 67
1675
+ 544 0 62
1676
+ 563 0 25
1677
+ 566 5 0
1678
+ 568 16 0
1679
+ 582 26 0
1680
+ 584 0 29
1681
+ 588 0 57
1682
+ 594 7 0
1683
+ 597 0 69
1684
+ 602 0 25
1685
+ NR 4 417
1686
+ 2 78 0
1687
+ 4 103 0
1688
+ 5 33 0
1689
+ 9 196 0
1690
+ 12 204 0
1691
+ 14 126 0
1692
+ 16 182 0
1693
+ 17 55 0
1694
+ 23 82 0
1695
+ 29 187 0
1696
+ 35 181 0
1697
+ 41 95 0
1698
+ 45 161 0
1699
+ 48 194 0
1700
+ 56 181 0
1701
+ 58 170 0
1702
+ 62 190 0
1703
+ 66 229 0
1704
+ 68 197 0
1705
+ 72 219 0
1706
+ 74 220 0
1707
+ 75 225 0
1708
+ 77 75 0
1709
+ 79 66 0
1710
+ 82 217 0
1711
+ 83 121 0
1712
+ 85 207 0
1713
+ 88 69 0
1714
+ 89 157 0
1715
+ 91 49 0
1716
+ 93 78 0
1717
+ 98 44 0
1718
+ 99 154 0
1719
+ 103 54 0
1720
+ 106 167 0
1721
+ 114 152 0
1722
+ 120 97 0
1723
+ 121 77 0
1724
+ 125 160 0
1725
+ 133 123 0
1726
+ 138 100 0
1727
+ 139 243 0
1728
+ 141 178 0
1729
+ 143 92 0
1730
+ 147 126 0
1731
+ 150 104 0
1732
+ 154 184 0
1733
+ 158 191 0
1734
+ 159 93 0
1735
+ 164 219 0
1736
+ 165 228 0
1737
+ 167 146 0
1738
+ 170 151 0
1739
+ 171 233 0
1740
+ 173 109 0
1741
+ 179 81 0
1742
+ 181 75 0
1743
+ 183 68 0
1744
+ 186 49 0
1745
+ 187 146 0
1746
+ 191 202 0
1747
+ 196 40 0
1748
+ 197 59 0
1749
+ 200 127 0
1750
+ 201 76 0
1751
+ 205 223 0
1752
+ 211 128 0
1753
+ 213 89 0
1754
+ 215 60 0
1755
+ 221 73 0
1756
+ 223 232 0
1757
+ 225 95 0
1758
+ 228 142 0
1759
+ 230 238 0
1760
+ 234 212 0
1761
+ 236 97 0
1762
+ 238 80 0
1763
+ 239 103 0
1764
+ 241 121 0
1765
+ 243 109 0
1766
+ 246 152 0
1767
+ 247 222 0
1768
+ 250 166 0
1769
+ 251 216 0
1770
+ 254 75 0
1771
+ 257 20 0
1772
+ 259 195 0
1773
+ 261 79 0
1774
+ 264 179 0
1775
+ 265 237 0
1776
+ 270 108 0
1777
+ 273 189 0
1778
+ 275 112 0
1779
+ 278 200 0
1780
+ 280 79 0
1781
+ 284 45 0
1782
+ 291 149 0
1783
+ 294 72 0
1784
+ 296 192 0
1785
+ 298 136 0
1786
+ 299 237 0
1787
+ 301 158 0
1788
+ 304 53 0
1789
+ 306 85 0
1790
+ 308 96 0
1791
+ 310 244 0
1792
+ 311 20 0
1793
+ 314 164 0
1794
+ 315 239 0
1795
+ 318 202 0
1796
+ 323 125 0
1797
+ 326 40 0
1798
+ 328 72 0
1799
+ 334 83 0
1800
+ 336 48 0
1801
+ 337 105 0
1802
+ 343 209 0
1803
+ 346 160 0
1804
+ 347 197 0
1805
+ 350 61 0
1806
+ 351 26 0
1807
+ 353 207 0
1808
+ 356 78 0
1809
+ 357 56 0
1810
+ 360 209 0
1811
+ 367 85 0
1812
+ 370 104 0
1813
+ 374 203 0
1814
+ 378 157 0
1815
+ 379 233 0
1816
+ 382 110 0
1817
+ 383 214 0
1818
+ 391 103 0
1819
+ 396 62 0
1820
+ 399 194 0
1821
+ 404 219 0
1822
+ 405 94 0
1823
+ 410 245 0
1824
+ 411 24 0
1825
+ 413 150 0
1826
+ 416 182 0
1827
+ 417 188 0
1828
+ 420 112 0
1829
+ 422 145 0
1830
+ 424 87 0
1831
+ 425 237 0
1832
+ 431 98 0
1833
+ 433 226 0
1834
+ 435 105 0
1835
+ 438 157 0
1836
+ 439 129 0
1837
+ 441 177 0
1838
+ 446 29 0
1839
+ 447 241 0
1840
+ 450 244 0
1841
+ 451 210 0
1842
+ 454 50 0
1843
+ 457 87 0
1844
+ 460 39 0
1845
+ 461 99 0
1846
+ 464 203 0
1847
+ 467 157 0
1848
+ 472 148 0
1849
+ 478 164 0
1850
+ 480 41 0
1851
+ 481 49 0
1852
+ 484 198 0
1853
+ 486 37 0
1854
+ 495 20 0
1855
+ 498 85 0
1856
+ 499 32 0
1857
+ 502 115 0
1858
+ 505 119 0
1859
+ 509 244 0
1860
+ 511 235 0
1861
+ 513 224 0
1862
+ 516 198 0
1863
+ 520 116 0
1864
+ 521 212 0
1865
+ 532 218 0
1866
+ 534 37 0
1867
+ 535 164 0
1868
+ 540 118 0
1869
+ 542 28 0
1870
+ 543 137 0
1871
+ 550 22 0
1872
+ 552 213 0
1873
+ 555 189 0
1874
+ 558 103 0
1875
+ 560 232 0
1876
+ 561 229 0
1877
+ 564 63 0
1878
+ 565 65 0
1879
+ 567 158 0
1880
+ 570 48 0
1881
+ 571 24 0
1882
+ 573 56 0
1883
+ 575 153 0
1884
+ 578 227 0
1885
+ 581 117 0
1886
+ 583 188 0
1887
+ 585 226 0
1888
+ 587 162 0
1889
+ 591 77 0
1890
+ 593 89 0
1891
+ 598 224 0
1892
+ 600 98 0
1893
+ 601 52 0
1894
+ 604 96 0
1895
+ 607 77 0
1896
+ 609 215 0
1897
+ 612 209 0
1898
+ 613 187 0
1899
+ 615 92 0
1900
+ 617 1 0
1901
+ 621 37 0
1902
+ 623 4 0
1903
+ 626 118 0
1904
+ 628 140 0
1905
+ 633 22 0
1906
+ 636 10 0
1907
+ 638 2 0
1908
+ 639 183 0
1909
+ 641 203 0
1910
+ 643 186 0
1911
+ 645 83 0
1912
+ 648 71 0
1913
+ 653 192 0
1914
+ 656 118 0
1915
+ 658 170 0
1916
+ 660 207 0
1917
+ 661 157 0
1918
+ 666 203 0
1919
+ 669 210 0
1920
+ 671 4 0
1921
+ 674 37 0
1922
+ 677 194 0
1923
+ 681 241 0
1924
+ 683 60 0
1925
+ 686 172 0
1926
+ 688 175 0
1927
+ 696 184 0
1928
+ 697 57 0
1929
+ 700 177 0
1930
+ 703 168 0
1931
+ 706 13 0
1932
+ 708 182 0
1933
+ 714 174 0
1934
+ 716 106 0
1935
+ 721 202 0
1936
+ 725 205 0
1937
+ 731 75 0
1938
+ 733 24 0
1939
+ 735 38 0
1940
+ 737 215 0
1941
+ 740 14 0
1942
+ 742 149 0
1943
+ 743 173 0
1944
+ 745 153 0
1945
+ 749 87 0
1946
+ 752 156 0
1947
+ 754 7 0
1948
+ 755 230 0
1949
+ 757 131 0
1950
+ 759 166 0
1951
+ 762 63 0
1952
+ 763 194 0
1953
+ 765 12 0
1954
+ 768 85 0
1955
+ 772 215 0
1956
+ 774 211 0
1957
+ 779 112 0
1958
+ 784 194 0
1959
+ 785 172 0
1960
+ 792 130 0
1961
+ 793 148 0
1962
+ 795 79 0
1963
+ 798 130 0
1964
+ 802 149 0
1965
+ 803 9 0
1966
+ 806 45 0
1967
+ 808 67 0
1968
+ 809 136 0
1969
+ 811 73 0
1970
+ 813 33 0
1971
+ 819 205 0
1972
+ 828 222 0
1973
+ 830 184 0
1974
+ 831 6 0
1975
+ 833 66 0
1976
+ 836 125 0
1977
+ 838 50 0
1978
+ 842 242 0
1979
+ 845 33 0
1980
+ 849 134 0
1981
+ 853 236 0
1982
+ 855 40 0
1983
+ 858 27 0
1984
+ 860 142 0
1985
+ 864 12 0
1986
+ 866 41 0
1987
+ 867 183 0
1988
+ 871 182 0
1989
+ 876 203 0
1990
+ 881 188 0
1991
+ 885 12 0
1992
+ 892 111 0
1993
+ 896 169 0
1994
+ 897 78 0
1995
+ 900 185 0
1996
+ 901 52 0
1997
+ 906 62 0
1998
+ 908 15 0
1999
+ 909 49 0
2000
+ 911 58 0
2001
+ 913 230 0
2002
+ 916 97 0
2003
+ 918 68 0
2004
+ 920 138 0
2005
+ 922 145 0
2006
+ 925 146 0
2007
+ 927 4 0
2008
+ 930 119 0
2009
+ 931 36 0
2010
+ 940 25 0
2011
+ 942 205 0
2012
+ 943 54 0
2013
+ 945 115 0
2014
+ 947 228 0
2015
+ 950 236 0
2016
+ 953 19 0
2017
+ 955 177 0
2018
+ 958 244 0
2019
+ 960 165 0
2020
+ 962 220 0
2021
+ 966 144 0
2022
+ 972 192 0
2023
+ 974 75 0
2024
+ 976 67 0
2025
+ 978 136 0
2026
+ 984 153 0
2027
+ 986 66 0
2028
+ 988 196 0
2029
+ 989 225 0
2030
+ 992 216 0
2031
+ 993 104 0
2032
+ 995 78 0
2033
+ 998 109 0
2034
+ 999 122 0
2035
+ 1003 163 0
2036
+ 1005 165 0
2037
+ 1007 16 0
2038
+ 1009 47 0
2039
+ 1012 238 0
2040
+ 1013 0 0
2041
+ 1018 146 0
2042
+ 1020 244 0
2043
+ 1021 241 0
2044
+ 1023 77 0
2045
+ 1025 9 0
2046
+ 1027 245 0
2047
+ 1030 118 0
2048
+ 1032 18 0
2049
+ 1034 39 0
2050
+ 1036 111 0
2051
+ 1044 35 0
2052
+ 1045 0 0
2053
+ 1048 63 0
2054
+ 1049 245 0
2055
+ 1053 94 0
2056
+ 1056 166 0
2057
+ 1061 193 0
2058
+ 1063 174 0
2059
+ 1068 220 0
2060
+ 1069 97 0
2061
+ 1072 34 0
2062
+ 1073 189 0
2063
+ 1076 114 0
2064
+ 1077 39 0
2065
+ 1079 109 0
2066
+ 1088 188 0
2067
+ 1090 59 0
2068
+ 1093 95 0
2069
+ 1096 171 0
2070
+ 1103 243 0
2071
+ 1107 204 0
2072
+ 1109 239 0
2073
+ 1111 19 0
2074
+ 1117 124 0
2075
+ 1120 110 0
2076
+ 1123 128 0
2077
+ 1128 47 0
2078
+ 1132 212 0
2079
+ 1133 188 0
2080
+ 1136 219 0
2081
+ 1142 138 0
2082
+ 1144 147 0
2083
+ 1145 240 0
2084
+ 1150 32 0
2085
+ 1152 114 0
2086
+ 1153 215 0
2087
+ 1155 216 0
2088
+ 1157 64 0
2089
+ 1160 203 0
2090
+ 1163 136 0
2091
+ 1165 62 0
2092
+ 1170 21 0
2093
+ 1175 120 0
2094
+ 1179 34 0
2095
+ 1181 54 0
2096
+ 1183 75 0
2097
+ 1186 48 0
2098
+ 1191 79 0
2099
+ 1194 214 0
2100
+ 1195 199 0
2101
+ 1197 210 0
2102
+ 1203 39 0
2103
+ NR 5 103
2104
+ 7 0 21
2105
+ 20 0 40
2106
+ 21 0 3
2107
+ 25 0 46
2108
+ 28 0 67
2109
+ 40 0 61
2110
+ 43 0 34
2111
+ 49 0 29
2112
+ 51 0 7
2113
+ 53 0 34
2114
+ 64 0 33
2115
+ 96 0 52
2116
+ 102 0 7
2117
+ 110 5 0
2118
+ 111 0 68
2119
+ 118 0 16
2120
+ 123 0 14
2121
+ 131 0 62
2122
+ 155 0 53
2123
+ 162 5 0
2124
+ 175 0 25
2125
+ 190 0 16
2126
+ 204 0 11
2127
+ 209 0 12
2128
+ 218 0 17
2129
+ 219 0 28
2130
+ 231 0 11
2131
+ 256 4 0
2132
+ 267 6 0
2133
+ 271 0 1
2134
+ 282 0 47
2135
+ 290 0 15
2136
+ 319 0 19
2137
+ 321 0 53
2138
+ 331 0 37
2139
+ 341 0 40
2140
+ 365 0 8
2141
+ 372 0 59
2142
+ 375 0 15
2143
+ 388 0 13
2144
+ 389 0 24
2145
+ 402 0 46
2146
+ 443 0 13
2147
+ 455 0 11
2148
+ 475 0 30
2149
+ 489 0 54
2150
+ 508 0 18
2151
+ 537 0 68
2152
+ 589 0 17
2153
+ 595 0 52
2154
+ 619 0 16
2155
+ 630 0 32
2156
+ 650 0 50
2157
+ 663 0 69
2158
+ 667 0 24
2159
+ 680 0 38
2160
+ 692 0 24
2161
+ 693 6 0
2162
+ 702 0 49
2163
+ 710 0 21
2164
+ 711 0 50
2165
+ 723 0 57
2166
+ 728 0 43
2167
+ 816 0 68
2168
+ 817 0 29
2169
+ 839 0 31
2170
+ 843 0 39
2171
+ 847 0 16
2172
+ 869 0 40
2173
+ 874 0 43
2174
+ 880 0 69
2175
+ 883 0 60
2176
+ 888 0 46
2177
+ 890 0 30
2178
+ 893 0 4
2179
+ 933 0 52
2180
+ 935 0 29
2181
+ 937 0 25
2182
+ 952 0 40
2183
+ 963 2 0
2184
+ 969 0 38
2185
+ 980 0 0
2186
+ 1016 0 47
2187
+ 1038 0 46
2188
+ 1041 0 59
2189
+ 1051 0 47
2190
+ 1060 0 63
2191
+ 1081 0 69
2192
+ 1086 0 27
2193
+ 1097 0 38
2194
+ 1105 0 33
2195
+ 1116 0 41
2196
+ 1125 0 54
2197
+ 1130 0 31
2198
+ 1137 0 17
2199
+ 1139 0 9
2200
+ 1148 0 48
2201
+ 1162 0 16
2202
+ 1172 0 27
2203
+ 1177 0 55
2204
+ 1189 0 1
2205
+ 1200 0 58
2206
+ 1202 0 61
2207
+ NR 6 56
2208
+ 7 0 30
2209
+ 20 0 49
2210
+ 21 0 12
2211
+ 25 0 55
2212
+ 37 9 0
2213
+ 43 0 43
2214
+ 49 0 38
2215
+ 51 0 16
2216
+ 53 0 43
2217
+ 64 0 42
2218
+ 96 0 61
2219
+ 102 0 16
2220
+ 108 10 0
2221
+ 110 0 4
2222
+ 118 0 25
2223
+ 123 0 23
2224
+ 145 15 0
2225
+ 155 0 62
2226
+ 162 0 4
2227
+ 175 0 34
2228
+ 190 0 25
2229
+ 204 0 20
2230
+ 208 3 0
2231
+ 209 0 21
2232
+ 218 0 26
2233
+ 219 0 37
2234
+ 231 0 20
2235
+ 256 0 5
2236
+ 267 0 3
2237
+ 271 0 10
2238
+ 282 0 56
2239
+ 287 0 0
2240
+ 290 0 24
2241
+ 319 0 28
2242
+ 321 0 62
2243
+ 331 0 46
2244
+ 341 0 49
2245
+ 365 0 17
2246
+ 372 0 68
2247
+ 375 0 24
2248
+ 388 0 22
2249
+ 389 0 33
2250
+ 398 11 0
2251
+ 402 0 55
2252
+ 443 0 22
2253
+ 455 0 20
2254
+ 465 24 0
2255
+ 474 7 0
2256
+ 475 0 39
2257
+ 489 0 63
2258
+ 508 0 27
2259
+ 523 12 0
2260
+ 526 23 0
2261
+ 580 7 0
2262
+ 589 0 26
2263
+ 595 0 61
2264
+ NR 7 67
2265
+ 7 0 63
2266
+ 21 0 45
2267
+ 37 0 24
2268
+ 51 0 49
2269
+ 102 0 49
2270
+ 108 0 23
2271
+ 110 0 37
2272
+ 115 4 0
2273
+ 118 0 58
2274
+ 123 0 56
2275
+ 145 0 18
2276
+ 162 0 37
2277
+ 175 0 67
2278
+ 190 0 58
2279
+ 204 0 53
2280
+ 208 0 30
2281
+ 209 0 54
2282
+ 218 0 59
2283
+ 231 0 53
2284
+ 256 0 38
2285
+ 267 0 36
2286
+ 271 0 43
2287
+ 287 0 33
2288
+ 290 0 57
2289
+ 319 0 61
2290
+ 361 7 0
2291
+ 365 0 50
2292
+ 375 0 57
2293
+ 388 0 55
2294
+ 389 0 66
2295
+ 398 0 22
2296
+ 427 2 0
2297
+ 443 0 55
2298
+ 455 0 53
2299
+ 465 0 9
2300
+ 469 7 0
2301
+ 474 0 26
2302
+ 493 1 0
2303
+ 508 0 60
2304
+ 523 0 21
2305
+ 526 0 10
2306
+ 580 0 26
2307
+ 589 0 59
2308
+ 619 0 58
2309
+ 632 0 17
2310
+ 667 0 66
2311
+ 676 0 12
2312
+ 692 0 66
2313
+ 693 0 36
2314
+ 710 0 63
2315
+ 770 7 0
2316
+ 776 0 14
2317
+ 823 5 0
2318
+ 847 0 58
2319
+ 893 0 46
2320
+ 924 0 25
2321
+ 937 0 67
2322
+ 963 0 40
2323
+ 980 0 42
2324
+ 1086 0 69
2325
+ 1102 0 33
2326
+ 1137 0 59
2327
+ 1139 0 51
2328
+ 1162 0 58
2329
+ 1172 0 69
2330
+ 1174 0 6
2331
+ 1189 0 43
2332
+ NR 8 109
2333
+ 8 40 0
2334
+ 13 26 0
2335
+ 22 16 0
2336
+ 26 0 24
2337
+ 27 0 37
2338
+ 30 31 0
2339
+ 33 26 0
2340
+ 36 47 0
2341
+ 38 0 48
2342
+ 50 27 0
2343
+ 52 0 14
2344
+ 57 42 0
2345
+ 60 0 62
2346
+ 63 0 26
2347
+ 65 30 0
2348
+ 67 0 7
2349
+ 69 0 62
2350
+ 71 0 23
2351
+ 73 51 0
2352
+ 76 37 0
2353
+ 81 42 0
2354
+ 95 44 0
2355
+ 101 0 43
2356
+ 107 0 38
2357
+ 112 0 35
2358
+ 116 0 33
2359
+ 117 0 13
2360
+ 124 0 51
2361
+ 130 17 0
2362
+ 132 5 0
2363
+ 146 0 55
2364
+ 152 21 0
2365
+ 156 0 46
2366
+ 161 0 63
2367
+ 163 20 0
2368
+ 169 10 0
2369
+ 176 0 41
2370
+ 178 21 0
2371
+ 192 34 0
2372
+ 203 11 0
2373
+ 207 0 61
2374
+ 210 0 33
2375
+ 217 0 10
2376
+ 220 1 0
2377
+ 224 30 0
2378
+ 233 40 0
2379
+ 255 0 69
2380
+ 260 44 0
2381
+ 266 0 8
2382
+ 268 0 52
2383
+ 272 0 61
2384
+ 276 40 0
2385
+ 281 22 0
2386
+ 300 0 38
2387
+ 309 0 47
2388
+ 316 0 23
2389
+ 317 54 0
2390
+ 320 55 0
2391
+ 322 0 49
2392
+ 332 0 16
2393
+ 340 41 0
2394
+ 342 0 51
2395
+ 344 0 6
2396
+ 348 33 0
2397
+ 359 41 0
2398
+ 366 4 0
2399
+ 371 0 30
2400
+ 376 0 32
2401
+ 380 0 50
2402
+ 384 0 7
2403
+ 385 0 50
2404
+ 387 0 60
2405
+ 390 0 13
2406
+ 394 0 45
2407
+ 397 0 56
2408
+ 400 6 0
2409
+ 401 0 14
2410
+ 409 28 0
2411
+ 418 0 16
2412
+ 429 0 6
2413
+ 437 42 0
2414
+ 444 17 0
2415
+ 448 0 16
2416
+ 456 0 64
2417
+ 463 9 0
2418
+ 466 0 26
2419
+ 470 0 49
2420
+ 471 0 15
2421
+ 473 0 15
2422
+ 476 20 0
2423
+ 477 10 0
2424
+ 488 0 66
2425
+ 490 6 0
2426
+ 491 0 17
2427
+ 494 0 6
2428
+ 507 0 38
2429
+ 512 34 0
2430
+ 517 24 0
2431
+ 524 0 60
2432
+ 525 0 26
2433
+ 527 0 52
2434
+ 530 0 55
2435
+ 538 54 0
2436
+ 551 24 0
2437
+ 554 0 6
2438
+ 577 50 0
2439
+ 579 0 40
2440
+ 586 41 0
2441
+ 590 0 57
2442
+ NR 9 130
2443
+ 19 10 0
2444
+ 26 61 0
2445
+ 27 48 0
2446
+ 38 37 0
2447
+ 44 12 0
2448
+ 52 71 0
2449
+ 60 23 0
2450
+ 63 59 0
2451
+ 67 78 0
2452
+ 69 23 0
2453
+ 71 62 0
2454
+ 101 42 0
2455
+ 107 47 0
2456
+ 109 10 0
2457
+ 112 50 0
2458
+ 116 52 0
2459
+ 117 72 0
2460
+ 124 34 0
2461
+ 146 30 0
2462
+ 156 39 0
2463
+ 161 22 0
2464
+ 176 44 0
2465
+ 189 8 0
2466
+ 193 6 0
2467
+ 207 24 0
2468
+ 210 52 0
2469
+ 217 75 0
2470
+ 255 16 0
2471
+ 266 77 0
2472
+ 268 33 0
2473
+ 272 24 0
2474
+ 285 8 0
2475
+ 288 13 0
2476
+ 300 47 0
2477
+ 309 38 0
2478
+ 316 62 0
2479
+ 322 36 0
2480
+ 329 0 0
2481
+ 332 69 0
2482
+ 342 34 0
2483
+ 344 79 0
2484
+ 362 6 0
2485
+ 364 12 0
2486
+ 371 55 0
2487
+ 376 53 0
2488
+ 380 35 0
2489
+ 384 78 0
2490
+ 385 35 0
2491
+ 387 25 0
2492
+ 390 72 0
2493
+ 394 40 0
2494
+ 397 29 0
2495
+ 401 71 0
2496
+ 408 7 0
2497
+ 418 69 0
2498
+ 428 14 0
2499
+ 429 79 0
2500
+ 448 69 0
2501
+ 456 21 0
2502
+ 466 59 0
2503
+ 470 36 0
2504
+ 471 70 0
2505
+ 473 70 0
2506
+ 488 19 0
2507
+ 491 68 0
2508
+ 494 79 0
2509
+ 507 47 0
2510
+ 524 25 0
2511
+ 525 59 0
2512
+ 527 33 0
2513
+ 530 30 0
2514
+ 546 8 0
2515
+ 554 79 0
2516
+ 579 45 0
2517
+ 590 28 0
2518
+ 596 3 0
2519
+ 610 64 0
2520
+ 629 78 0
2521
+ 631 34 0
2522
+ 664 37 0
2523
+ 668 57 0
2524
+ 691 47 0
2525
+ 694 39 0
2526
+ 709 33 0
2527
+ 718 69 0
2528
+ 724 35 0
2529
+ 727 67 0
2530
+ 730 40 0
2531
+ 769 24 0
2532
+ 775 70 0
2533
+ 781 63 0
2534
+ 788 26 0
2535
+ 789 56 0
2536
+ 815 23 0
2537
+ 818 34 0
2538
+ 825 46 0
2539
+ 840 45 0
2540
+ 848 77 0
2541
+ 851 79 0
2542
+ 862 39 0
2543
+ 873 41 0
2544
+ 877 57 0
2545
+ 884 65 0
2546
+ 887 70 0
2547
+ 889 30 0
2548
+ 894 53 0
2549
+ 923 39 0
2550
+ 938 60 0
2551
+ 941 67 0
2552
+ 951 25 0
2553
+ 964 47 0
2554
+ 970 43 0
2555
+ 979 78 0
2556
+ 1015 65 0
2557
+ 1019 32 0
2558
+ 1050 26 0
2559
+ 1059 72 0
2560
+ 1083 42 0
2561
+ 1098 58 0
2562
+ 1099 51 0
2563
+ 1101 46 0
2564
+ 1106 33 0
2565
+ 1129 58 0
2566
+ 1138 60 0
2567
+ 1140 57 0
2568
+ 1146 60 0
2569
+ 1167 26 0
2570
+ 1171 81 0
2571
+ 1173 30 0
2572
+ 1199 58 0
2573
+ NR 10 78
2574
+ 603 0 0
2575
+ 608 0 5
2576
+ 625 0 12
2577
+ 635 20 0
2578
+ 647 0 0
2579
+ 665 0 53
2580
+ 678 0 55
2581
+ 685 0 28
2582
+ 687 0 66
2583
+ 713 0 0
2584
+ 715 0 29
2585
+ 732 0 53
2586
+ 741 0 24
2587
+ 744 0 55
2588
+ 750 1 0
2589
+ 751 0 16
2590
+ 758 0 25
2591
+ 761 3 0
2592
+ 766 28 0
2593
+ 767 0 15
2594
+ 771 0 48
2595
+ 780 20 0
2596
+ 791 0 9
2597
+ 794 0 7
2598
+ 796 0 8
2599
+ 797 6 0
2600
+ 801 0 53
2601
+ 804 0 4
2602
+ 805 23 0
2603
+ 807 23 0
2604
+ 810 0 50
2605
+ 820 0 41
2606
+ 827 3 0
2607
+ 829 0 51
2608
+ 850 0 23
2609
+ 857 0 63
2610
+ 859 0 18
2611
+ 891 0 40
2612
+ 898 0 37
2613
+ 899 0 60
2614
+ 915 0 63
2615
+ 917 0 16
2616
+ 919 0 55
2617
+ 929 0 12
2618
+ 946 0 52
2619
+ 956 0 57
2620
+ 965 0 32
2621
+ 983 18 0
2622
+ 985 0 20
2623
+ 987 0 39
2624
+ 994 0 49
2625
+ 996 0 17
2626
+ 1000 0 0
2627
+ 1004 0 8
2628
+ 1017 0 32
2629
+ 1022 0 60
2630
+ 1062 0 50
2631
+ 1067 0 47
2632
+ 1070 0 30
2633
+ 1075 0 31
2634
+ 1080 0 22
2635
+ 1094 18 0
2636
+ 1095 0 57
2637
+ 1118 0 58
2638
+ 1119 28 0
2639
+ 1122 0 59
2640
+ 1124 0 37
2641
+ 1135 0 18
2642
+ 1141 0 42
2643
+ 1143 0 59
2644
+ 1151 0 0
2645
+ 1154 0 50
2646
+ 1156 0 62
2647
+ 1166 0 1
2648
+ 1184 0 65
2649
+ 1192 0 59
2650
+ 1198 0 31
2651
+ 1204 2 0
2652
+ NR 11 86
2653
+ 605 0 41
2654
+ 619 15 0
2655
+ 630 0 1
2656
+ 650 0 19
2657
+ 652 0 53
2658
+ 663 0 38
2659
+ 667 7 0
2660
+ 680 0 7
2661
+ 690 0 54
2662
+ 692 7 0
2663
+ 702 0 18
2664
+ 710 10 0
2665
+ 711 0 19
2666
+ 717 0 47
2667
+ 720 0 53
2668
+ 723 0 26
2669
+ 728 0 12
2670
+ 729 0 57
2671
+ 748 0 45
2672
+ 777 0 40
2673
+ 782 0 61
2674
+ 787 0 41
2675
+ 790 0 39
2676
+ 800 0 62
2677
+ 816 0 37
2678
+ 817 2 0
2679
+ 821 0 47
2680
+ 826 0 47
2681
+ 839 0 0
2682
+ 843 0 8
2683
+ 847 15 0
2684
+ 852 0 40
2685
+ 861 0 41
2686
+ 869 0 9
2687
+ 874 0 12
2688
+ 878 0 53
2689
+ 880 0 38
2690
+ 883 0 29
2691
+ 888 0 15
2692
+ 890 1 0
2693
+ 893 27 0
2694
+ 903 0 40
2695
+ 933 0 21
2696
+ 935 2 0
2697
+ 937 6 0
2698
+ 952 0 9
2699
+ 958 0 68
2700
+ 967 0 42
2701
+ 969 0 7
2702
+ 982 0 61
2703
+ 1001 0 39
2704
+ 1016 0 16
2705
+ 1020 0 68
2706
+ 1027 0 67
2707
+ 1038 0 15
2708
+ 1040 0 50
2709
+ 1041 0 28
2710
+ 1049 0 67
2711
+ 1051 0 16
2712
+ 1058 0 44
2713
+ 1060 0 32
2714
+ 1065 0 46
2715
+ 1081 0 38
2716
+ 1084 0 44
2717
+ 1086 4 0
2718
+ 1092 0 51
2719
+ 1097 0 7
2720
+ 1100 0 40
2721
+ 1103 0 69
2722
+ 1105 0 2
2723
+ 1114 0 44
2724
+ 1116 0 10
2725
+ 1121 0 58
2726
+ 1125 0 23
2727
+ 1130 0 0
2728
+ 1137 14 0
2729
+ 1139 22 0
2730
+ 1148 0 17
2731
+ 1162 15 0
2732
+ 1168 0 56
2733
+ 1172 4 0
2734
+ 1177 0 24
2735
+ 1188 0 47
2736
+ 1189 30 0
2737
+ 1200 0 27
2738
+ 1202 0 30
2739
+ NR 12 108
2740
+ 606 56 0
2741
+ 610 0 21
2742
+ 611 52 0
2743
+ 620 6 0
2744
+ 629 0 7
2745
+ 631 0 51
2746
+ 649 31 0
2747
+ 651 21 0
2748
+ 657 57 0
2749
+ 664 0 48
2750
+ 668 0 28
2751
+ 670 14 0
2752
+ 675 40 0
2753
+ 679 25 0
2754
+ 682 35 0
2755
+ 691 0 38
2756
+ 694 0 46
2757
+ 695 38 0
2758
+ 701 15 0
2759
+ 709 0 52
2760
+ 712 44 0
2761
+ 718 0 16
2762
+ 719 28 0
2763
+ 724 0 50
2764
+ 727 0 18
2765
+ 730 0 45
2766
+ 747 23 0
2767
+ 756 45 0
2768
+ 769 0 61
2769
+ 775 0 15
2770
+ 778 32 0
2771
+ 781 0 22
2772
+ 788 0 59
2773
+ 789 0 29
2774
+ 815 0 62
2775
+ 818 0 51
2776
+ 824 1 0
2777
+ 825 0 39
2778
+ 840 0 40
2779
+ 844 44 0
2780
+ 848 0 8
2781
+ 851 0 6
2782
+ 854 36 0
2783
+ 862 0 46
2784
+ 870 26 0
2785
+ 873 0 44
2786
+ 877 0 28
2787
+ 879 18 0
2788
+ 884 0 20
2789
+ 887 0 15
2790
+ 889 0 55
2791
+ 894 0 32
2792
+ 904 14 0
2793
+ 923 0 46
2794
+ 934 8 0
2795
+ 936 6 0
2796
+ 938 0 25
2797
+ 941 0 18
2798
+ 951 0 60
2799
+ 957 20 0
2800
+ 959 55 0
2801
+ 964 0 38
2802
+ 970 0 42
2803
+ 971 30 0
2804
+ 979 0 7
2805
+ 981 29 0
2806
+ 990 1 0
2807
+ 991 1 0
2808
+ 1002 19 0
2809
+ 1015 0 20
2810
+ 1019 0 53
2811
+ 1037 16 0
2812
+ 1039 18 0
2813
+ 1042 15 0
2814
+ 1050 0 59
2815
+ 1052 8 0
2816
+ 1057 49 0
2817
+ 1059 0 13
2818
+ 1066 11 0
2819
+ 1082 56 0
2820
+ 1083 0 43
2821
+ 1085 3 0
2822
+ 1091 35 0
2823
+ 1098 0 27
2824
+ 1099 0 34
2825
+ 1101 0 39
2826
+ 1104 21 0
2827
+ 1106 0 52
2828
+ 1110 10 0
2829
+ 1113 29 0
2830
+ 1115 5 0
2831
+ 1126 39 0
2832
+ 1129 0 27
2833
+ 1138 0 25
2834
+ 1140 0 28
2835
+ 1146 0 25
2836
+ 1147 4 0
2837
+ 1159 48 0
2838
+ 1161 50 0
2839
+ 1167 0 59
2840
+ 1171 0 4
2841
+ 1173 0 55
2842
+ 1178 49 0
2843
+ 1187 15 0
2844
+ 1190 12 0
2845
+ 1193 20 0
2846
+ 1196 3 0
2847
+ 1199 0 27
2848
+ NR 13 105
2849
+ 606 0 14
2850
+ 611 0 18
2851
+ 614 6 0
2852
+ 620 0 64
2853
+ 627 6 0
2854
+ 640 32 0
2855
+ 642 0 2
2856
+ 644 10 0
2857
+ 649 0 39
2858
+ 651 0 49
2859
+ 654 7 0
2860
+ 657 0 13
2861
+ 659 0 0
2862
+ 662 26 0
2863
+ 670 0 56
2864
+ 675 0 30
2865
+ 679 0 45
2866
+ 682 0 35
2867
+ 689 0 2
2868
+ 695 0 32
2869
+ 699 0 11
2870
+ 701 0 55
2871
+ 704 3 0
2872
+ 707 31 0
2873
+ 712 0 26
2874
+ 719 0 42
2875
+ 722 16 0
2876
+ 726 29 0
2877
+ 738 30 0
2878
+ 746 29 0
2879
+ 747 0 47
2880
+ 756 0 25
2881
+ 760 22 0
2882
+ 764 7 0
2883
+ 773 11 0
2884
+ 778 0 38
2885
+ 783 15 0
2886
+ 786 20 0
2887
+ 822 0 7
2888
+ 824 0 69
2889
+ 834 20 0
2890
+ 841 5 0
2891
+ 844 0 26
2892
+ 854 0 34
2893
+ 868 12 0
2894
+ 870 0 44
2895
+ 872 9 0
2896
+ 875 7 0
2897
+ 879 0 52
2898
+ 882 0 8
2899
+ 895 0 4
2900
+ 904 0 56
2901
+ 914 0 5
2902
+ 921 21 0
2903
+ 926 31 0
2904
+ 934 0 62
2905
+ 936 0 64
2906
+ 948 24 0
2907
+ 949 29 0
2908
+ 957 0 50
2909
+ 959 0 15
2910
+ 961 2 0
2911
+ 968 0 7
2912
+ 971 0 40
2913
+ 973 32 0
2914
+ 975 21 0
2915
+ 977 10 0
2916
+ 981 0 41
2917
+ 990 0 69
2918
+ 991 0 69
2919
+ 1002 0 51
2920
+ 1006 22 0
2921
+ 1028 15 0
2922
+ 1029 0 5
2923
+ 1035 10 0
2924
+ 1037 0 54
2925
+ 1039 0 52
2926
+ 1042 0 55
2927
+ 1052 0 62
2928
+ 1055 21 0
2929
+ 1057 0 21
2930
+ 1064 0 8
2931
+ 1066 0 59
2932
+ 1074 0 8
2933
+ 1082 0 14
2934
+ 1085 0 67
2935
+ 1091 0 35
2936
+ 1104 0 49
2937
+ 1108 0 0
2938
+ 1110 0 60
2939
+ 1113 0 41
2940
+ 1115 0 65
2941
+ 1126 0 31
2942
+ 1131 20 0
2943
+ 1134 30 0
2944
+ 1147 0 66
2945
+ 1159 0 22
2946
+ 1161 0 20
2947
+ 1164 5 0
2948
+ 1178 0 21
2949
+ 1187 0 55
2950
+ 1190 0 58
2951
+ 1193 0 50
2952
+ 1196 0 67
2953
+ 1201 8 0