nutshell-crm 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (692) hide show
  1. data/.gitignore +21 -0
  2. data/.rspec +2 -0
  3. data/Gemfile +4 -0
  4. data/README +0 -0
  5. data/Rakefile +2 -0
  6. data/lib/nutshell-crm.rb +78 -0
  7. data/lib/nutshell-crm/version.rb +3 -0
  8. data/nutshell-crm.gemspec +28 -0
  9. data/spec/nutshell-crm_spec.rb +212 -0
  10. data/spec/spec_helper.rb +8 -0
  11. data/vendor/bundle/bin/autospec +19 -0
  12. data/vendor/bundle/bin/htmldiff +21 -0
  13. data/vendor/bundle/bin/httparty +19 -0
  14. data/vendor/bundle/bin/ldiff +21 -0
  15. data/vendor/bundle/bin/rspec +19 -0
  16. data/vendor/bundle/gems/diff-lcs-1.1.3/.gemtest +0 -0
  17. data/vendor/bundle/gems/diff-lcs-1.1.3/History.rdoc +54 -0
  18. data/vendor/bundle/gems/diff-lcs-1.1.3/License.rdoc +38 -0
  19. data/vendor/bundle/gems/diff-lcs-1.1.3/Manifest.txt +27 -0
  20. data/vendor/bundle/gems/diff-lcs-1.1.3/README.rdoc +72 -0
  21. data/vendor/bundle/gems/diff-lcs-1.1.3/Rakefile +26 -0
  22. data/vendor/bundle/gems/diff-lcs-1.1.3/bin/htmldiff +32 -0
  23. data/vendor/bundle/gems/diff-lcs-1.1.3/bin/ldiff +6 -0
  24. data/vendor/bundle/gems/diff-lcs-1.1.3/diff-lcs.gemspec +51 -0
  25. data/vendor/bundle/gems/diff-lcs-1.1.3/docs/COPYING.txt +340 -0
  26. data/vendor/bundle/gems/diff-lcs-1.1.3/docs/artistic.html +289 -0
  27. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff-lcs.rb +5 -0
  28. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs.rb +1105 -0
  29. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/array.rb +21 -0
  30. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/block.rb +51 -0
  31. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/callbacks.rb +322 -0
  32. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/change.rb +169 -0
  33. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/htmldiff.rb +151 -0
  34. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/hunk.rb +242 -0
  35. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/ldiff.rb +210 -0
  36. data/vendor/bundle/gems/diff-lcs-1.1.3/lib/diff/lcs/string.rb +19 -0
  37. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/diff_spec.rb +35 -0
  38. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/lcs_spec.rb +36 -0
  39. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/patch_spec.rb +390 -0
  40. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/sdiff_spec.rb +204 -0
  41. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/spec_helper.rb +284 -0
  42. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/traverse_balanced_spec.rb +286 -0
  43. data/vendor/bundle/gems/diff-lcs-1.1.3/spec/traverse_sequences_spec.rb +83 -0
  44. data/vendor/bundle/gems/httparty-0.8.1/.gitignore +9 -0
  45. data/vendor/bundle/gems/httparty-0.8.1/Gemfile +8 -0
  46. data/vendor/bundle/gems/httparty-0.8.1/History +259 -0
  47. data/vendor/bundle/gems/httparty-0.8.1/MIT-LICENSE +20 -0
  48. data/vendor/bundle/gems/httparty-0.8.1/README.rdoc +54 -0
  49. data/vendor/bundle/gems/httparty-0.8.1/Rakefile +15 -0
  50. data/vendor/bundle/gems/httparty-0.8.1/bin/httparty +108 -0
  51. data/vendor/bundle/gems/httparty-0.8.1/cucumber.yml +1 -0
  52. data/vendor/bundle/gems/httparty-0.8.1/examples/aaws.rb +32 -0
  53. data/vendor/bundle/gems/httparty-0.8.1/examples/basic.rb +32 -0
  54. data/vendor/bundle/gems/httparty-0.8.1/examples/crack.rb +19 -0
  55. data/vendor/bundle/gems/httparty-0.8.1/examples/custom_parsers.rb +67 -0
  56. data/vendor/bundle/gems/httparty-0.8.1/examples/delicious.rb +37 -0
  57. data/vendor/bundle/gems/httparty-0.8.1/examples/google.rb +16 -0
  58. data/vendor/bundle/gems/httparty-0.8.1/examples/rubyurl.rb +14 -0
  59. data/vendor/bundle/gems/httparty-0.8.1/examples/tripit_sign_in.rb +33 -0
  60. data/vendor/bundle/gems/httparty-0.8.1/examples/twitter.rb +31 -0
  61. data/vendor/bundle/gems/httparty-0.8.1/examples/whoismyrep.rb +10 -0
  62. data/vendor/bundle/gems/httparty-0.8.1/features/basic_authentication.feature +20 -0
  63. data/vendor/bundle/gems/httparty-0.8.1/features/command_line.feature +7 -0
  64. data/vendor/bundle/gems/httparty-0.8.1/features/deals_with_http_error_codes.feature +26 -0
  65. data/vendor/bundle/gems/httparty-0.8.1/features/digest_authentication.feature +20 -0
  66. data/vendor/bundle/gems/httparty-0.8.1/features/handles_compressed_responses.feature +19 -0
  67. data/vendor/bundle/gems/httparty-0.8.1/features/handles_multiple_formats.feature +34 -0
  68. data/vendor/bundle/gems/httparty-0.8.1/features/steps/env.rb +22 -0
  69. data/vendor/bundle/gems/httparty-0.8.1/features/steps/httparty_response_steps.rb +26 -0
  70. data/vendor/bundle/gems/httparty-0.8.1/features/steps/httparty_steps.rb +27 -0
  71. data/vendor/bundle/gems/httparty-0.8.1/features/steps/mongrel_helper.rb +94 -0
  72. data/vendor/bundle/gems/httparty-0.8.1/features/steps/remote_service_steps.rb +69 -0
  73. data/vendor/bundle/gems/httparty-0.8.1/features/supports_redirection.feature +22 -0
  74. data/vendor/bundle/gems/httparty-0.8.1/features/supports_timeout_option.feature +13 -0
  75. data/vendor/bundle/gems/httparty-0.8.1/httparty.gemspec +24 -0
  76. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty.rb +452 -0
  77. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/cookie_hash.rb +22 -0
  78. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/core_extensions.rb +9 -0
  79. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/exceptions.rb +26 -0
  80. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/hash_conversions.rb +51 -0
  81. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/module_inheritable_attributes.rb +34 -0
  82. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/net_digest_auth.rb +71 -0
  83. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/parser.rb +141 -0
  84. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/request.rb +257 -0
  85. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/response.rb +85 -0
  86. data/vendor/bundle/gems/httparty-0.8.1/lib/httparty/version.rb +3 -0
  87. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/delicious.xml +23 -0
  88. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/empty.xml +0 -0
  89. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/google.html +3 -0
  90. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generate.sh +29 -0
  91. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generated/1fe462c2.0 +16 -0
  92. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generated/bogushost.crt +13 -0
  93. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generated/ca.crt +16 -0
  94. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generated/ca.key +15 -0
  95. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generated/selfsigned.crt +14 -0
  96. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generated/server.crt +13 -0
  97. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/generated/server.key +15 -0
  98. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/ssl/openssl-exts.cnf +9 -0
  99. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/twitter.json +1 -0
  100. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/twitter.xml +403 -0
  101. data/vendor/bundle/gems/httparty-0.8.1/spec/fixtures/undefined_method_add_node_for_nil.xml +2 -0
  102. data/vendor/bundle/gems/httparty-0.8.1/spec/httparty/cookie_hash_spec.rb +71 -0
  103. data/vendor/bundle/gems/httparty-0.8.1/spec/httparty/net_digest_auth_spec.rb +93 -0
  104. data/vendor/bundle/gems/httparty-0.8.1/spec/httparty/parser_spec.rb +155 -0
  105. data/vendor/bundle/gems/httparty-0.8.1/spec/httparty/request_spec.rb +544 -0
  106. data/vendor/bundle/gems/httparty-0.8.1/spec/httparty/response_spec.rb +193 -0
  107. data/vendor/bundle/gems/httparty-0.8.1/spec/httparty/ssl_spec.rb +54 -0
  108. data/vendor/bundle/gems/httparty-0.8.1/spec/httparty_spec.rb +621 -0
  109. data/vendor/bundle/gems/httparty-0.8.1/spec/spec.opts +3 -0
  110. data/vendor/bundle/gems/httparty-0.8.1/spec/spec_helper.rb +22 -0
  111. data/vendor/bundle/gems/httparty-0.8.1/spec/support/ssl_test_helper.rb +25 -0
  112. data/vendor/bundle/gems/httparty-0.8.1/spec/support/ssl_test_server.rb +69 -0
  113. data/vendor/bundle/gems/httparty-0.8.1/spec/support/stub_response.rb +30 -0
  114. data/vendor/bundle/gems/httparty-0.8.1/website/css/common.css +47 -0
  115. data/vendor/bundle/gems/httparty-0.8.1/website/index.html +73 -0
  116. data/vendor/bundle/gems/json-1.6.3/.gitignore +8 -0
  117. data/vendor/bundle/gems/json-1.6.3/.travis.yml +15 -0
  118. data/vendor/bundle/gems/json-1.6.3/CHANGES +223 -0
  119. data/vendor/bundle/gems/json-1.6.3/COPYING +58 -0
  120. data/vendor/bundle/gems/json-1.6.3/COPYING-json-jruby +57 -0
  121. data/vendor/bundle/gems/json-1.6.3/GPL +340 -0
  122. data/vendor/bundle/gems/json-1.6.3/Gemfile +11 -0
  123. data/vendor/bundle/gems/json-1.6.3/README-json-jruby.markdown +33 -0
  124. data/vendor/bundle/gems/json-1.6.3/README.rdoc +358 -0
  125. data/vendor/bundle/gems/json-1.6.3/Rakefile +408 -0
  126. data/vendor/bundle/gems/json-1.6.3/TODO +1 -0
  127. data/vendor/bundle/gems/json-1.6.3/VERSION +1 -0
  128. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/.keep +0 -0
  129. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkComparison.log +52 -0
  130. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat +1000 -0
  131. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat +1001 -0
  132. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat +900 -0
  133. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat +901 -0
  134. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat +1000 -0
  135. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe.dat +1001 -0
  136. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt.log +261 -0
  137. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast-autocorrelation.dat +1000 -0
  138. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast.dat +1001 -0
  139. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty-autocorrelation.dat +1000 -0
  140. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat +1001 -0
  141. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat +1000 -0
  142. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat +1001 -0
  143. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log +262 -0
  144. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat +1000 -0
  145. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat +1001 -0
  146. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails.log +82 -0
  147. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log +34 -0
  148. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat +900 -0
  149. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat +901 -0
  150. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt.log +81 -0
  151. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat +1000 -0
  152. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat +1001 -0
  153. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log +82 -0
  154. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat +1000 -0
  155. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat +1001 -0
  156. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails.log +82 -0
  157. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat +1000 -0
  158. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat +1001 -0
  159. data/vendor/bundle/gems/json-1.6.3/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML.log +82 -0
  160. data/vendor/bundle/gems/json-1.6.3/benchmarks/data/.keep +0 -0
  161. data/vendor/bundle/gems/json-1.6.3/benchmarks/generator2_benchmark.rb +222 -0
  162. data/vendor/bundle/gems/json-1.6.3/benchmarks/generator_benchmark.rb +224 -0
  163. data/vendor/bundle/gems/json-1.6.3/benchmarks/ohai.json +1216 -0
  164. data/vendor/bundle/gems/json-1.6.3/benchmarks/ohai.ruby +1 -0
  165. data/vendor/bundle/gems/json-1.6.3/benchmarks/parser2_benchmark.rb +251 -0
  166. data/vendor/bundle/gems/json-1.6.3/benchmarks/parser_benchmark.rb +259 -0
  167. data/vendor/bundle/gems/json-1.6.3/data/example.json +1 -0
  168. data/vendor/bundle/gems/json-1.6.3/data/index.html +38 -0
  169. data/vendor/bundle/gems/json-1.6.3/data/prototype.js +4184 -0
  170. data/vendor/bundle/gems/json-1.6.3/diagrams/.keep +0 -0
  171. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/fbuffer/fbuffer.h +156 -0
  172. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/generator/Makefile +187 -0
  173. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/generator/extconf.rb +13 -0
  174. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/generator/generator.bundle +0 -0
  175. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/generator/generator.c +1384 -0
  176. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/generator/generator.h +161 -0
  177. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/generator/generator.o +0 -0
  178. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/json/ext/generator.bundle +0 -0
  179. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/json/ext/parser.bundle +0 -0
  180. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/parser/Makefile +187 -0
  181. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/parser/extconf.rb +13 -0
  182. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/parser/parser.bundle +0 -0
  183. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/parser/parser.c +2197 -0
  184. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/parser/parser.h +77 -0
  185. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/parser/parser.o +0 -0
  186. data/vendor/bundle/gems/json-1.6.3/ext/json/ext/parser/parser.rl +920 -0
  187. data/vendor/bundle/gems/json-1.6.3/install.rb +19 -0
  188. data/vendor/bundle/gems/json-1.6.3/java/lib/bytelist-1.0.6.jar +0 -0
  189. data/vendor/bundle/gems/json-1.6.3/java/lib/jcodings.jar +0 -0
  190. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/ByteListTranscoder.java +167 -0
  191. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/Generator.java +437 -0
  192. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/GeneratorMethods.java +232 -0
  193. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/GeneratorService.java +43 -0
  194. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/GeneratorState.java +522 -0
  195. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/OptionsReader.java +119 -0
  196. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/Parser.java +2589 -0
  197. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/Parser.rl +913 -0
  198. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/ParserService.java +35 -0
  199. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/RuntimeInfo.java +121 -0
  200. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/StringDecoder.java +166 -0
  201. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/StringEncoder.java +106 -0
  202. data/vendor/bundle/gems/json-1.6.3/java/src/json/ext/Utils.java +89 -0
  203. data/vendor/bundle/gems/json-1.6.3/json-java.gemspec +22 -0
  204. data/vendor/bundle/gems/json-1.6.3/json.gemspec +40 -0
  205. data/vendor/bundle/gems/json-1.6.3/json_pure.gemspec +42 -0
  206. data/vendor/bundle/gems/json-1.6.3/lib/json.rb +62 -0
  207. data/vendor/bundle/gems/json-1.6.3/lib/json/add/bigdecimal.rb +21 -0
  208. data/vendor/bundle/gems/json-1.6.3/lib/json/add/complex.rb +22 -0
  209. data/vendor/bundle/gems/json-1.6.3/lib/json/add/core.rb +11 -0
  210. data/vendor/bundle/gems/json-1.6.3/lib/json/add/date.rb +34 -0
  211. data/vendor/bundle/gems/json-1.6.3/lib/json/add/date_time.rb +50 -0
  212. data/vendor/bundle/gems/json-1.6.3/lib/json/add/exception.rb +31 -0
  213. data/vendor/bundle/gems/json-1.6.3/lib/json/add/ostruct.rb +31 -0
  214. data/vendor/bundle/gems/json-1.6.3/lib/json/add/range.rb +29 -0
  215. data/vendor/bundle/gems/json-1.6.3/lib/json/add/rational.rb +22 -0
  216. data/vendor/bundle/gems/json-1.6.3/lib/json/add/regexp.rb +30 -0
  217. data/vendor/bundle/gems/json-1.6.3/lib/json/add/struct.rb +30 -0
  218. data/vendor/bundle/gems/json-1.6.3/lib/json/add/symbol.rb +25 -0
  219. data/vendor/bundle/gems/json-1.6.3/lib/json/add/time.rb +35 -0
  220. data/vendor/bundle/gems/json-1.6.3/lib/json/common.rb +470 -0
  221. data/vendor/bundle/gems/json-1.6.3/lib/json/ext.rb +21 -0
  222. data/vendor/bundle/gems/json-1.6.3/lib/json/ext/.keep +0 -0
  223. data/vendor/bundle/gems/json-1.6.3/lib/json/pure.rb +21 -0
  224. data/vendor/bundle/gems/json-1.6.3/lib/json/pure/generator.rb +468 -0
  225. data/vendor/bundle/gems/json-1.6.3/lib/json/pure/parser.rb +359 -0
  226. data/vendor/bundle/gems/json-1.6.3/lib/json/version.rb +8 -0
  227. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail1.json +1 -0
  228. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail10.json +1 -0
  229. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail11.json +1 -0
  230. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail12.json +1 -0
  231. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail13.json +1 -0
  232. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail14.json +1 -0
  233. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail18.json +1 -0
  234. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail19.json +1 -0
  235. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail2.json +1 -0
  236. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail20.json +1 -0
  237. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail21.json +1 -0
  238. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail22.json +1 -0
  239. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail23.json +1 -0
  240. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail24.json +1 -0
  241. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail25.json +1 -0
  242. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail27.json +2 -0
  243. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail28.json +2 -0
  244. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail3.json +1 -0
  245. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail4.json +1 -0
  246. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail5.json +1 -0
  247. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail6.json +1 -0
  248. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail7.json +1 -0
  249. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail8.json +1 -0
  250. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/fail9.json +1 -0
  251. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/pass1.json +56 -0
  252. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/pass15.json +1 -0
  253. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/pass16.json +1 -0
  254. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/pass17.json +1 -0
  255. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/pass2.json +1 -0
  256. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/pass26.json +1 -0
  257. data/vendor/bundle/gems/json-1.6.3/tests/fixtures/pass3.json +6 -0
  258. data/vendor/bundle/gems/json-1.6.3/tests/setup_variant.rb +11 -0
  259. data/vendor/bundle/gems/json-1.6.3/tests/test_json.rb +476 -0
  260. data/vendor/bundle/gems/json-1.6.3/tests/test_json_addition.rb +188 -0
  261. data/vendor/bundle/gems/json-1.6.3/tests/test_json_encoding.rb +65 -0
  262. data/vendor/bundle/gems/json-1.6.3/tests/test_json_fixtures.rb +35 -0
  263. data/vendor/bundle/gems/json-1.6.3/tests/test_json_generate.rb +249 -0
  264. data/vendor/bundle/gems/json-1.6.3/tests/test_json_string_matching.rb +40 -0
  265. data/vendor/bundle/gems/json-1.6.3/tests/test_json_unicode.rb +72 -0
  266. data/vendor/bundle/gems/json-1.6.3/tools/fuzz.rb +139 -0
  267. data/vendor/bundle/gems/json-1.6.3/tools/server.rb +62 -0
  268. data/vendor/bundle/gems/multi_json-1.0.4/.document +5 -0
  269. data/vendor/bundle/gems/multi_json-1.0.4/.rspec +3 -0
  270. data/vendor/bundle/gems/multi_json-1.0.4/.travis.yml +7 -0
  271. data/vendor/bundle/gems/multi_json-1.0.4/Gemfile +6 -0
  272. data/vendor/bundle/gems/multi_json-1.0.4/LICENSE.md +20 -0
  273. data/vendor/bundle/gems/multi_json-1.0.4/README.md +94 -0
  274. data/vendor/bundle/gems/multi_json-1.0.4/Rakefile +25 -0
  275. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json.rb +85 -0
  276. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/engines/json_common.rb +27 -0
  277. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/engines/json_gem.rb +12 -0
  278. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/engines/json_pure.rb +12 -0
  279. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/engines/ok_json.rb +48 -0
  280. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/engines/yajl.rb +18 -0
  281. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/vendor/ok_json.rb +587 -0
  282. data/vendor/bundle/gems/multi_json-1.0.4/lib/multi_json/version.rb +3 -0
  283. data/vendor/bundle/gems/multi_json-1.0.4/multi_json.gemspec +22 -0
  284. data/vendor/bundle/gems/multi_json-1.0.4/spec/helper.rb +35 -0
  285. data/vendor/bundle/gems/multi_json-1.0.4/spec/multi_json_spec.rb +178 -0
  286. data/vendor/bundle/gems/multi_xml-0.4.1/.gemtest +0 -0
  287. data/vendor/bundle/gems/multi_xml-0.4.1/.gitignore +10 -0
  288. data/vendor/bundle/gems/multi_xml-0.4.1/.rspec +3 -0
  289. data/vendor/bundle/gems/multi_xml-0.4.1/.travis.yml +7 -0
  290. data/vendor/bundle/gems/multi_xml-0.4.1/.yardopts +5 -0
  291. data/vendor/bundle/gems/multi_xml-0.4.1/Gemfile +9 -0
  292. data/vendor/bundle/gems/multi_xml-0.4.1/LICENSE.md +20 -0
  293. data/vendor/bundle/gems/multi_xml-0.4.1/README.md +113 -0
  294. data/vendor/bundle/gems/multi_xml-0.4.1/Rakefile +23 -0
  295. data/vendor/bundle/gems/multi_xml-0.4.1/lib/multi_xml.rb +237 -0
  296. data/vendor/bundle/gems/multi_xml-0.4.1/lib/multi_xml/parsers/libxml.rb +30 -0
  297. data/vendor/bundle/gems/multi_xml-0.4.1/lib/multi_xml/parsers/libxml2_parser.rb +66 -0
  298. data/vendor/bundle/gems/multi_xml-0.4.1/lib/multi_xml/parsers/nokogiri.rb +32 -0
  299. data/vendor/bundle/gems/multi_xml-0.4.1/lib/multi_xml/parsers/ox.rb +97 -0
  300. data/vendor/bundle/gems/multi_xml-0.4.1/lib/multi_xml/parsers/rexml.rb +113 -0
  301. data/vendor/bundle/gems/multi_xml-0.4.1/lib/multi_xml/version.rb +3 -0
  302. data/vendor/bundle/gems/multi_xml-0.4.1/multi_xml.gemspec +24 -0
  303. data/vendor/bundle/gems/multi_xml-0.4.1/spec/helper.rb +3 -0
  304. data/vendor/bundle/gems/multi_xml-0.4.1/spec/multi_xml_spec.rb +41 -0
  305. data/vendor/bundle/gems/multi_xml-0.4.1/spec/parser_shared_example.rb +552 -0
  306. data/vendor/bundle/gems/multi_xml-0.4.1/spec/speed.rb +63 -0
  307. data/vendor/bundle/gems/rspec-2.7.0/.document +2 -0
  308. data/vendor/bundle/gems/rspec-2.7.0/.gitignore +8 -0
  309. data/vendor/bundle/gems/rspec-2.7.0/Gemfile +7 -0
  310. data/vendor/bundle/gems/rspec-2.7.0/License.txt +22 -0
  311. data/vendor/bundle/gems/rspec-2.7.0/README.markdown +47 -0
  312. data/vendor/bundle/gems/rspec-2.7.0/Rakefile +30 -0
  313. data/vendor/bundle/gems/rspec-2.7.0/lib/rspec.rb +4 -0
  314. data/vendor/bundle/gems/rspec-2.7.0/lib/rspec/version.rb +5 -0
  315. data/vendor/bundle/gems/rspec-2.7.0/rspec.gemspec +33 -0
  316. data/vendor/bundle/gems/rspec-core-2.7.1/README.md +68 -0
  317. data/vendor/bundle/gems/rspec-core-2.7.1/exe/autospec +13 -0
  318. data/vendor/bundle/gems/rspec-core-2.7.1/exe/rspec +25 -0
  319. data/vendor/bundle/gems/rspec-core-2.7.1/features/Autotest.md +38 -0
  320. data/vendor/bundle/gems/rspec-core-2.7.1/features/README.md +17 -0
  321. data/vendor/bundle/gems/rspec-core-2.7.1/features/Upgrade.md +364 -0
  322. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/README.md +28 -0
  323. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/configure.feature +22 -0
  324. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/example_name_option.feature +86 -0
  325. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/exit_status.feature +83 -0
  326. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/format_option.feature +81 -0
  327. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/line_number_appended_to_path.feature +140 -0
  328. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/line_number_option.feature +58 -0
  329. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/pattern_option.feature +31 -0
  330. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/rake_task.feature +68 -0
  331. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/ruby.feature +22 -0
  332. data/vendor/bundle/gems/rspec-core-2.7.1/features/command_line/tag.feature +90 -0
  333. data/vendor/bundle/gems/rspec-core-2.7.1/features/configuration/alias_example_to.feature +48 -0
  334. data/vendor/bundle/gems/rspec-core-2.7.1/features/configuration/custom_settings.feature +84 -0
  335. data/vendor/bundle/gems/rspec-core-2.7.1/features/configuration/default_path.feature +38 -0
  336. data/vendor/bundle/gems/rspec-core-2.7.1/features/configuration/fail_fast.feature +77 -0
  337. data/vendor/bundle/gems/rspec-core-2.7.1/features/configuration/read_options_from_file.feature +87 -0
  338. data/vendor/bundle/gems/rspec-core-2.7.1/features/example_groups/basic_structure.feature +55 -0
  339. data/vendor/bundle/gems/rspec-core-2.7.1/features/example_groups/shared_context.feature +74 -0
  340. data/vendor/bundle/gems/rspec-core-2.7.1/features/example_groups/shared_examples.feature +204 -0
  341. data/vendor/bundle/gems/rspec-core-2.7.1/features/expectation_framework_integration/configure_expectation_framework.feature +73 -0
  342. data/vendor/bundle/gems/rspec-core-2.7.1/features/filtering/exclusion_filters.feature +139 -0
  343. data/vendor/bundle/gems/rspec-core-2.7.1/features/filtering/if_and_unless.feature +168 -0
  344. data/vendor/bundle/gems/rspec-core-2.7.1/features/filtering/inclusion_filters.feature +105 -0
  345. data/vendor/bundle/gems/rspec-core-2.7.1/features/filtering/run_all_when_everything_filtered.feature +46 -0
  346. data/vendor/bundle/gems/rspec-core-2.7.1/features/formatters/custom_formatter.feature +36 -0
  347. data/vendor/bundle/gems/rspec-core-2.7.1/features/formatters/text_formatter.feature +46 -0
  348. data/vendor/bundle/gems/rspec-core-2.7.1/features/helper_methods/arbitrary_methods.feature +40 -0
  349. data/vendor/bundle/gems/rspec-core-2.7.1/features/helper_methods/let.feature +50 -0
  350. data/vendor/bundle/gems/rspec-core-2.7.1/features/helper_methods/modules.feature +149 -0
  351. data/vendor/bundle/gems/rspec-core-2.7.1/features/hooks/around_hooks.feature +343 -0
  352. data/vendor/bundle/gems/rspec-core-2.7.1/features/hooks/before_and_after_hooks.feature +423 -0
  353. data/vendor/bundle/gems/rspec-core-2.7.1/features/hooks/filtering.feature +234 -0
  354. data/vendor/bundle/gems/rspec-core-2.7.1/features/metadata/current_example.feature +17 -0
  355. data/vendor/bundle/gems/rspec-core-2.7.1/features/metadata/described_class.feature +17 -0
  356. data/vendor/bundle/gems/rspec-core-2.7.1/features/metadata/user_defined.feature +113 -0
  357. data/vendor/bundle/gems/rspec-core-2.7.1/features/mock_framework_integration/use_any_framework.feature +106 -0
  358. data/vendor/bundle/gems/rspec-core-2.7.1/features/mock_framework_integration/use_flexmock.feature +96 -0
  359. data/vendor/bundle/gems/rspec-core-2.7.1/features/mock_framework_integration/use_mocha.feature +97 -0
  360. data/vendor/bundle/gems/rspec-core-2.7.1/features/mock_framework_integration/use_rr.feature +98 -0
  361. data/vendor/bundle/gems/rspec-core-2.7.1/features/mock_framework_integration/use_rspec.feature +97 -0
  362. data/vendor/bundle/gems/rspec-core-2.7.1/features/pending/pending_examples.feature +229 -0
  363. data/vendor/bundle/gems/rspec-core-2.7.1/features/spec_files/arbitrary_file_suffix.feature +13 -0
  364. data/vendor/bundle/gems/rspec-core-2.7.1/features/step_definitions/additional_cli_steps.rb +30 -0
  365. data/vendor/bundle/gems/rspec-core-2.7.1/features/subject/attribute_of_subject.feature +122 -0
  366. data/vendor/bundle/gems/rspec-core-2.7.1/features/subject/explicit_subject.feature +78 -0
  367. data/vendor/bundle/gems/rspec-core-2.7.1/features/subject/implicit_receiver.feature +29 -0
  368. data/vendor/bundle/gems/rspec-core-2.7.1/features/subject/implicit_subject.feature +30 -0
  369. data/vendor/bundle/gems/rspec-core-2.7.1/features/support/env.rb +5 -0
  370. data/vendor/bundle/gems/rspec-core-2.7.1/lib/autotest/discover.rb +1 -0
  371. data/vendor/bundle/gems/rspec-core-2.7.1/lib/autotest/rspec2.rb +73 -0
  372. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/autorun.rb +2 -0
  373. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core.rb +81 -0
  374. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/backward_compatibility.rb +63 -0
  375. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/command_line.rb +32 -0
  376. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/command_line_configuration.rb +62 -0
  377. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/configuration.rb +558 -0
  378. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/configuration_options.rb +139 -0
  379. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/deprecation.rb +48 -0
  380. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/drb_command_line.rb +23 -0
  381. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/dsl.rb +11 -0
  382. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/errors.rb +13 -0
  383. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/example.rb +178 -0
  384. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/example_group.rb +348 -0
  385. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/expecting/with_rspec.rb +9 -0
  386. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/expecting/with_stdlib.rb +9 -0
  387. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/extensions.rb +3 -0
  388. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/extensions/instance_eval_with_args.rb +39 -0
  389. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/extensions/kernel.rb +9 -0
  390. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/extensions/module_eval_with_args.rb +34 -0
  391. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/base_formatter.rb +172 -0
  392. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/base_text_formatter.rb +185 -0
  393. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/documentation_formatter.rb +71 -0
  394. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/helpers.rb +24 -0
  395. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/html_formatter.rb +458 -0
  396. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/progress_formatter.rb +32 -0
  397. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/snippet_extractor.rb +58 -0
  398. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/formatters/text_mate_formatter.rb +34 -0
  399. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/hooks.rb +160 -0
  400. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/let.rb +101 -0
  401. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/load_path.rb +3 -0
  402. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/metadata.rb +229 -0
  403. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/metadata_hash_builder.rb +93 -0
  404. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/mocking/with_absolutely_nothing.rb +11 -0
  405. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/mocking/with_flexmock.rb +27 -0
  406. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/mocking/with_mocha.rb +23 -0
  407. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/mocking/with_rr.rb +27 -0
  408. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/mocking/with_rspec.rb +23 -0
  409. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/option_parser.rb +147 -0
  410. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/pending.rb +38 -0
  411. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/rake_task.rb +201 -0
  412. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/reporter.rb +78 -0
  413. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/ruby_project.rb +44 -0
  414. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/runner.rb +86 -0
  415. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/shared_context.rb +16 -0
  416. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/shared_example_group.rb +67 -0
  417. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/subject.rb +175 -0
  418. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/version.rb +7 -0
  419. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/world.rb +150 -0
  420. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/monkey.rb +1 -0
  421. data/vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/monkey/spork/test_framework/rspec.rb +8 -0
  422. data/vendor/bundle/gems/rspec-core-2.7.1/spec/autotest/discover_spec.rb +19 -0
  423. data/vendor/bundle/gems/rspec-core-2.7.1/spec/autotest/failed_results_re_spec.rb +45 -0
  424. data/vendor/bundle/gems/rspec-core-2.7.1/spec/autotest/rspec_spec.rb +123 -0
  425. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/command_line_configuration_spec.rb +26 -0
  426. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/command_line_spec.rb +169 -0
  427. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/command_line_spec_output.txt +0 -0
  428. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/configuration_options_spec.rb +437 -0
  429. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/configuration_spec.rb +920 -0
  430. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/deprecations_spec.rb +66 -0
  431. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/drb_command_line_spec.rb +124 -0
  432. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/example_group_spec.rb +1046 -0
  433. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/example_spec.rb +289 -0
  434. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/base_formatter_spec.rb +80 -0
  435. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/base_text_formatter_spec.rb +344 -0
  436. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/documentation_formatter_spec.rb +66 -0
  437. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/helpers_spec.rb +46 -0
  438. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html +462 -0
  439. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/html_formatted-1.8.7.html +399 -0
  440. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/html_formatted-1.9.2.html +406 -0
  441. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/html_formatted-1.9.3.html +406 -0
  442. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/html_formatter_spec.rb +81 -0
  443. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/progress_formatter_spec.rb +30 -0
  444. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/snippet_extractor_spec.rb +18 -0
  445. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html +462 -0
  446. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html +399 -0
  447. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html +406 -0
  448. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/text_mate_formatted-1.9.3.html +406 -0
  449. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/formatters/text_mate_formatter_spec.rb +84 -0
  450. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/hooks_filtering_spec.rb +227 -0
  451. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/hooks_spec.rb +143 -0
  452. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/kernel_extensions_spec.rb +9 -0
  453. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/let_spec.rb +55 -0
  454. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/metadata_spec.rb +383 -0
  455. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/option_parser_spec.rb +86 -0
  456. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/pending_example_spec.rb +187 -0
  457. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/rake_task_spec.rb +138 -0
  458. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/reporter_spec.rb +86 -0
  459. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/resources/a_bar.rb +0 -0
  460. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/resources/a_foo.rb +0 -0
  461. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/resources/a_spec.rb +1 -0
  462. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/resources/custom_example_group_runner.rb +14 -0
  463. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/resources/formatter_specs.rb +60 -0
  464. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/resources/utf8_encoded.rb +8 -0
  465. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/rspec_matchers_spec.rb +45 -0
  466. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/ruby_project_spec.rb +24 -0
  467. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/runner_spec.rb +82 -0
  468. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/shared_context_spec.rb +30 -0
  469. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/shared_example_group_spec.rb +84 -0
  470. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/subject_spec.rb +199 -0
  471. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core/world_spec.rb +315 -0
  472. data/vendor/bundle/gems/rspec-core-2.7.1/spec/rspec/core_spec.rb +31 -0
  473. data/vendor/bundle/gems/rspec-core-2.7.1/spec/spec_helper.rb +92 -0
  474. data/vendor/bundle/gems/rspec-core-2.7.1/spec/support/matchers.rb +75 -0
  475. data/vendor/bundle/gems/rspec-core-2.7.1/spec/support/shared_example_groups.rb +41 -0
  476. data/vendor/bundle/gems/rspec-core-2.7.1/spec/support/spec_files.rb +44 -0
  477. data/vendor/bundle/gems/rspec-expectations-2.7.0/README.md +24 -0
  478. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/README.markdown +49 -0
  479. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/Upgrade.md +53 -0
  480. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/README.md +73 -0
  481. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/be.feature +135 -0
  482. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/be_within.feature +43 -0
  483. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/cover.feature +45 -0
  484. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/equality.feature +145 -0
  485. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/exist.feature +43 -0
  486. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/expect_change.feature +59 -0
  487. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/expect_error.feature +138 -0
  488. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/have.feature +103 -0
  489. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/include.feature +121 -0
  490. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/match.feature +50 -0
  491. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/operators.feature +221 -0
  492. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/predicates.feature +128 -0
  493. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/respond_to.feature +78 -0
  494. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/satisfy.feature +31 -0
  495. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/throw_symbol.feature +85 -0
  496. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/built_in_matchers/types.feature +114 -0
  497. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/custom_matchers/access_running_example.feature +53 -0
  498. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/custom_matchers/define_diffable_matcher.feature +27 -0
  499. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/custom_matchers/define_matcher.feature +340 -0
  500. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/custom_matchers/define_matcher_outside_rspec.feature +38 -0
  501. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/custom_matchers/define_matcher_with_fluent_interface.feature +24 -0
  502. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/customized_message.feature +22 -0
  503. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/diffing.feature +85 -0
  504. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/implicit_docstrings.feature +52 -0
  505. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/step_definitions/additional_cli_steps.rb +22 -0
  506. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/support/env.rb +5 -0
  507. data/vendor/bundle/gems/rspec-expectations-2.7.0/features/test_frameworks/test_unit.feature +46 -0
  508. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec-expectations.rb +1 -0
  509. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations.rb +37 -0
  510. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/deprecation.rb +38 -0
  511. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/differ.rb +62 -0
  512. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/errors.rb +9 -0
  513. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/extensions.rb +3 -0
  514. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/extensions/array.rb +9 -0
  515. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/extensions/kernel.rb +26 -0
  516. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/extensions/object.rb +39 -0
  517. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/fail_with.rb +54 -0
  518. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/handler.rb +50 -0
  519. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/expectations/version.rb +8 -0
  520. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers.rb +206 -0
  521. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/be.rb +213 -0
  522. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/be_close.rb +9 -0
  523. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/be_instance_of.rb +26 -0
  524. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/be_kind_of.rb +26 -0
  525. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/be_within.rb +37 -0
  526. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/block_aliases.rb +19 -0
  527. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/change.rb +197 -0
  528. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/compatibility.rb +14 -0
  529. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/cover.rb +35 -0
  530. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/dsl.rb +22 -0
  531. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/eq.rb +46 -0
  532. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/eql.rb +41 -0
  533. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/equal.rb +48 -0
  534. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/errors.rb +5 -0
  535. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/exist.rb +26 -0
  536. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/extensions/instance_eval_with_args.rb +39 -0
  537. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/generated_descriptions.rb +36 -0
  538. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/has.rb +44 -0
  539. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/have.rb +168 -0
  540. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/include.rb +54 -0
  541. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/match.rb +21 -0
  542. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/match_array.rb +71 -0
  543. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/matcher.rb +165 -0
  544. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/method_missing.rb +12 -0
  545. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/operator_matcher.rb +87 -0
  546. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/pretty.rb +37 -0
  547. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/raise_error.rb +130 -0
  548. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/respond_to.rb +85 -0
  549. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/satisfy.rb +51 -0
  550. data/vendor/bundle/gems/rspec-expectations-2.7.0/lib/rspec/matchers/throw_symbol.rb +121 -0
  551. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/expectations/differ_spec.rb +96 -0
  552. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/expectations/extensions/kernel_spec.rb +45 -0
  553. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/expectations/fail_with_spec.rb +70 -0
  554. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/expectations/handler_spec.rb +206 -0
  555. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/be_close_spec.rb +22 -0
  556. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/be_instance_of_spec.rb +36 -0
  557. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/be_kind_of_spec.rb +33 -0
  558. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/be_spec.rb +452 -0
  559. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/be_within_spec.rb +64 -0
  560. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/change_spec.rb +522 -0
  561. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/compatibility_spec.rb +28 -0
  562. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/cover_spec.rb +65 -0
  563. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/description_generation_spec.rb +176 -0
  564. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/dsl_spec.rb +25 -0
  565. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/eq_spec.rb +38 -0
  566. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/eql_spec.rb +37 -0
  567. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/equal_spec.rb +57 -0
  568. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/exist_spec.rb +104 -0
  569. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/has_spec.rb +113 -0
  570. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/have_spec.rb +458 -0
  571. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/include_spec.rb +341 -0
  572. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/match_array_spec.rb +108 -0
  573. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/match_spec.rb +57 -0
  574. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/matcher_spec.rb +420 -0
  575. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/matchers_spec.rb +31 -0
  576. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/method_missing_spec.rb +23 -0
  577. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/operator_matcher_spec.rb +221 -0
  578. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/raise_error_spec.rb +339 -0
  579. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/respond_to_spec.rb +292 -0
  580. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/satisfy_spec.rb +40 -0
  581. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/rspec/matchers/throw_symbol_spec.rb +113 -0
  582. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/spec_helper.rb +26 -0
  583. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/support/classes.rb +56 -0
  584. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/support/matchers.rb +22 -0
  585. data/vendor/bundle/gems/rspec-expectations-2.7.0/spec/support/ruby_version.rb +10 -0
  586. data/vendor/bundle/gems/rspec-mocks-2.7.0/README.md +40 -0
  587. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/README.markdown +67 -0
  588. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/Scope.md +17 -0
  589. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/Upgrade.md +22 -0
  590. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/argument_matchers/README.md +27 -0
  591. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/argument_matchers/explicit.feature +60 -0
  592. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/argument_matchers/general_matchers.feature +85 -0
  593. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/argument_matchers/type_matchers.feature +25 -0
  594. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/message_expectations/README.md +58 -0
  595. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/message_expectations/any_instance.feature +21 -0
  596. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/message_expectations/block_local_expectations.feature.pending +55 -0
  597. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/message_expectations/expect_message.feature +94 -0
  598. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/message_expectations/receive_counts.feature +209 -0
  599. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/message_expectations/warn_when_expectation_is_set_on_nil.feature +50 -0
  600. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/method_stubs/README.md +43 -0
  601. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/method_stubs/any_instance.feature +133 -0
  602. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/method_stubs/as_null_object.feature +36 -0
  603. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/method_stubs/simple_return_value.feature +64 -0
  604. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/method_stubs/stub_chain.feature +51 -0
  605. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/method_stubs/stub_implementation.feature +26 -0
  606. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/method_stubs/to_ary.feature +47 -0
  607. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/outside_rspec/configuration.feature +82 -0
  608. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/outside_rspec/standalone.feature +32 -0
  609. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/step_definitions/additional_cli_steps.rb +4 -0
  610. data/vendor/bundle/gems/rspec-mocks-2.7.0/features/support/env.rb +6 -0
  611. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks.rb +196 -0
  612. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/any_instance.rb +29 -0
  613. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/any_instance/chain.rb +49 -0
  614. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/any_instance/expectation_chain.rb +33 -0
  615. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/any_instance/message_chains.rb +48 -0
  616. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/any_instance/recorder.rb +168 -0
  617. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/any_instance/stub_chain.rb +35 -0
  618. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/any_instance/stub_chain_chain.rb +34 -0
  619. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/argument_expectation.rb +54 -0
  620. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/argument_matchers.rb +227 -0
  621. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/error_generator.rb +97 -0
  622. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/errors.rb +10 -0
  623. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/extensions/instance_exec.rb +31 -0
  624. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/extensions/marshal.rb +23 -0
  625. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/extensions/psych.rb +23 -0
  626. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/framework.rb +18 -0
  627. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/message_expectation.rb +357 -0
  628. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/method_double.rb +165 -0
  629. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/methods.rb +98 -0
  630. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/mock.rb +79 -0
  631. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/order_group.rb +29 -0
  632. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/proxy.rb +158 -0
  633. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/serialization.rb +28 -0
  634. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/space.rb +28 -0
  635. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/spec_methods.rb +53 -0
  636. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/standalone.rb +3 -0
  637. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/rspec/mocks/version.rb +7 -0
  638. data/vendor/bundle/gems/rspec-mocks-2.7.0/lib/spec/mocks.rb +2 -0
  639. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/and_yield_spec.rb +114 -0
  640. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/any_instance/message_chains_spec.rb +40 -0
  641. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/any_instance_spec.rb +785 -0
  642. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/any_number_of_times_spec.rb +30 -0
  643. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/argument_expectation_spec.rb +37 -0
  644. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/at_least_spec.rb +103 -0
  645. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/at_most_spec.rb +99 -0
  646. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/block_return_value_spec.rb +45 -0
  647. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_10260_spec.rb +8 -0
  648. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_10263_spec.rb +25 -0
  649. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_11545_spec.rb +32 -0
  650. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_496_spec.rb +17 -0
  651. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_600_spec.rb +22 -0
  652. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_7611_spec.rb +16 -0
  653. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_8165_spec.rb +31 -0
  654. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_830_spec.rb +21 -0
  655. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/bug_report_957_spec.rb +22 -0
  656. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/double_spec.rb +12 -0
  657. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/failing_argument_matchers_spec.rb +95 -0
  658. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/hash_including_matcher_spec.rb +90 -0
  659. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/hash_not_including_matcher_spec.rb +67 -0
  660. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/mock_ordering_spec.rb +94 -0
  661. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/mock_space_spec.rb +54 -0
  662. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/mock_spec.rb +702 -0
  663. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/multiple_return_value_spec.rb +191 -0
  664. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/nil_expectation_warning_spec.rb +62 -0
  665. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/null_object_mock_spec.rb +78 -0
  666. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/once_counts_spec.rb +53 -0
  667. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/options_hash_spec.rb +35 -0
  668. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/partial_mock_spec.rb +156 -0
  669. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/partial_mock_using_mocks_directly_spec.rb +95 -0
  670. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/passing_argument_matchers_spec.rb +142 -0
  671. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/precise_counts_spec.rb +58 -0
  672. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/record_messages_spec.rb +26 -0
  673. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/serialization_spec.rb +111 -0
  674. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/stash_spec.rb +27 -0
  675. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/stub_chain_spec.rb +149 -0
  676. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/stub_implementation_spec.rb +68 -0
  677. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/stub_spec.rb +235 -0
  678. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/stubbed_message_expectations_spec.rb +26 -0
  679. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/to_ary_spec.rb +40 -0
  680. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks/twice_counts_spec.rb +67 -0
  681. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/rspec/mocks_spec.rb +51 -0
  682. data/vendor/bundle/gems/rspec-mocks-2.7.0/spec/spec_helper.rb +52 -0
  683. data/vendor/bundle/specifications/diff-lcs-1.1.3.gemspec +35 -0
  684. data/vendor/bundle/specifications/httparty-0.8.1.gemspec +34 -0
  685. data/vendor/bundle/specifications/json-1.6.3.gemspec +39 -0
  686. data/vendor/bundle/specifications/multi_json-1.0.4.gemspec +40 -0
  687. data/vendor/bundle/specifications/multi_xml-0.4.1.gemspec +49 -0
  688. data/vendor/bundle/specifications/rspec-2.7.0.gemspec +38 -0
  689. data/vendor/bundle/specifications/rspec-core-2.7.1.gemspec +31 -0
  690. data/vendor/bundle/specifications/rspec-expectations-2.7.0.gemspec +32 -0
  691. data/vendor/bundle/specifications/rspec-mocks-2.7.0.gemspec +29 -0
  692. metadata +771 -0
@@ -0,0 +1,901 @@
1
+ #scatter real total user system repeat
2
+ 101 0.00124120712280273 0.0 0.0 0.0 101
3
+ 102 0.00123310089111328 0.0 0.0 0.0 102
4
+ 103 0.0012359619140625 0.0 0.0 0.0 103
5
+ 104 0.00124216079711914 0.0 0.0 0.0 104
6
+ 105 0.00124096870422363 0.0 0.0 0.0 105
7
+ 106 0.00124096870422363 0.00999999999999979 0.00999999999999979 0.0 106
8
+ 107 0.00124692916870117 0.0 0.0 0.0 107
9
+ 108 0.00122189521789551 0.0 0.0 0.0 108
10
+ 109 0.00124287605285645 0.0 0.0 0.0 109
11
+ 110 0.00124287605285645 0.0 0.0 0.0 110
12
+ 111 0.00124597549438477 0.0 0.0 0.0 111
13
+ 112 0.0012519359588623 0.0 0.0 0.0 112
14
+ 113 0.00124788284301758 0.0 0.0 0.0 113
15
+ 114 0.00124502182006836 0.0100000000000007 0.0100000000000007 0.0 114
16
+ 115 0.00124692916870117 0.0 0.0 0.0 115
17
+ 116 0.00123810768127441 0.0 0.0 0.0 116
18
+ 117 0.00125002861022949 0.0 0.0 0.0 117
19
+ 118 0.00125789642333984 0.0 0.0 0.0 118
20
+ 119 0.0300710201263428 0.0299999999999994 0.0299999999999994 0.0 119
21
+ 120 0.00127291679382324 0.0 0.0 0.0 120
22
+ 121 0.00133109092712402 0.0 0.0 0.0 121
23
+ 122 0.0012810230255127 0.0100000000000007 0.0100000000000007 0.0 122
24
+ 123 0.00127792358398438 0.0 0.0 0.0 123
25
+ 124 0.0012671947479248 0.0 0.0 0.0 124
26
+ 125 0.00126814842224121 0.0 0.0 0.0 125
27
+ 126 0.00125694274902344 0.0 0.0 0.0 126
28
+ 127 0.00124883651733398 0.0 0.0 0.0 127
29
+ 128 0.00124907493591309 0.0 0.0 0.0 128
30
+ 129 0.0012509822845459 0.0 0.0 0.0 129
31
+ 130 0.0012509822845459 0.00999999999999979 0.00999999999999979 0.0 130
32
+ 131 0.00125312805175781 0.0 0.0 0.0 131
33
+ 132 0.00131797790527344 0.0 0.0 0.0 132
34
+ 133 0.00125694274902344 0.0 0.0 0.0 133
35
+ 134 0.00125288963317871 0.0 0.0 0.0 134
36
+ 135 0.0012519359588623 0.0 0.0 0.0 135
37
+ 136 0.00124692916870117 0.0 0.0 0.0 136
38
+ 137 0.00124692916870117 0.0 0.0 0.0 137
39
+ 138 0.00124907493591309 0.00999999999999979 0.00999999999999979 0.0 138
40
+ 139 0.0012509822845459 0.0 0.0 0.0 139
41
+ 140 0.00125598907470703 0.0 0.0 0.0 140
42
+ 141 0.00124287605285645 0.0 0.0 0.0 141
43
+ 142 0.00124812126159668 0.0 0.0 0.0 142
44
+ 143 0.00124883651733398 0.0 0.0 0.0 143
45
+ 144 0.00123500823974609 0.0 0.0 0.0 144
46
+ 145 0.00124382972717285 0.00999999999999979 0.00999999999999979 0.0 145
47
+ 146 0.00123715400695801 0.0 0.0 0.0 146
48
+ 147 0.00134897232055664 0.0 0.0 0.0 147
49
+ 148 0.00123906135559082 0.0 0.0 0.0 148
50
+ 149 0.00124788284301758 0.0 0.0 0.0 149
51
+ 150 0.0012359619140625 0.0 0.0 0.0 150
52
+ 151 0.00123476982116699 0.0 0.0 0.0 151
53
+ 152 0.00124597549438477 0.0 0.0 0.0 152
54
+ 153 0.00124597549438477 0.0100000000000007 0.0100000000000007 0.0 153
55
+ 154 0.00123190879821777 0.0 0.0 0.0 154
56
+ 155 0.0012509822845459 0.0 0.0 0.0 155
57
+ 156 0.00124096870422363 0.0 0.0 0.0 156
58
+ 157 0.0012359619140625 0.0 0.0 0.0 157
59
+ 158 0.00123906135559082 0.0 0.0 0.0 158
60
+ 159 0.00123906135559082 0.0 0.0 0.0 159
61
+ 160 0.00123691558837891 0.0 0.0 0.0 160
62
+ 161 0.00124001502990723 0.00999999999999979 0.00999999999999979 0.0 161
63
+ 162 0.00124597549438477 0.0 0.0 0.0 162
64
+ 163 0.00124096870422363 0.0 0.0 0.0 163
65
+ 164 0.0012359619140625 0.0 0.0 0.0 164
66
+ 165 0.00123500823974609 0.0 0.0 0.0 165
67
+ 166 0.00173211097717285 0.0 0.0 0.0 166
68
+ 167 0.00125217437744141 0.0 0.0 0.0 167
69
+ 168 0.00124406814575195 0.00999999999999979 0.00999999999999979 0.0 168
70
+ 169 0.00124096870422363 0.0 0.0 0.0 169
71
+ 170 0.00123381614685059 0.0 0.0 0.0 170
72
+ 171 0.00124001502990723 0.0 0.0 0.0 171
73
+ 172 0.00124001502990723 0.0 0.0 0.0 172
74
+ 173 0.00123715400695801 0.0 0.0 0.0 173
75
+ 174 0.00123691558837891 0.0 0.0 0.0 174
76
+ 175 0.00124692916870117 0.0 0.0 0.0 175
77
+ 176 0.00130796432495117 0.00999999999999979 0.00999999999999979 0.0 176
78
+ 177 0.00127100944519043 0.0 0.0 0.0 177
79
+ 178 0.0301418304443359 0.0300000000000002 0.0300000000000002 0.0 178
80
+ 179 0.00127196311950684 0.0 0.0 0.0 179
81
+ 180 0.00131416320800781 0.0 0.0 0.0 180
82
+ 181 0.00119805335998535 0.0 0.0 0.0 181
83
+ 182 0.00128316879272461 0.0 0.0 0.0 182
84
+ 183 0.0013129711151123 0.0 0.0 0.0 183
85
+ 184 0.00127100944519043 0.0 0.0 0.0 184
86
+ 185 0.00141692161560059 0.0 0.0 0.0 185
87
+ 186 0.00130701065063477 0.0 0.0 0.0 186
88
+ 187 0.00126099586486816 0.0 0.0 0.0 187
89
+ 188 0.00125694274902344 0.0 0.0 0.0 188
90
+ 189 0.00124502182006836 0.0 0.0 0.0 189
91
+ 190 0.00125217437744141 0.0 0.0 0.0 190
92
+ 191 0.00124216079711914 0.0 0.0 0.0 191
93
+ 192 0.00125408172607422 0.0100000000000007 0.0100000000000007 0.0 192
94
+ 193 0.00124502182006836 0.0 0.0 0.0 193
95
+ 194 0.00125718116760254 0.0 0.0 0.0 194
96
+ 195 0.00125503540039062 0.0 0.0 0.0 195
97
+ 196 0.00125598907470703 0.0 0.0 0.0 196
98
+ 197 0.00137186050415039 0.0 0.0 0.0 197
99
+ 198 0.0011131763458252 0.0 0.0 0.0 198
100
+ 199 0.00124788284301758 0.0 0.0 0.0 199
101
+ 200 0.00124597549438477 0.00999999999999979 0.00999999999999979 0.0 200
102
+ 201 0.00124597549438477 0.0 0.0 0.0 201
103
+ 202 0.00132608413696289 0.0 0.0 0.0 202
104
+ 203 0.00129795074462891 0.0 0.0 0.0 203
105
+ 204 0.00120997428894043 0.0 0.0 0.0 204
106
+ 205 0.00124192237854004 0.0 0.0 0.0 205
107
+ 206 0.00126290321350098 0.0 0.0 0.0 206
108
+ 207 0.00125002861022949 0.00999999999999979 0.00999999999999979 0.0 207
109
+ 208 0.00125503540039062 0.0 0.0 0.0 208
110
+ 209 0.00124883651733398 0.0 0.0 0.0 209
111
+ 210 0.00124192237854004 0.0 0.0 0.0 210
112
+ 211 0.00124812126159668 0.0 0.0 0.0 211
113
+ 212 0.00125002861022949 0.0 0.0 0.0 212
114
+ 213 0.00124287605285645 0.0 0.0 0.0 213
115
+ 214 0.00125288963317871 0.0 0.0 0.0 214
116
+ 215 0.00125002861022949 0.00999999999999979 0.00999999999999979 0.0 215
117
+ 216 0.00124287605285645 0.0 0.0 0.0 216
118
+ 217 0.00124001502990723 0.0 0.0 0.0 217
119
+ 218 0.00124883651733398 0.0 0.0 0.0 218
120
+ 219 0.00124192237854004 0.0 0.0 0.0 219
121
+ 220 0.00123405456542969 0.0 0.0 0.0 220
122
+ 221 0.00124883651733398 0.0 0.0 0.0 221
123
+ 222 0.00123810768127441 0.0 0.0 0.0 222
124
+ 223 0.0012359619140625 0.00999999999999979 0.00999999999999979 0.0 223
125
+ 224 0.00123405456542969 0.0 0.0 0.0 224
126
+ 225 0.00124788284301758 0.0 0.0 0.0 225
127
+ 226 0.00148200988769531 0.0 0.0 0.0 226
128
+ 227 0.00123882293701172 0.0 0.0 0.0 227
129
+ 228 0.00124907493591309 0.0 0.0 0.0 228
130
+ 229 0.00124120712280273 0.0 0.0 0.0 229
131
+ 230 0.00124096870422363 0.0 0.0 0.0 230
132
+ 231 0.00124812126159668 0.0100000000000007 0.0100000000000007 0.0 231
133
+ 232 0.00124001502990723 0.0 0.0 0.0 232
134
+ 233 0.001251220703125 0.0 0.0 0.0 233
135
+ 234 0.00123810768127441 0.0 0.0 0.0 234
136
+ 235 0.00125885009765625 0.0 0.0 0.0 235
137
+ 236 0.00126409530639648 0.0 0.0 0.0 236
138
+ 237 0.0301649570465088 0.0299999999999994 0.0299999999999994 0.0 237
139
+ 238 0.00130605697631836 0.0 0.0 0.0 238
140
+ 239 0.00129795074462891 0.0100000000000007 0.0100000000000007 0.0 239
141
+ 240 0.00127410888671875 0.0 0.0 0.0 240
142
+ 241 0.00134420394897461 0.0 0.0 0.0 241
143
+ 242 0.00127720832824707 0.0 0.0 0.0 242
144
+ 243 0.00126409530639648 0.0 0.0 0.0 243
145
+ 244 0.00125288963317871 0.0 0.0 0.0 244
146
+ 245 0.00125384330749512 0.0 0.0 0.0 245
147
+ 246 0.00124788284301758 0.0 0.0 0.0 246
148
+ 247 0.00124287605285645 0.00999999999999979 0.00999999999999979 0.0 247
149
+ 248 0.00125813484191895 0.0 0.0 0.0 248
150
+ 249 0.00125002861022949 0.0 0.0 0.0 249
151
+ 250 0.00124502182006836 0.0 0.0 0.0 250
152
+ 251 0.00125694274902344 0.0 0.0 0.0 251
153
+ 252 0.00124192237854004 0.0 0.0 0.0 252
154
+ 253 0.00128889083862305 0.0 0.0 0.0 253
155
+ 254 0.00124883651733398 0.00999999999999979 0.00999999999999979 0.0 254
156
+ 255 0.00124907493591309 0.0 0.0 0.0 255
157
+ 256 0.00124812126159668 0.0 0.0 0.0 256
158
+ 257 0.00125503540039062 0.0 0.0 0.0 257
159
+ 258 0.00125789642333984 0.0 0.0 0.0 258
160
+ 259 0.00124692916870117 0.0 0.0 0.0 259
161
+ 260 0.00124812126159668 0.0 0.0 0.0 260
162
+ 261 0.00124192237854004 0.0 0.0 0.0 261
163
+ 262 0.00124287605285645 0.00999999999999979 0.00999999999999979 0.0 262
164
+ 263 0.00124192237854004 0.0 0.0 0.0 263
165
+ 264 0.00123500823974609 0.0 0.0 0.0 264
166
+ 265 0.00123715400695801 0.0 0.0 0.0 265
167
+ 266 0.0018610954284668 0.0 0.0 0.0 266
168
+ 267 0.00128507614135742 0.0 0.0 0.0 267
169
+ 268 0.00123906135559082 0.0 0.0 0.0 268
170
+ 269 0.00124001502990723 0.0 0.0 0.0 269
171
+ 270 0.00124907493591309 0.0 0.0 0.0 270
172
+ 271 0.00124716758728027 0.0 0.0 0.0 271
173
+ 272 0.00124001502990723 0.0 0.0 0.0 272
174
+ 273 0.00125288963317871 0.0 0.0 0.0 273
175
+ 274 0.00118589401245117 0.0 0.0 0.0 274
176
+ 275 0.00124192237854004 0.0 0.0 0.0 275
177
+ 276 0.00123906135559082 0.0 0.0 0.0 276
178
+ 277 0.00125002861022949 0.00999999999999979 0.00999999999999979 0.0 277
179
+ 278 0.00124597549438477 0.0 0.0 0.0 278
180
+ 279 0.00124096870422363 0.0 0.0 0.0 279
181
+ 280 0.00124382972717285 0.0 0.0 0.0 280
182
+ 281 0.00125694274902344 0.0 0.0 0.0 281
183
+ 282 0.00124812126159668 0.0 0.0 0.0 282
184
+ 283 0.00124192237854004 0.0 0.0 0.0 283
185
+ 284 0.001251220703125 0.0 0.0 0.0 284
186
+ 285 0.00128316879272461 0.00999999999999979 0.00999999999999979 0.0 285
187
+ 286 0.00124287605285645 0.0 0.0 0.0 286
188
+ 287 0.00133800506591797 0.0 0.0 0.0 287
189
+ 288 0.00124788284301758 0.0 0.0 0.0 288
190
+ 289 0.0012509822845459 0.0 0.0 0.0 289
191
+ 290 0.00124883651733398 0.0 0.0 0.0 290
192
+ 291 0.00124502182006836 0.0 0.0 0.0 291
193
+ 292 0.00124382972717285 0.0 0.0 0.0 292
194
+ 293 0.00125908851623535 0.00999999999999979 0.00999999999999979 0.0 293
195
+ 294 0.00126791000366211 0.0 0.0 0.0 294
196
+ 295 0.0215630531311035 0.0200000000000005 0.0200000000000005 0.0 295
197
+ 296 0.00352096557617188 0.0 0.0 0.0 296
198
+ 297 0.00220417976379395 0.0 0.0 0.0 297
199
+ 298 0.00125384330749512 0.00999999999999979 0.00999999999999979 0.0 298
200
+ 299 0.00129985809326172 0.0 0.0 0.0 299
201
+ 300 0.00123715400695801 0.0 0.0 0.0 300
202
+ 301 0.00124096870422363 0.0 0.0 0.0 301
203
+ 302 0.00124001502990723 0.0 0.0 0.0 302
204
+ 303 0.00123405456542969 0.0 0.0 0.0 303
205
+ 304 0.0012509822845459 0.0 0.0 0.0 304
206
+ 305 0.0012509822845459 0.00999999999999979 0.00999999999999979 0.0 305
207
+ 306 0.00125288963317871 0.0 0.0 0.0 306
208
+ 307 0.00126099586486816 0.0 0.0 0.0 307
209
+ 308 0.00124788284301758 0.0 0.0 0.0 308
210
+ 309 0.00124907493591309 0.0 0.0 0.0 309
211
+ 310 0.00124096870422363 0.0 0.0 0.0 310
212
+ 311 0.00125002861022949 0.0 0.0 0.0 311
213
+ 312 0.0012519359588623 0.0 0.0 0.0 312
214
+ 313 0.00126314163208008 0.0100000000000007 0.0100000000000007 0.0 313
215
+ 314 0.00124406814575195 0.0 0.0 0.0 314
216
+ 315 0.00125789642333984 0.0 0.0 0.0 315
217
+ 316 0.00128793716430664 0.0 0.0 0.0 316
218
+ 317 0.0012509822845459 0.0 0.0 0.0 317
219
+ 318 0.00156903266906738 0.0 0.0 0.0 318
220
+ 319 0.00181221961975098 0.0 0.0 0.0 319
221
+ 320 0.0018010139465332 0.00999999999999979 0.00999999999999979 0.0 320
222
+ 321 0.00193095207214355 0.0 0.0 0.0 321
223
+ 322 0.0014030933380127 0.0 0.0 0.0 322
224
+ 323 0.0012519359588623 0.0 0.0 0.0 323
225
+ 324 0.00121903419494629 0.0 0.0 0.0 324
226
+ 325 0.00120687484741211 0.0 0.0 0.0 325
227
+ 326 0.00123000144958496 0.0 0.0 0.0 326
228
+ 327 0.00123095512390137 0.00999999999999979 0.00999999999999979 0.0 327
229
+ 328 0.00124692916870117 0.0 0.0 0.0 328
230
+ 329 0.00127005577087402 0.0 0.0 0.0 329
231
+ 330 0.00124716758728027 0.0 0.0 0.0 330
232
+ 331 0.00126481056213379 0.0 0.0 0.0 331
233
+ 332 0.00125694274902344 0.0 0.0 0.0 332
234
+ 333 0.00118613243103027 0.0 0.0 0.0 333
235
+ 334 0.00124001502990723 0.0 0.0 0.0 334
236
+ 335 0.00124812126159668 0.00999999999999979 0.00999999999999979 0.0 335
237
+ 336 0.00126791000366211 0.0 0.0 0.0 336
238
+ 337 0.00124692916870117 0.0 0.0 0.0 337
239
+ 338 0.00124907493591309 0.0 0.0 0.0 338
240
+ 339 0.00126218795776367 0.0 0.0 0.0 339
241
+ 340 0.00124406814575195 0.0 0.0 0.0 340
242
+ 341 0.0012359619140625 0.0 0.0 0.0 341
243
+ 342 0.00125885009765625 0.0100000000000007 0.0100000000000007 0.0 342
244
+ 343 0.00131320953369141 0.0 0.0 0.0 343
245
+ 344 0.0012519359588623 0.0 0.0 0.0 344
246
+ 345 0.00123691558837891 0.0 0.0 0.0 345
247
+ 346 0.00125694274902344 0.0 0.0 0.0 346
248
+ 347 0.00139403343200684 0.0 0.0 0.0 347
249
+ 348 0.00127506256103516 0.0 0.0 0.0 348
250
+ 349 0.00130009651184082 0.0 0.0 0.0 349
251
+ 350 0.00128412246704102 0.00999999999999979 0.00999999999999979 0.0 350
252
+ 351 0.00133395195007324 0.0 0.0 0.0 351
253
+ 352 0.00152087211608887 0.0 0.0 0.0 352
254
+ 353 0.0015110969543457 0.0 0.0 0.0 353
255
+ 354 0.0320370197296143 0.0299999999999994 0.0299999999999994 0.0 354
256
+ 355 0.00130319595336914 0.0 0.0 0.0 355
257
+ 356 0.0012969970703125 0.0100000000000007 0.0100000000000007 0.0 356
258
+ 357 0.00127792358398438 0.0 0.0 0.0 357
259
+ 358 0.00127506256103516 0.0 0.0 0.0 358
260
+ 359 0.00126791000366211 0.0 0.0 0.0 359
261
+ 360 0.00126385688781738 0.0 0.0 0.0 360
262
+ 361 0.00125694274902344 0.0 0.0 0.0 361
263
+ 362 0.00125002861022949 0.0 0.0 0.0 362
264
+ 363 0.00125598907470703 0.0 0.0 0.0 363
265
+ 364 0.00125002861022949 0.00999999999999979 0.00999999999999979 0.0 364
266
+ 365 0.00124692916870117 0.0 0.0 0.0 365
267
+ 366 0.00125503540039062 0.0 0.0 0.0 366
268
+ 367 0.00125217437744141 0.0 0.0 0.0 367
269
+ 368 0.00124406814575195 0.0 0.0 0.0 368
270
+ 369 0.00125789642333984 0.0 0.0 0.0 369
271
+ 370 0.0012509822845459 0.0 0.0 0.0 370
272
+ 371 0.00124287605285645 0.0 0.0 0.0 371
273
+ 372 0.00124812126159668 0.00999999999999979 0.00999999999999979 0.0 372
274
+ 373 0.00124692916870117 0.0 0.0 0.0 373
275
+ 374 0.0012519359588623 0.0 0.0 0.0 374
276
+ 375 0.0012519359588623 0.0 0.0 0.0 375
277
+ 376 0.00125503540039062 0.0 0.0 0.0 376
278
+ 377 0.00123691558837891 0.0 0.0 0.0 377
279
+ 378 0.00123310089111328 0.0 0.0 0.0 378
280
+ 379 0.00123190879821777 0.0 0.0 0.0 379
281
+ 380 0.00124382972717285 0.00999999999999979 0.00999999999999979 0.0 380
282
+ 381 0.00123906135559082 0.0 0.0 0.0 381
283
+ 382 0.00124883651733398 0.0 0.0 0.0 382
284
+ 383 0.00124192237854004 0.0 0.0 0.0 383
285
+ 384 0.0012509822845459 0.0 0.0 0.0 384
286
+ 385 0.00124406814575195 0.0 0.0 0.0 385
287
+ 386 0.00123405456542969 0.0 0.0 0.0 386
288
+ 387 0.00124788284301758 0.0100000000000007 0.0100000000000007 0.0 387
289
+ 388 0.00125002861022949 0.0 0.0 0.0 388
290
+ 389 0.00123214721679688 0.0 0.0 0.0 389
291
+ 390 0.00123810768127441 0.0 0.0 0.0 390
292
+ 391 0.00124287605285645 0.0 0.0 0.0 391
293
+ 392 0.0012359619140625 0.0 0.0 0.0 392
294
+ 393 0.00123405456542969 0.0 0.0 0.0 393
295
+ 394 0.00124621391296387 0.0 0.0 0.0 394
296
+ 395 0.00124907493591309 0.00999999999999979 0.00999999999999979 0.0 395
297
+ 396 0.00124216079711914 0.0 0.0 0.0 396
298
+ 397 0.00123190879821777 0.0 0.0 0.0 397
299
+ 398 0.00139594078063965 0.0 0.0 0.0 398
300
+ 399 0.0022280216217041 0.0 0.0 0.0 399
301
+ 400 0.00197100639343262 0.0 0.0 0.0 400
302
+ 401 0.00163888931274414 0.00999999999999979 0.00999999999999979 0.0 401
303
+ 402 0.00142812728881836 0.0 0.0 0.0 402
304
+ 403 0.00138711929321289 0.0 0.0 0.0 403
305
+ 404 0.00148701667785645 0.0 0.0 0.0 404
306
+ 405 0.00162696838378906 0.0 0.0 0.0 405
307
+ 406 0.00157594680786133 0.0 0.0 0.0 406
308
+ 407 0.00158596038818359 0.00999999999999979 0.00999999999999979 0.0 407
309
+ 408 0.00186491012573242 0.0 0.0 0.0 408
310
+ 409 0.0016481876373291 0.0 0.0 0.0 409
311
+ 410 0.00135707855224609 0.0 0.0 0.0 410
312
+ 411 0.00129485130310059 0.0 0.0 0.0 411
313
+ 412 0.0299890041351318 0.0300000000000002 0.0300000000000002 0.0 412
314
+ 413 0.00138497352600098 0.0 0.0 0.0 413
315
+ 414 0.0013120174407959 0.0 0.0 0.0 414
316
+ 415 0.00127696990966797 0.00999999999999979 0.00999999999999979 0.0 415
317
+ 416 0.00128507614135742 0.0 0.0 0.0 416
318
+ 417 0.00126981735229492 0.0 0.0 0.0 417
319
+ 418 0.00126814842224121 0.0 0.0 0.0 418
320
+ 419 0.00125718116760254 0.0 0.0 0.0 419
321
+ 420 0.00125408172607422 0.0 0.0 0.0 420
322
+ 421 0.0012509822845459 0.0 0.0 0.0 421
323
+ 422 0.00124716758728027 0.0 0.0 0.0 422
324
+ 423 0.00125408172607422 0.0100000000000007 0.0100000000000007 0.0 423
325
+ 424 0.001251220703125 0.0 0.0 0.0 424
326
+ 425 0.00124812126159668 0.0 0.0 0.0 425
327
+ 426 0.00124692916870117 0.0 0.0 0.0 426
328
+ 427 0.00124597549438477 0.0 0.0 0.0 427
329
+ 428 0.001251220703125 0.0 0.0 0.0 428
330
+ 429 0.00124311447143555 0.0 0.0 0.0 429
331
+ 430 0.00124812126159668 0.00999999999999979 0.00999999999999979 0.0 430
332
+ 431 0.00124311447143555 0.0 0.0 0.0 431
333
+ 432 0.00125002861022949 0.0 0.0 0.0 432
334
+ 433 0.00125002861022949 0.0 0.0 0.0 433
335
+ 434 0.00125002861022949 0.0 0.0 0.0 434
336
+ 435 0.00124502182006836 0.0 0.0 0.0 435
337
+ 436 0.00124382972717285 0.0 0.0 0.0 436
338
+ 437 0.00124812126159668 0.0 0.0 0.0 437
339
+ 438 0.00124406814575195 0.00999999999999979 0.00999999999999979 0.0 438
340
+ 439 0.00122785568237305 0.0 0.0 0.0 439
341
+ 440 0.00123214721679688 0.0 0.0 0.0 440
342
+ 441 0.00123691558837891 0.0 0.0 0.0 441
343
+ 442 0.00124502182006836 0.0 0.0 0.0 442
344
+ 443 0.00123405456542969 0.0 0.0 0.0 443
345
+ 444 0.00124311447143555 0.0 0.0 0.0 444
346
+ 445 0.00124382972717285 0.0 0.0 0.0 445
347
+ 446 0.00123906135559082 0.00999999999999979 0.00999999999999979 0.0 446
348
+ 447 0.00124096870422363 0.0 0.0 0.0 447
349
+ 448 0.00124311447143555 0.0 0.0 0.0 448
350
+ 449 0.00124788284301758 0.0 0.0 0.0 449
351
+ 450 0.00123500823974609 0.0 0.0 0.0 450
352
+ 451 0.00124096870422363 0.0 0.0 0.0 451
353
+ 452 0.00123906135559082 0.0 0.0 0.0 452
354
+ 453 0.00123500823974609 0.0 0.0 0.0 453
355
+ 454 0.0012359619140625 0.0100000000000007 0.0100000000000007 0.0 454
356
+ 455 0.00124192237854004 0.0 0.0 0.0 455
357
+ 456 0.00124096870422363 0.0 0.0 0.0 456
358
+ 457 0.00123405456542969 0.0 0.0 0.0 457
359
+ 458 0.00124311447143555 0.0 0.0 0.0 458
360
+ 459 0.00158381462097168 0.0 0.0 0.0 459
361
+ 460 0.00182890892028809 0.0 0.0 0.0 460
362
+ 461 0.00183510780334473 0.00999999999999979 0.00999999999999979 0.0 461
363
+ 462 0.00188088417053223 0.0 0.0 0.0 462
364
+ 463 0.00174307823181152 0.0 0.0 0.0 463
365
+ 464 0.00124692916870117 0.0 0.0 0.0 464
366
+ 465 0.00123906135559082 0.0 0.0 0.0 465
367
+ 466 0.00124096870422363 0.0 0.0 0.0 466
368
+ 467 0.00124311447143555 0.00999999999999979 0.00999999999999979 0.0 467
369
+ 468 0.00125503540039062 0.0 0.0 0.0 468
370
+ 469 0.00125908851623535 0.0 0.0 0.0 469
371
+ 470 0.0304310321807861 0.0300000000000002 0.0300000000000002 0.0 470
372
+ 471 0.00145387649536133 0.0 0.0 0.0 471
373
+ 472 0.00129985809326172 0.0 0.0 0.0 472
374
+ 473 0.00149822235107422 0.0 0.0 0.0 473
375
+ 474 0.0015261173248291 0.0 0.0 0.0 474
376
+ 475 0.00127696990966797 0.00999999999999979 0.00999999999999979 0.0 475
377
+ 476 0.0012669563293457 0.0 0.0 0.0 476
378
+ 477 0.00122594833374023 0.0 0.0 0.0 477
379
+ 478 0.00125002861022949 0.0 0.0 0.0 478
380
+ 479 0.00124478340148926 0.0 0.0 0.0 479
381
+ 480 0.00125694274902344 0.0 0.0 0.0 480
382
+ 481 0.001251220703125 0.0 0.0 0.0 481
383
+ 482 0.0012509822845459 0.0 0.0 0.0 482
384
+ 483 0.0012509822845459 0.00999999999999979 0.00999999999999979 0.0 483
385
+ 484 0.00125288963317871 0.0 0.0 0.0 484
386
+ 485 0.00125408172607422 0.0 0.0 0.0 485
387
+ 486 0.00125718116760254 0.0 0.0 0.0 486
388
+ 487 0.00124716758728027 0.0 0.0 0.0 487
389
+ 488 0.00117087364196777 0.0 0.0 0.0 488
390
+ 489 0.00124812126159668 0.0 0.0 0.0 489
391
+ 490 0.00122618675231934 0.00999999999999979 0.00999999999999979 0.0 490
392
+ 491 0.00125598907470703 0.0 0.0 0.0 491
393
+ 492 0.00124311447143555 0.0 0.0 0.0 492
394
+ 493 0.00124192237854004 0.0 0.0 0.0 493
395
+ 494 0.00124692916870117 0.0 0.0 0.0 494
396
+ 495 0.00123381614685059 0.0 0.0 0.0 495
397
+ 496 0.00123691558837891 0.0 0.0 0.0 496
398
+ 497 0.00123906135559082 0.0 0.0 0.0 497
399
+ 498 0.00125718116760254 0.0100000000000007 0.0100000000000007 0.0 498
400
+ 499 0.00124502182006836 0.0 0.0 0.0 499
401
+ 500 0.00124788284301758 0.0 0.0 0.0 500
402
+ 501 0.00124812126159668 0.0 0.0 0.0 501
403
+ 502 0.00124096870422363 0.0 0.0 0.0 502
404
+ 503 0.00124287605285645 0.0 0.0 0.0 503
405
+ 504 0.00122690200805664 0.0 0.0 0.0 504
406
+ 505 0.00124406814575195 0.0 0.0 0.0 505
407
+ 506 0.00123786926269531 0.00999999999999979 0.00999999999999979 0.0 506
408
+ 507 0.00124001502990723 0.0 0.0 0.0 507
409
+ 508 0.0012519359588623 0.0 0.0 0.0 508
410
+ 509 0.00124597549438477 0.0 0.0 0.0 509
411
+ 510 0.00124311447143555 0.0 0.0 0.0 510
412
+ 511 0.00124979019165039 0.0 0.0 0.0 511
413
+ 512 0.00124502182006836 0.0 0.0 0.0 512
414
+ 513 0.00124001502990723 0.0 0.0 0.0 513
415
+ 514 0.00123810768127441 0.00999999999999979 0.00999999999999979 0.0 514
416
+ 515 0.00125002861022949 0.0 0.0 0.0 515
417
+ 516 0.00124812126159668 0.0 0.0 0.0 516
418
+ 517 0.00124311447143555 0.0 0.0 0.0 517
419
+ 518 0.00125288963317871 0.0 0.0 0.0 518
420
+ 519 0.00124979019165039 0.0 0.0 0.0 519
421
+ 520 0.00124192237854004 0.0 0.0 0.0 520
422
+ 521 0.00124406814575195 0.0 0.0 0.0 521
423
+ 522 0.00125622749328613 0.00999999999999979 0.00999999999999979 0.0 522
424
+ 523 0.00124907493591309 0.0 0.0 0.0 523
425
+ 524 0.00124692916870117 0.0 0.0 0.0 524
426
+ 525 0.00125002861022949 0.0 0.0 0.0 525
427
+ 526 0.0012671947479248 0.0 0.0 0.0 526
428
+ 527 0.00126910209655762 0.0 0.0 0.0 527
429
+ 528 0.0301029682159424 0.0300000000000002 0.0300000000000002 0.0 528
430
+ 529 0.00129103660583496 0.0 0.0 0.0 529
431
+ 530 0.00132203102111816 0.00999999999999979 0.00999999999999979 0.0 530
432
+ 531 0.00127696990966797 0.0 0.0 0.0 531
433
+ 532 0.00128507614135742 0.0 0.0 0.0 532
434
+ 533 0.00127196311950684 0.0 0.0 0.0 533
435
+ 534 0.00127100944519043 0.0 0.0 0.0 534
436
+ 535 0.00126886367797852 0.0 0.0 0.0 535
437
+ 536 0.00125789642333984 0.0 0.0 0.0 536
438
+ 537 0.00124311447143555 0.0 0.0 0.0 537
439
+ 538 0.0012509822845459 0.0100000000000007 0.0100000000000007 0.0 538
440
+ 539 0.00125908851623535 0.0 0.0 0.0 539
441
+ 540 0.00124788284301758 0.0 0.0 0.0 540
442
+ 541 0.00125002861022949 0.0 0.0 0.0 541
443
+ 542 0.0012671947479248 0.0 0.0 0.0 542
444
+ 543 0.00125312805175781 0.0 0.0 0.0 543
445
+ 544 0.00125885009765625 0.0 0.0 0.0 544
446
+ 545 0.00125503540039062 0.00999999999999979 0.00999999999999979 0.0 545
447
+ 546 0.00126099586486816 0.0 0.0 0.0 546
448
+ 547 0.00126218795776367 0.0 0.0 0.0 547
449
+ 548 0.00124883651733398 0.0 0.0 0.0 548
450
+ 549 0.00126099586486816 0.0 0.0 0.0 549
451
+ 550 0.00126194953918457 0.0 0.0 0.0 550
452
+ 551 0.00119996070861816 0.0 0.0 0.0 551
453
+ 552 0.00124883651733398 0.0 0.0 0.0 552
454
+ 553 0.00124192237854004 0.00999999999999979 0.00999999999999979 0.0 553
455
+ 554 0.00124382972717285 0.0 0.0 0.0 554
456
+ 555 0.00124311447143555 0.0 0.0 0.0 555
457
+ 556 0.00123500823974609 0.0 0.0 0.0 556
458
+ 557 0.0012359619140625 0.0 0.0 0.0 557
459
+ 558 0.00123882293701172 0.0 0.0 0.0 558
460
+ 559 0.0012519359588623 0.0 0.0 0.0 559
461
+ 560 0.00124716758728027 0.0 0.0 0.0 560
462
+ 561 0.00124406814575195 0.0 0.0 0.0 561
463
+ 562 0.00124812126159668 0.00999999999999979 0.00999999999999979 0.0 562
464
+ 563 0.00129103660583496 0.0 0.0 0.0 563
465
+ 564 0.00124001502990723 0.0 0.0 0.0 564
466
+ 565 0.00124406814575195 0.0 0.0 0.0 565
467
+ 566 0.00125789642333984 0.0 0.0 0.0 566
468
+ 567 0.00124406814575195 0.0 0.0 0.0 567
469
+ 568 0.00123500823974609 0.0 0.0 0.0 568
470
+ 569 0.00124311447143555 0.0 0.0 0.0 569
471
+ 570 0.00124096870422363 0.0 0.0 0.0 570
472
+ 571 0.00124001502990723 0.0 0.0 0.0 571
473
+ 572 0.00123786926269531 0.0 0.0 0.0 572
474
+ 573 0.00125288963317871 0.0 0.0 0.0 573
475
+ 574 0.00124502182006836 0.0 0.0 0.0 574
476
+ 575 0.00124192237854004 0.0 0.0 0.0 575
477
+ 576 0.00124502182006836 0.0 0.0 0.0 576
478
+ 577 0.00125479698181152 0.00999999999999979 0.00999999999999979 0.0 577
479
+ 578 0.00124502182006836 0.0 0.0 0.0 578
480
+ 579 0.00124502182006836 0.0 0.0 0.0 579
481
+ 580 0.00124692916870117 0.0 0.0 0.0 580
482
+ 581 0.00123095512390137 0.0 0.0 0.0 581
483
+ 582 0.00124287605285645 0.0 0.0 0.0 582
484
+ 583 0.00125288963317871 0.0 0.0 0.0 583
485
+ 584 0.0012669563293457 0.0 0.0 0.0 584
486
+ 585 0.00127005577087402 0.00999999999999979 0.00999999999999979 0.0 585
487
+ 586 0.0311369895935059 0.0300000000000002 0.0300000000000002 0.0 586
488
+ 587 0.00198984146118164 0.0 0.0 0.0 587
489
+ 588 0.00141692161560059 0.0 0.0 0.0 588
490
+ 589 0.00131011009216309 0.0 0.0 0.0 589
491
+ 590 0.0012810230255127 0.0 0.0 0.0 590
492
+ 591 0.00123500823974609 0.0 0.0 0.0 591
493
+ 592 0.00117397308349609 0.00999999999999979 0.00999999999999979 0.0 592
494
+ 593 0.00125908851623535 0.0 0.0 0.0 593
495
+ 594 0.00126194953918457 0.0 0.0 0.0 594
496
+ 595 0.00124597549438477 0.0 0.0 0.0 595
497
+ 596 0.00124692916870117 0.0 0.0 0.0 596
498
+ 597 0.00125479698181152 0.0 0.0 0.0 597
499
+ 598 0.00127911567687988 0.0 0.0 0.0 598
500
+ 599 0.00125789642333984 0.0 0.0 0.0 599
501
+ 600 0.00124406814575195 0.00999999999999979 0.00999999999999979 0.0 600
502
+ 601 0.00124907493591309 0.0 0.0 0.0 601
503
+ 602 0.00124216079711914 0.0 0.0 0.0 602
504
+ 603 0.00124907493591309 0.0 0.0 0.0 603
505
+ 604 0.00125384330749512 0.0 0.0 0.0 604
506
+ 605 0.00125694274902344 0.0 0.0 0.0 605
507
+ 606 0.00124192237854004 0.0 0.0 0.0 606
508
+ 607 0.00124502182006836 0.0 0.0 0.0 607
509
+ 608 0.0012509822845459 0.0100000000000007 0.0100000000000007 0.0 608
510
+ 609 0.00123906135559082 0.0 0.0 0.0 609
511
+ 610 0.0014030933380127 0.0 0.0 0.0 610
512
+ 611 0.00124883651733398 0.0 0.0 0.0 611
513
+ 612 0.00135397911071777 0.0 0.0 0.0 612
514
+ 613 0.00174593925476074 0.0 0.0 0.0 613
515
+ 614 0.00124716758728027 0.0 0.0 0.0 614
516
+ 615 0.00124812126159668 0.00999999999999979 0.00999999999999979 0.0 615
517
+ 616 0.00125503540039062 0.0 0.0 0.0 616
518
+ 617 0.00140786170959473 0.0 0.0 0.0 617
519
+ 618 0.00125312805175781 0.0 0.0 0.0 618
520
+ 619 0.0012509822845459 0.0 0.0 0.0 619
521
+ 620 0.00124096870422363 0.0 0.0 0.0 620
522
+ 621 0.0012359619140625 0.0 0.0 0.0 621
523
+ 622 0.00124382972717285 0.00999999999999979 0.00999999999999979 0.0 622
524
+ 623 0.00124406814575195 0.0 0.0 0.0 623
525
+ 624 0.00123000144958496 0.0 0.0 0.0 624
526
+ 625 0.00124001502990723 0.0 0.0 0.0 625
527
+ 626 0.00124001502990723 0.0 0.0 0.0 626
528
+ 627 0.00124001502990723 0.0 0.0 0.0 627
529
+ 628 0.00125885009765625 0.0 0.0 0.0 628
530
+ 629 0.00124907493591309 0.0 0.0 0.0 629
531
+ 630 0.00124192237854004 0.00999999999999979 0.00999999999999979 0.0 630
532
+ 631 0.00124406814575195 0.0 0.0 0.0 631
533
+ 632 0.0012519359588623 0.0 0.0 0.0 632
534
+ 633 0.00124502182006836 0.0 0.0 0.0 633
535
+ 634 0.00124287605285645 0.0 0.0 0.0 634
536
+ 635 0.00123906135559082 0.0 0.0 0.0 635
537
+ 636 0.00124621391296387 0.0 0.0 0.0 636
538
+ 637 0.00124502182006836 0.0 0.0 0.0 637
539
+ 638 0.00124692916870117 0.00999999999999979 0.00999999999999979 0.0 638
540
+ 639 0.0012509822845459 0.0 0.0 0.0 639
541
+ 640 0.00132584571838379 0.0 0.0 0.0 640
542
+ 641 0.00126409530639648 0.0 0.0 0.0 641
543
+ 642 0.00126504898071289 0.0 0.0 0.0 642
544
+ 643 0.00127911567687988 0.0 0.0 0.0 643
545
+ 644 0.0240340232849121 0.0300000000000002 0.0300000000000002 0.0 644
546
+ 645 0.0101561546325684 0.00999999999999979 0.00999999999999979 0.0 645
547
+ 646 0.00133299827575684 0.0 0.0 0.0 646
548
+ 647 0.00129604339599609 0.0 0.0 0.0 647
549
+ 648 0.00124382972717285 0.0 0.0 0.0 648
550
+ 649 0.00127410888671875 0.0 0.0 0.0 649
551
+ 650 0.00126409530639648 0.0 0.0 0.0 650
552
+ 651 0.0012519359588623 0.0 0.0 0.0 651
553
+ 652 0.00124597549438477 0.0100000000000007 0.0100000000000007 0.0 652
554
+ 653 0.000922918319702148 0.0 0.0 0.0 653
555
+ 654 0.00125503540039062 0.0 0.0 0.0 654
556
+ 655 0.00124287605285645 0.0 0.0 0.0 655
557
+ 656 0.00124692916870117 0.0 0.0 0.0 656
558
+ 657 0.00126004219055176 0.0 0.0 0.0 657
559
+ 658 0.00125384330749512 0.0 0.0 0.0 658
560
+ 659 0.0013279914855957 0.0 0.0 0.0 659
561
+ 660 0.00124502182006836 0.00999999999999979 0.00999999999999979 0.0 660
562
+ 661 0.00125598907470703 0.0 0.0 0.0 661
563
+ 662 0.00124192237854004 0.0 0.0 0.0 662
564
+ 663 0.00124096870422363 0.0 0.0 0.0 663
565
+ 664 0.00125312805175781 0.0 0.0 0.0 664
566
+ 665 0.00124692916870117 0.0 0.0 0.0 665
567
+ 666 0.00124597549438477 0.0 0.0 0.0 666
568
+ 667 0.00123977661132812 0.0 0.0 0.0 667
569
+ 668 0.00124406814575195 0.0 0.0 0.0 668
570
+ 669 0.00123500823974609 0.0 0.0 0.0 669
571
+ 670 0.00124502182006836 0.0 0.0 0.0 670
572
+ 671 0.00124502182006836 0.0 0.0 0.0 671
573
+ 672 0.00124382972717285 0.0 0.0 0.0 672
574
+ 673 0.00123190879821777 0.0 0.0 0.0 673
575
+ 674 0.00123500823974609 0.0 0.0 0.0 674
576
+ 675 0.00124692916870117 0.00999999999999979 0.00999999999999979 0.0 675
577
+ 676 0.00123310089111328 0.0 0.0 0.0 676
578
+ 677 0.00123095512390137 0.0 0.0 0.0 677
579
+ 678 0.00124192237854004 0.0 0.0 0.0 678
580
+ 679 0.00122690200805664 0.0 0.0 0.0 679
581
+ 680 0.00123286247253418 0.0 0.0 0.0 680
582
+ 681 0.00124096870422363 0.0 0.0 0.0 681
583
+ 682 0.00124192237854004 0.0 0.0 0.0 682
584
+ 683 0.00124692916870117 0.0100000000000007 0.0100000000000007 0.0 683
585
+ 684 0.0012359619140625 0.0 0.0 0.0 684
586
+ 685 0.00123286247253418 0.0 0.0 0.0 685
587
+ 686 0.00124001502990723 0.0 0.0 0.0 686
588
+ 687 0.00124001502990723 0.0 0.0 0.0 687
589
+ 688 0.00123786926269531 0.0 0.0 0.0 688
590
+ 689 0.00125002861022949 0.0 0.0 0.0 689
591
+ 690 0.00124907493591309 0.0 0.0 0.0 690
592
+ 691 0.00129103660583496 0.00999999999999979 0.00999999999999979 0.0 691
593
+ 692 0.00124311447143555 0.0 0.0 0.0 692
594
+ 693 0.00129890441894531 0.0 0.0 0.0 693
595
+ 694 0.00130796432495117 0.0 0.0 0.0 694
596
+ 695 0.00123500823974609 0.0 0.0 0.0 695
597
+ 696 0.00124716758728027 0.0 0.0 0.0 696
598
+ 697 0.00123906135559082 0.0 0.0 0.0 697
599
+ 698 0.00124287605285645 0.0 0.0 0.0 698
600
+ 699 0.00127696990966797 0.00999999999999979 0.00999999999999979 0.0 699
601
+ 700 0.00124907493591309 0.0 0.0 0.0 700
602
+ 701 0.0300769805908203 0.0300000000000002 0.0300000000000002 0.0 701
603
+ 702 0.0012669563293457 0.0 0.0 0.0 702
604
+ 703 0.00174999237060547 0.0 0.0 0.0 703
605
+ 704 0.00131797790527344 0.0 0.0 0.0 704
606
+ 705 0.00130391120910645 0.0 0.0 0.0 705
607
+ 706 0.00126886367797852 0.0 0.0 0.0 706
608
+ 707 0.00127601623535156 0.00999999999999979 0.00999999999999979 0.0 707
609
+ 708 0.00125503540039062 0.0 0.0 0.0 708
610
+ 709 0.00125312805175781 0.0 0.0 0.0 709
611
+ 710 0.00124597549438477 0.0 0.0 0.0 710
612
+ 711 0.00125217437744141 0.0 0.0 0.0 711
613
+ 712 0.00124311447143555 0.0 0.0 0.0 712
614
+ 713 0.00124287605285645 0.0 0.0 0.0 713
615
+ 714 0.00125503540039062 0.00999999999999979 0.00999999999999979 0.0 714
616
+ 715 0.0012519359588623 0.0 0.0 0.0 715
617
+ 716 0.00124502182006836 0.0 0.0 0.0 716
618
+ 717 0.00124502182006836 0.0 0.0 0.0 717
619
+ 718 0.00126814842224121 0.0 0.0 0.0 718
620
+ 719 0.00124883651733398 0.0 0.0 0.0 719
621
+ 720 0.00124812126159668 0.0 0.0 0.0 720
622
+ 721 0.00125408172607422 0.0 0.0 0.0 721
623
+ 722 0.00125694274902344 0.0100000000000007 0.0100000000000007 0.0 722
624
+ 723 0.00125002861022949 0.0 0.0 0.0 723
625
+ 724 0.0012509822845459 0.0 0.0 0.0 724
626
+ 725 0.00124502182006836 0.0 0.0 0.0 725
627
+ 726 0.00115799903869629 0.0 0.0 0.0 726
628
+ 727 0.00148391723632812 0.0 0.0 0.0 727
629
+ 728 0.00177001953125 0.0 0.0 0.0 728
630
+ 729 0.00183606147766113 0.00999999999999979 0.00999999999999979 0.0 729
631
+ 730 0.00171613693237305 0.0 0.0 0.0 730
632
+ 731 0.00128793716430664 0.0 0.0 0.0 731
633
+ 732 0.000819921493530273 0.0 0.0 0.0 732
634
+ 733 0.00124001502990723 0.0 0.0 0.0 733
635
+ 734 0.00124692916870117 0.0 0.0 0.0 734
636
+ 735 0.00124001502990723 0.0 0.0 0.0 735
637
+ 736 0.00123882293701172 0.0 0.0 0.0 736
638
+ 737 0.00124597549438477 0.00999999999999979 0.00999999999999979 0.0 737
639
+ 738 0.00124502182006836 0.0 0.0 0.0 738
640
+ 739 0.00124096870422363 0.0 0.0 0.0 739
641
+ 740 0.00124502182006836 0.0 0.0 0.0 740
642
+ 741 0.00124096870422363 0.0 0.0 0.0 741
643
+ 742 0.00124287605285645 0.0 0.0 0.0 742
644
+ 743 0.00124096870422363 0.0 0.0 0.0 743
645
+ 744 0.00124692916870117 0.00999999999999979 0.00999999999999979 0.0 744
646
+ 745 0.00138497352600098 0.0 0.0 0.0 745
647
+ 746 0.00129485130310059 0.0 0.0 0.0 746
648
+ 747 0.0012509822845459 0.0 0.0 0.0 747
649
+ 748 0.00124907493591309 0.0 0.0 0.0 748
650
+ 749 0.00123500823974609 0.0 0.0 0.0 749
651
+ 750 0.00124621391296387 0.0 0.0 0.0 750
652
+ 751 0.00124096870422363 0.0 0.0 0.0 751
653
+ 752 0.00123810768127441 0.0100000000000007 0.0100000000000007 0.0 752
654
+ 753 0.00124287605285645 0.0 0.0 0.0 753
655
+ 754 0.00124716758728027 0.0 0.0 0.0 754
656
+ 755 0.00124311447143555 0.0 0.0 0.0 755
657
+ 756 0.00124883651733398 0.0 0.0 0.0 756
658
+ 757 0.0014030933380127 0.0 0.0 0.0 757
659
+ 758 0.0220100879669189 0.0199999999999996 0.0199999999999996 0.0 758
660
+ 759 0.00328278541564941 0.00999999999999979 0.00999999999999979 0.0 759
661
+ 760 0.00999212265014648 0.00999999999999979 0.00999999999999979 0.0 760
662
+ 761 0.00151991844177246 0.0 0.0 0.0 761
663
+ 762 0.00131011009216309 0.0 0.0 0.0 762
664
+ 763 0.00128889083862305 0.0 0.0 0.0 763
665
+ 764 0.0012819766998291 0.0 0.0 0.0 764
666
+ 765 0.0012819766998291 0.0 0.0 0.0 765
667
+ 766 0.00126886367797852 0.0100000000000007 0.0100000000000007 0.0 766
668
+ 767 0.00125288963317871 0.0 0.0 0.0 767
669
+ 768 0.00125408172607422 0.0 0.0 0.0 768
670
+ 769 0.00125718116760254 0.0 0.0 0.0 769
671
+ 770 0.00125384330749512 0.0 0.0 0.0 770
672
+ 771 0.00125002861022949 0.0 0.0 0.0 771
673
+ 772 0.00124406814575195 0.0 0.0 0.0 772
674
+ 773 0.00125002861022949 0.00999999999999979 0.00999999999999979 0.0 773
675
+ 774 0.0012509822845459 0.0 0.0 0.0 774
676
+ 775 0.00124502182006836 0.0 0.0 0.0 775
677
+ 776 0.00124788284301758 0.0 0.0 0.0 776
678
+ 777 0.00125408172607422 0.0 0.0 0.0 777
679
+ 778 0.00125288963317871 0.0 0.0 0.0 778
680
+ 779 0.00124788284301758 0.0 0.0 0.0 779
681
+ 780 0.00124287605285645 0.0 0.0 0.0 780
682
+ 781 0.00125694274902344 0.00999999999999979 0.00999999999999979 0.0 781
683
+ 782 0.00124096870422363 0.0 0.0 0.0 782
684
+ 783 0.00123691558837891 0.0 0.0 0.0 783
685
+ 784 0.00124287605285645 0.0 0.0 0.0 784
686
+ 785 0.00124597549438477 0.0 0.0 0.0 785
687
+ 786 0.00123786926269531 0.0 0.0 0.0 786
688
+ 787 0.00124502182006836 0.0 0.0 0.0 787
689
+ 788 0.00124096870422363 0.0 0.0 0.0 788
690
+ 789 0.00124096870422363 0.00999999999999979 0.00999999999999979 0.0 789
691
+ 790 0.00123500823974609 0.0 0.0 0.0 790
692
+ 791 0.00124001502990723 0.0 0.0 0.0 791
693
+ 792 0.00124001502990723 0.0 0.0 0.0 792
694
+ 793 0.00123000144958496 0.0 0.0 0.0 793
695
+ 794 0.00124406814575195 0.0 0.0 0.0 794
696
+ 795 0.00123691558837891 0.0 0.0 0.0 795
697
+ 796 0.00123286247253418 0.0 0.0 0.0 796
698
+ 797 0.00123906135559082 0.0100000000000007 0.0100000000000007 0.0 797
699
+ 798 0.00120997428894043 0.0 0.0 0.0 798
700
+ 799 0.00156807899475098 0.0 0.0 0.0 799
701
+ 800 0.00123286247253418 0.0 0.0 0.0 800
702
+ 801 0.00125002861022949 0.0 0.0 0.0 801
703
+ 802 0.0012199878692627 0.0 0.0 0.0 802
704
+ 803 0.00123405456542969 0.0 0.0 0.0 803
705
+ 804 0.0012519359588623 0.00999999999999979 0.00999999999999979 0.0 804
706
+ 805 0.00124192237854004 0.0 0.0 0.0 805
707
+ 806 0.00124406814575195 0.0 0.0 0.0 806
708
+ 807 0.00124001502990723 0.0 0.0 0.0 807
709
+ 808 0.00124692916870117 0.0 0.0 0.0 808
710
+ 809 0.00125002861022949 0.0 0.0 0.0 809
711
+ 810 0.00125312805175781 0.0 0.0 0.0 810
712
+ 811 0.00126981735229492 0.0 0.0 0.0 811
713
+ 812 0.00124001502990723 0.00999999999999979 0.00999999999999979 0.0 812
714
+ 813 0.00124597549438477 0.0 0.0 0.0 813
715
+ 814 0.00126290321350098 0.0 0.0 0.0 814
716
+ 815 0.0310249328613281 0.0300000000000002 0.0300000000000002 0.0 815
717
+ 816 0.000841140747070312 0.0 0.0 0.0 816
718
+ 817 0.000878095626831055 0.0 0.0 0.0 817
719
+ 818 0.000874042510986328 0.0 0.0 0.0 818
720
+ 819 0.000869035720825195 0.0 0.0 0.0 819
721
+ 820 0.0012819766998291 0.0 0.0 0.0 820
722
+ 821 0.00133609771728516 0.00999999999999979 0.00999999999999979 0.0 821
723
+ 822 0.0012660026550293 0.0 0.0 0.0 822
724
+ 823 0.0013270378112793 0.0 0.0 0.0 823
725
+ 824 0.00125718116760254 0.0 0.0 0.0 824
726
+ 825 0.00124907493591309 0.0 0.0 0.0 825
727
+ 826 0.00137901306152344 0.0 0.0 0.0 826
728
+ 827 0.00125503540039062 0.0 0.0 0.0 827
729
+ 828 0.0012509822845459 0.0 0.0 0.0 828
730
+ 829 0.00126791000366211 0.00999999999999979 0.00999999999999979 0.0 829
731
+ 830 0.00128698348999023 0.0 0.0 0.0 830
732
+ 831 0.00125598907470703 0.0 0.0 0.0 831
733
+ 832 0.00135207176208496 0.0 0.0 0.0 832
734
+ 833 0.000869035720825195 0.0 0.0 0.0 833
735
+ 834 0.00125503540039062 0.0 0.0 0.0 834
736
+ 835 0.0012519359588623 0.0 0.0 0.0 835
737
+ 836 0.00126004219055176 0.0 0.0 0.0 836
738
+ 837 0.00126099586486816 0.0100000000000007 0.0100000000000007 0.0 837
739
+ 838 0.00181698799133301 0.0 0.0 0.0 838
740
+ 839 0.00126290321350098 0.0 0.0 0.0 839
741
+ 840 0.00124096870422363 0.0 0.0 0.0 840
742
+ 841 0.00118899345397949 0.0 0.0 0.0 841
743
+ 842 0.00124096870422363 0.0 0.0 0.0 842
744
+ 843 0.00123286247253418 0.0 0.0 0.0 843
745
+ 844 0.00165700912475586 0.00999999999999979 0.00999999999999979 0.0 844
746
+ 845 0.00125789642333984 0.0 0.0 0.0 845
747
+ 846 0.00123405456542969 0.0 0.0 0.0 846
748
+ 847 0.00123095512390137 0.0 0.0 0.0 847
749
+ 848 0.0012509822845459 0.0 0.0 0.0 848
750
+ 849 0.00123906135559082 0.0 0.0 0.0 849
751
+ 850 0.00165104866027832 0.0 0.0 0.0 850
752
+ 851 0.00123906135559082 0.00999999999999979 0.00999999999999979 0.0 851
753
+ 852 0.00123786926269531 0.0 0.0 0.0 852
754
+ 853 0.00120902061462402 0.0 0.0 0.0 853
755
+ 854 0.00130009651184082 0.0 0.0 0.0 854
756
+ 855 0.00124502182006836 0.0 0.0 0.0 855
757
+ 856 0.0016329288482666 0.0 0.0 0.0 856
758
+ 857 0.0012509822845459 0.0 0.0 0.0 857
759
+ 858 0.00124692916870117 0.0 0.0 0.0 858
760
+ 859 0.00129890441894531 0.00999999999999979 0.00999999999999979 0.0 859
761
+ 860 0.00123786926269531 0.0 0.0 0.0 860
762
+ 861 0.00123786926269531 0.0 0.0 0.0 861
763
+ 862 0.0016181468963623 0.0 0.0 0.0 862
764
+ 863 0.00124192237854004 0.0 0.0 0.0 863
765
+ 864 0.00124692916870117 0.0 0.0 0.0 864
766
+ 865 0.00124597549438477 0.0 0.0 0.0 865
767
+ 866 0.00124478340148926 0.0100000000000007 0.0100000000000007 0.0 866
768
+ 867 0.00123500823974609 0.0 0.0 0.0 867
769
+ 868 0.00165414810180664 0.0 0.0 0.0 868
770
+ 869 0.00124502182006836 0.0 0.0 0.0 869
771
+ 870 0.0012669563293457 0.0 0.0 0.0 870
772
+ 871 0.0018620491027832 0.0 0.0 0.0 871
773
+ 872 0.0325958728790283 0.04 0.04 0.0 872
774
+ 873 0.000857114791870117 0.0 0.0 0.0 873
775
+ 874 0.00117611885070801 0.0 0.0 0.0 874
776
+ 875 0.000876903533935547 0.0 0.0 0.0 875
777
+ 876 0.00108814239501953 0.0 0.0 0.0 876
778
+ 877 0.00129008293151855 0.0 0.0 0.0 877
779
+ 878 0.00138592720031738 0.0 0.0 0.0 878
780
+ 879 0.00126004219055176 0.0 0.0 0.0 879
781
+ 880 0.00133490562438965 0.00999999999999979 0.00999999999999979 0.0 880
782
+ 881 0.00133109092712402 0.0 0.0 0.0 881
783
+ 882 0.00126004219055176 0.0 0.0 0.0 882
784
+ 883 0.00134086608886719 0.0 0.0 0.0 883
785
+ 884 0.00124907493591309 0.0 0.0 0.0 884
786
+ 885 0.00122594833374023 0.0 0.0 0.0 885
787
+ 886 0.00130510330200195 0.0 0.0 0.0 886
788
+ 887 0.00134396553039551 0.0 0.0 0.0 887
789
+ 888 0.00126194953918457 0.00999999999999979 0.00999999999999979 0.0 888
790
+ 889 0.00120782852172852 0.0 0.0 0.0 889
791
+ 890 0.00124692916870117 0.0 0.0 0.0 890
792
+ 891 0.00125813484191895 0.0 0.0 0.0 891
793
+ 892 0.0012509822845459 0.0 0.0 0.0 892
794
+ 893 0.00136804580688477 0.0 0.0 0.0 893
795
+ 894 0.00125718116760254 0.0 0.0 0.0 894
796
+ 895 0.00125312805175781 0.00999999999999979 0.00999999999999979 0.0 895
797
+ 896 0.00126218795776367 0.0 0.0 0.0 896
798
+ 897 0.00123286247253418 0.0 0.0 0.0 897
799
+ 898 0.00124406814575195 0.0 0.0 0.0 898
800
+ 899 0.00131702423095703 0.0 0.0 0.0 899
801
+ 900 0.00123405456542969 0.0 0.0 0.0 900
802
+ 901 0.00121402740478516 0.0 0.0 0.0 901
803
+ 902 0.00123882293701172 0.0 0.0 0.0 902
804
+ 903 0.00123310089111328 0.00999999999999979 0.00999999999999979 0.0 903
805
+ 904 0.00124096870422363 0.0 0.0 0.0 904
806
+ 905 0.00147390365600586 0.0 0.0 0.0 905
807
+ 906 0.0012509822845459 0.0 0.0 0.0 906
808
+ 907 0.00124692916870117 0.0 0.0 0.0 907
809
+ 908 0.00124907493591309 0.0 0.0 0.0 908
810
+ 909 0.00124597549438477 0.0 0.0 0.0 909
811
+ 910 0.00124001502990723 0.0 0.0 0.0 910
812
+ 911 0.00142002105712891 0.0100000000000007 0.0100000000000007 0.0 911
813
+ 912 0.00124502182006836 0.0 0.0 0.0 912
814
+ 913 0.00124502182006836 0.0 0.0 0.0 913
815
+ 914 0.0012819766998291 0.0 0.0 0.0 914
816
+ 915 0.00123786926269531 0.0 0.0 0.0 915
817
+ 916 0.00124287605285645 0.0 0.0 0.0 916
818
+ 917 0.00142312049865723 0.0 0.0 0.0 917
819
+ 918 0.0012509822845459 0.00999999999999979 0.00999999999999979 0.0 918
820
+ 919 0.00124502182006836 0.0 0.0 0.0 919
821
+ 920 0.00124692916870117 0.0 0.0 0.0 920
822
+ 921 0.00124192237854004 0.0 0.0 0.0 921
823
+ 922 0.00119709968566895 0.0 0.0 0.0 922
824
+ 923 0.00140190124511719 0.0 0.0 0.0 923
825
+ 924 0.00125002861022949 0.0 0.0 0.0 924
826
+ 925 0.00124502182006836 0.0 0.0 0.0 925
827
+ 926 0.00124597549438477 0.00999999999999979 0.00999999999999979 0.0 926
828
+ 927 0.00127720832824707 0.0 0.0 0.0 927
829
+ 928 0.00126409530639648 0.0 0.0 0.0 928
830
+ 929 0.0312209129333496 0.0300000000000002 0.0300000000000002 0.0 929
831
+ 930 0.00214791297912598 0.0 0.0 0.0 930
832
+ 931 0.00183796882629395 0.0 0.0 0.0 931
833
+ 932 0.00143814086914062 0.00999999999999979 0.00999999999999979 0.0 932
834
+ 933 0.00145792961120605 0.0 0.0 0.0 933
835
+ 934 0.00152087211608887 0.0 0.0 0.0 934
836
+ 935 0.00213003158569336 0.0 0.0 0.0 935
837
+ 936 0.00166201591491699 0.0 0.0 0.0 936
838
+ 937 0.0016930103302002 0.0 0.0 0.0 937
839
+ 938 0.00139403343200684 0.00999999999999979 0.00999999999999979 0.0 938
840
+ 939 0.00214695930480957 0.0 0.0 0.0 939
841
+ 940 0.00102400779724121 0.0 0.0 0.0 940
842
+ 941 0.0012660026550293 0.0 0.0 0.0 941
843
+ 942 0.00126004219055176 0.0 0.0 0.0 942
844
+ 943 0.00126194953918457 0.0 0.0 0.0 943
845
+ 944 0.00125813484191895 0.0 0.0 0.0 944
846
+ 945 0.00152897834777832 0.0100000000000007 0.0100000000000007 0.0 945
847
+ 946 0.0012669563293457 0.0 0.0 0.0 946
848
+ 947 0.00125408172607422 0.0 0.0 0.0 947
849
+ 948 0.00125980377197266 0.0 0.0 0.0 948
850
+ 949 0.00126481056213379 0.0 0.0 0.0 949
851
+ 950 0.00125908851623535 0.0 0.0 0.0 950
852
+ 951 0.00138092041015625 0.0 0.0 0.0 951
853
+ 952 0.00125384330749512 0.00999999999999979 0.00999999999999979 0.0 952
854
+ 953 0.00108504295349121 0.0 0.0 0.0 953
855
+ 954 0.0012509822845459 0.0 0.0 0.0 954
856
+ 955 0.00125980377197266 0.0 0.0 0.0 955
857
+ 956 0.00131511688232422 0.0 0.0 0.0 956
858
+ 957 0.00130796432495117 0.0 0.0 0.0 957
859
+ 958 0.00124597549438477 0.0 0.0 0.0 958
860
+ 959 0.00125002861022949 0.0 0.0 0.0 959
861
+ 960 0.00124287605285645 0.00999999999999979 0.00999999999999979 0.0 960
862
+ 961 0.00124812126159668 0.0 0.0 0.0 961
863
+ 962 0.0012509822845459 0.0 0.0 0.0 962
864
+ 963 0.00130891799926758 0.0 0.0 0.0 963
865
+ 964 0.00123500823974609 0.0 0.0 0.0 964
866
+ 965 0.00124096870422363 0.0 0.0 0.0 965
867
+ 966 0.00124883651733398 0.0 0.0 0.0 966
868
+ 967 0.00124192237854004 0.0 0.0 0.0 967
869
+ 968 0.00124502182006836 0.00999999999999979 0.00999999999999979 0.0 968
870
+ 969 0.00124597549438477 0.0 0.0 0.0 969
871
+ 970 0.00130796432495117 0.0 0.0 0.0 970
872
+ 971 0.00124716758728027 0.0 0.0 0.0 971
873
+ 972 0.00125408172607422 0.0 0.0 0.0 972
874
+ 973 0.00125384330749512 0.0 0.0 0.0 973
875
+ 974 0.00124907493591309 0.0 0.0 0.0 974
876
+ 975 0.00124502182006836 0.0 0.0 0.0 975
877
+ 976 0.00131011009216309 0.0100000000000007 0.0100000000000007 0.0 976
878
+ 977 0.00125384330749512 0.0 0.0 0.0 977
879
+ 978 0.00124597549438477 0.0 0.0 0.0 978
880
+ 979 0.00125503540039062 0.0 0.0 0.0 979
881
+ 980 0.00125384330749512 0.0 0.0 0.0 980
882
+ 981 0.0012509822845459 0.0 0.0 0.0 981
883
+ 982 0.00131988525390625 0.0 0.0 0.0 982
884
+ 983 0.00126099586486816 0.00999999999999979 0.00999999999999979 0.0 983
885
+ 984 0.00126004219055176 0.0 0.0 0.0 984
886
+ 985 0.00127100944519043 0.0 0.0 0.0 985
887
+ 986 0.0304250717163086 0.0300000000000002 0.0300000000000002 0.0 986
888
+ 987 0.00131678581237793 0.0 0.0 0.0 987
889
+ 988 0.00130200386047363 0.0 0.0 0.0 988
890
+ 989 0.00139880180358887 0.0 0.0 0.0 989
891
+ 990 0.00517010688781738 0.0 0.0 0.0 990
892
+ 991 0.00128984451293945 0.00999999999999979 0.00999999999999979 0.0 991
893
+ 992 0.00125789642333984 0.0 0.0 0.0 992
894
+ 993 0.00152301788330078 0.0 0.0 0.0 993
895
+ 994 0.00125598907470703 0.0 0.0 0.0 994
896
+ 995 0.00125312805175781 0.0 0.0 0.0 995
897
+ 996 0.00125312805175781 0.0 0.0 0.0 996
898
+ 997 0.00125598907470703 0.0 0.0 0.0 997
899
+ 998 0.00134396553039551 0.0 0.0 0.0 998
900
+ 999 0.00124979019165039 0.00999999999999979 0.00999999999999979 0.0 999
901
+ 1000 0.00125598907470703 0.0 0.0 0.0 1000