tensor_stream 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (142) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +1 -0
  4. data/Gemfile +1 -1
  5. data/LICENSE.txt +1 -1
  6. data/README.md +34 -34
  7. data/Rakefile +3 -3
  8. data/USAGE_GUIDE.md +235 -0
  9. data/bin/stubgen +20 -0
  10. data/exe/model_utils +2 -2
  11. data/lib/tensor_stream.rb +45 -44
  12. data/lib/tensor_stream/constant.rb +2 -2
  13. data/lib/tensor_stream/control_flow.rb +1 -1
  14. data/lib/tensor_stream/debugging/debugging.rb +2 -2
  15. data/lib/tensor_stream/dynamic_stitch.rb +2 -2
  16. data/lib/tensor_stream/evaluator/base_evaluator.rb +18 -18
  17. data/lib/tensor_stream/evaluator/buffer.rb +1 -1
  18. data/lib/tensor_stream/evaluator/evaluator.rb +2 -2
  19. data/lib/tensor_stream/evaluator/operation_helpers/array_ops_helper.rb +41 -41
  20. data/lib/tensor_stream/evaluator/operation_helpers/math_helper.rb +1 -1
  21. data/lib/tensor_stream/evaluator/ruby/array_ops.rb +39 -39
  22. data/lib/tensor_stream/evaluator/ruby/check_ops.rb +2 -2
  23. data/lib/tensor_stream/evaluator/ruby/images_ops.rb +18 -18
  24. data/lib/tensor_stream/evaluator/ruby/math_ops.rb +13 -14
  25. data/lib/tensor_stream/evaluator/ruby/nn_ops.rb +33 -36
  26. data/lib/tensor_stream/evaluator/ruby/random_ops.rb +20 -21
  27. data/lib/tensor_stream/evaluator/ruby_evaluator.rb +36 -49
  28. data/lib/tensor_stream/exceptions.rb +1 -1
  29. data/lib/tensor_stream/generated_stub/ops.rb +691 -0
  30. data/lib/tensor_stream/generated_stub/stub_file.erb +24 -0
  31. data/lib/tensor_stream/graph.rb +18 -18
  32. data/lib/tensor_stream/graph_builder.rb +17 -17
  33. data/lib/tensor_stream/graph_deserializers/protobuf.rb +97 -97
  34. data/lib/tensor_stream/graph_deserializers/yaml_loader.rb +1 -1
  35. data/lib/tensor_stream/graph_keys.rb +3 -3
  36. data/lib/tensor_stream/graph_serializers/graphml.rb +33 -33
  37. data/lib/tensor_stream/graph_serializers/packer.rb +23 -23
  38. data/lib/tensor_stream/graph_serializers/pbtext.rb +38 -42
  39. data/lib/tensor_stream/graph_serializers/serializer.rb +3 -2
  40. data/lib/tensor_stream/graph_serializers/yaml.rb +5 -5
  41. data/lib/tensor_stream/helpers/infer_shape.rb +56 -56
  42. data/lib/tensor_stream/helpers/op_helper.rb +8 -9
  43. data/lib/tensor_stream/helpers/string_helper.rb +15 -15
  44. data/lib/tensor_stream/helpers/tensor_mixins.rb +17 -17
  45. data/lib/tensor_stream/images.rb +1 -1
  46. data/lib/tensor_stream/initializer.rb +1 -1
  47. data/lib/tensor_stream/math_gradients.rb +28 -187
  48. data/lib/tensor_stream/monkey_patches/array.rb +1 -1
  49. data/lib/tensor_stream/monkey_patches/float.rb +1 -1
  50. data/lib/tensor_stream/monkey_patches/integer.rb +1 -1
  51. data/lib/tensor_stream/monkey_patches/op_patch.rb +5 -5
  52. data/lib/tensor_stream/monkey_patches/patch.rb +1 -1
  53. data/lib/tensor_stream/nn/nn_ops.rb +17 -15
  54. data/lib/tensor_stream/op_maker.rb +180 -0
  55. data/lib/tensor_stream/operation.rb +17 -17
  56. data/lib/tensor_stream/ops.rb +95 -384
  57. data/lib/tensor_stream/ops/add.rb +23 -0
  58. data/lib/tensor_stream/ops/argmax.rb +14 -0
  59. data/lib/tensor_stream/ops/argmin.rb +14 -0
  60. data/lib/tensor_stream/ops/case.rb +17 -0
  61. data/lib/tensor_stream/ops/cast.rb +15 -0
  62. data/lib/tensor_stream/ops/ceil.rb +15 -0
  63. data/lib/tensor_stream/ops/const.rb +0 -0
  64. data/lib/tensor_stream/ops/cos.rb +10 -0
  65. data/lib/tensor_stream/ops/div.rb +21 -0
  66. data/lib/tensor_stream/ops/equal.rb +15 -0
  67. data/lib/tensor_stream/ops/expand_dims.rb +17 -0
  68. data/lib/tensor_stream/ops/fill.rb +19 -0
  69. data/lib/tensor_stream/ops/floor.rb +15 -0
  70. data/lib/tensor_stream/ops/floor_div.rb +15 -0
  71. data/lib/tensor_stream/ops/greater.rb +11 -0
  72. data/lib/tensor_stream/ops/greater_equal.rb +11 -0
  73. data/lib/tensor_stream/ops/less_equal.rb +15 -0
  74. data/lib/tensor_stream/ops/log.rb +14 -0
  75. data/lib/tensor_stream/ops/mat_mul.rb +60 -0
  76. data/lib/tensor_stream/ops/max.rb +15 -0
  77. data/lib/tensor_stream/ops/min.rb +15 -0
  78. data/lib/tensor_stream/ops/mod.rb +23 -0
  79. data/lib/tensor_stream/ops/mul.rb +21 -0
  80. data/lib/tensor_stream/ops/negate.rb +14 -0
  81. data/lib/tensor_stream/ops/ones_like.rb +19 -0
  82. data/lib/tensor_stream/ops/pow.rb +25 -0
  83. data/lib/tensor_stream/ops/prod.rb +60 -0
  84. data/lib/tensor_stream/ops/random_uniform.rb +18 -0
  85. data/lib/tensor_stream/ops/range.rb +20 -0
  86. data/lib/tensor_stream/ops/rank.rb +13 -0
  87. data/lib/tensor_stream/ops/reshape.rb +24 -0
  88. data/lib/tensor_stream/ops/round.rb +15 -0
  89. data/lib/tensor_stream/ops/shape.rb +14 -0
  90. data/lib/tensor_stream/ops/sigmoid.rb +10 -0
  91. data/lib/tensor_stream/ops/sign.rb +12 -0
  92. data/lib/tensor_stream/ops/sin.rb +10 -0
  93. data/lib/tensor_stream/ops/size.rb +16 -0
  94. data/lib/tensor_stream/ops/sub.rb +24 -0
  95. data/lib/tensor_stream/ops/sum.rb +27 -0
  96. data/lib/tensor_stream/ops/tan.rb +12 -0
  97. data/lib/tensor_stream/ops/tanh.rb +10 -0
  98. data/lib/tensor_stream/ops/tile.rb +19 -0
  99. data/lib/tensor_stream/ops/zeros.rb +15 -0
  100. data/lib/tensor_stream/placeholder.rb +2 -2
  101. data/lib/tensor_stream/profile/report_tool.rb +3 -3
  102. data/lib/tensor_stream/session.rb +36 -38
  103. data/lib/tensor_stream/tensor.rb +2 -2
  104. data/lib/tensor_stream/tensor_shape.rb +4 -4
  105. data/lib/tensor_stream/train/adadelta_optimizer.rb +8 -8
  106. data/lib/tensor_stream/train/adagrad_optimizer.rb +3 -3
  107. data/lib/tensor_stream/train/adam_optimizer.rb +11 -11
  108. data/lib/tensor_stream/train/learning_rate_decay.rb +2 -2
  109. data/lib/tensor_stream/train/momentum_optimizer.rb +7 -7
  110. data/lib/tensor_stream/train/optimizer.rb +9 -9
  111. data/lib/tensor_stream/train/rmsprop_optimizer.rb +16 -16
  112. data/lib/tensor_stream/train/saver.rb +14 -14
  113. data/lib/tensor_stream/train/slot_creator.rb +6 -6
  114. data/lib/tensor_stream/train/utils.rb +12 -12
  115. data/lib/tensor_stream/trainer.rb +10 -10
  116. data/lib/tensor_stream/types.rb +1 -1
  117. data/lib/tensor_stream/utils.rb +33 -32
  118. data/lib/tensor_stream/utils/freezer.rb +5 -5
  119. data/lib/tensor_stream/variable.rb +5 -5
  120. data/lib/tensor_stream/variable_scope.rb +1 -1
  121. data/lib/tensor_stream/version.rb +1 -1
  122. data/samples/{iris.data → datasets/iris.data} +0 -0
  123. data/samples/jupyter_notebooks/linear_regression.ipynb +463 -0
  124. data/samples/{iris.rb → neural_networks/iris.rb} +21 -23
  125. data/samples/{mnist_data.rb → neural_networks/mnist_data.rb} +8 -8
  126. data/samples/neural_networks/raw_neural_net_sample.rb +112 -0
  127. data/samples/{rnn.rb → neural_networks/rnn.rb} +28 -31
  128. data/samples/{nearest_neighbor.rb → others/nearest_neighbor.rb} +12 -12
  129. data/samples/regression/linear_regression.rb +63 -0
  130. data/samples/{logistic_regression.rb → regression/logistic_regression.rb} +14 -16
  131. data/tensor_stream.gemspec +9 -8
  132. metadata +89 -19
  133. data/data_1.json +0 -4764
  134. data/data_2.json +0 -4764
  135. data/data_actual.json +0 -28
  136. data/data_expected.json +0 -28
  137. data/data_input.json +0 -28
  138. data/samples/error.graphml +0 -2755
  139. data/samples/gradient_sample.graphml +0 -1255
  140. data/samples/linear_regression.rb +0 -69
  141. data/samples/multigpu.rb +0 -73
  142. data/samples/raw_neural_net_sample.rb +0 -112
@@ -1,43 +1,41 @@
1
1
  # Model based on https://www.kaggle.com/autuanliuyc/logistic-regression-with-tensorflow
2
2
 
3
3
  require "bundler/setup"
4
- require 'tensor_stream'
4
+ require "tensor_stream"
5
5
 
6
6
  tf = TensorStream
7
7
 
8
- rows = File.readlines(File.join("samples","iris.data")).map {|l| l.chomp.split(',') }
8
+ rows = File.readlines(File.join("samples", "datasets", "iris.data")).map {|l| l.chomp.split(",") }
9
9
 
10
10
  iris = rows[0...100].shuffle!
11
11
 
12
- transformed_data = iris.collect do |row|
12
+ transformed_data = iris.collect { |row|
13
13
  row[0, 4].map(&:to_f)
14
- end
14
+ }
15
15
 
16
- columns = (0..3).map do |i|
16
+ columns = (0..3).map { |i|
17
17
  transformed_data.map { |row| row[i] }
18
- end
18
+ }
19
19
 
20
20
  # Normalize data values before feeding into network
21
- normalize = -> (val, high, low) { (val - low) / (high - low) } # maps input to float between 0 and 1
21
+ normalize = ->(val, high, low) { (val - low) / (high - low) } # maps input to float between 0 and 1
22
22
 
23
23
  transformed_data.map! do |row|
24
24
  row.map.with_index do |val, j|
25
25
  max, min = columns[j].max, columns[j].min
26
- normalize.(val, max, min)
26
+ normalize.call(val, max, min)
27
27
  end
28
28
  end
29
29
 
30
-
31
30
  srand(5)
32
31
  seed = 5
33
32
  tf.set_random_seed(seed)
34
33
 
35
- train_x = transformed_data[0..50].map { |x| x[0..3].map(&:to_f) }
36
- train_y = iris[0..50].map { |x| x[4] == 'Iris-setosa' ? 0.0 : 1.0 }
34
+ train_x = transformed_data[0..50].map { |x| x[0..3].map(&:to_f) }
35
+ train_y = iris[0..50].map { |x| x[4] == "Iris-setosa" ? 0.0 : 1.0 }
37
36
 
38
37
  test_x = transformed_data[51..100].map { |x| x[0..3].map(&:to_f) }
39
- test_y = iris[51..100].map { |x| x[4] == 'Iris-setosa' ? 0.0 : 1.0 }
40
-
38
+ test_y = iris[51..100].map { |x| x[4] == "Iris-setosa" ? 0.0 : 1.0 }
41
39
 
42
40
  A = tf.random_normal([4, 1]).var
43
41
  b = tf.random_normal([1, 1]).var
@@ -74,12 +72,12 @@ test_acc = []
74
72
  (0..iter_num).each do |epoch|
75
73
  batch_train_X = train_x
76
74
  batch_train_y = [train_y].transpose
77
- sess.run(goal, feed_dict: { data => batch_train_X, target => batch_train_y })
75
+ sess.run(goal, feed_dict: {data => batch_train_X, target => batch_train_y})
78
76
 
79
77
  if epoch % 50 == 0
80
78
  temp_loss = sess.run(loss, feed_dict: {data => batch_train_X, target => batch_train_y})
81
- temp_train_acc = sess.run(accuracy, feed_dict: { data => batch_train_X, target => batch_train_y})
79
+ temp_train_acc = sess.run(accuracy, feed_dict: {data => batch_train_X, target => batch_train_y})
82
80
  temp_test_acc = sess.run(accuracy, feed_dict: {data => test_x, target => [test_y].transpose})
83
81
  puts "epoch #{epoch}, loss #{temp_loss} train acc: #{temp_train_acc}, test acc: #{temp_test_acc}"
84
82
  end
85
- end
83
+ end
@@ -1,7 +1,6 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
1
+ lib = File.expand_path("../lib", __FILE__)
3
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'tensor_stream/version'
3
+ require "tensor_stream/version"
5
4
 
6
5
  Gem::Specification.new do |spec|
7
6
  spec.name = "tensor_stream"
@@ -9,21 +8,21 @@ Gem::Specification.new do |spec|
9
8
  spec.authors = ["Joseph Emmanuel Dayo"]
10
9
  spec.email = ["joseph.dayo@gmail.com"]
11
10
 
12
- spec.summary = %q{A Pure ruby tensorflow implementation}
13
- spec.description = %q{A reimplementation of TensorFlow for ruby. This is a ground up implementation with no dependency on TensorFlow. Effort has been made to make the programming style as near to TensorFlow as possible, comes with a pure ruby evaluator by default as well with support for an opencl evaluator.}
11
+ spec.summary = "A Pure ruby tensorflow implementation"
12
+ spec.description = "A reimplementation of TensorFlow for ruby. This is a ground up implementation with no dependency on TensorFlow. Effort has been made to make the programming style as near to TensorFlow as possible, comes with a pure ruby evaluator by default as well with support for an opencl evaluator."
14
13
  spec.homepage = "http://www.github.com/jedld/tensor_stream"
15
14
  spec.license = "MIT"
16
15
 
17
16
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
17
  # to allow pushing to a single host or delete this section to allow pushing to any host.
19
18
  if spec.respond_to?(:metadata)
20
- spec.metadata['allowed_push_host'] = "https://rubygems.org"
19
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
21
20
  else
22
21
  raise "RubyGems 2.0 or newer is required to protect against " \
23
22
  "public gem pushes."
24
23
  end
25
24
 
26
- spec.files = `git ls-files -z`.split("\x0").reject do |f|
25
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
26
  f.match(%r{^(test|spec|features)/})
28
27
  end
29
28
  spec.bindir = "exe"
@@ -35,14 +34,16 @@ Gem::Specification.new do |spec|
35
34
  spec.add_development_dependency "rspec", "~> 3.0"
36
35
  spec.add_development_dependency "awesome_print"
37
36
  spec.add_development_dependency "rubocop"
38
- if RUBY_ENGINE == 'ruby'
37
+ if RUBY_ENGINE == "ruby"
39
38
  spec.add_development_dependency "pry-byebug"
40
39
  spec.add_development_dependency "byepry"
40
+ spec.add_development_dependency "tensor_stream-opencl"
41
41
  end
42
42
  spec.add_development_dependency "colorize"
43
43
  spec.add_development_dependency "rspec_junit_formatter"
44
44
  spec.add_development_dependency "mnist-learn"
45
45
  spec.add_development_dependency "simplecov"
46
+ spec.add_development_dependency "standard"
46
47
  spec.add_dependency "deep_merge"
47
48
  spec.add_dependency "concurrent-ruby"
48
49
  spec.add_dependency "chunky_png"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tensor_stream
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joseph Emmanuel Dayo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-01-06 00:00:00.000000000 Z
11
+ date: 2019-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -108,6 +108,20 @@ dependencies:
108
108
  - - ">="
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: tensor_stream-opencl
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
111
125
  - !ruby/object:Gem::Dependency
112
126
  name: colorize
113
127
  requirement: !ruby/object:Gem::Requirement
@@ -164,6 +178,20 @@ dependencies:
164
178
  - - ">="
165
179
  - !ruby/object:Gem::Version
166
180
  version: '0'
181
+ - !ruby/object:Gem::Dependency
182
+ name: standard
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ">="
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
167
195
  - !ruby/object:Gem::Dependency
168
196
  name: deep_merge
169
197
  requirement: !ruby/object:Gem::Requirement
@@ -230,16 +258,13 @@ files:
230
258
  - LICENSE.txt
231
259
  - README.md
232
260
  - Rakefile
261
+ - USAGE_GUIDE.md
233
262
  - benchmark_intel.txt
234
263
  - benchmark_nvidia.txt
235
264
  - benchmark_ryzen_amd.txt
236
265
  - bin/console
237
266
  - bin/setup
238
- - data_1.json
239
- - data_2.json
240
- - data_actual.json
241
- - data_expected.json
242
- - data_input.json
267
+ - bin/stubgen
243
268
  - exe/model_utils
244
269
  - lib/tensor_stream.rb
245
270
  - lib/tensor_stream/constant.rb
@@ -261,6 +286,8 @@ files:
261
286
  - lib/tensor_stream/evaluator/ruby/random_ops.rb
262
287
  - lib/tensor_stream/evaluator/ruby_evaluator.rb
263
288
  - lib/tensor_stream/exceptions.rb
289
+ - lib/tensor_stream/generated_stub/ops.rb
290
+ - lib/tensor_stream/generated_stub/stub_file.erb
264
291
  - lib/tensor_stream/graph.rb
265
292
  - lib/tensor_stream/graph_builder.rb
266
293
  - lib/tensor_stream/graph_deserializers/protobuf.rb
@@ -284,8 +311,52 @@ files:
284
311
  - lib/tensor_stream/monkey_patches/op_patch.rb
285
312
  - lib/tensor_stream/monkey_patches/patch.rb
286
313
  - lib/tensor_stream/nn/nn_ops.rb
314
+ - lib/tensor_stream/op_maker.rb
287
315
  - lib/tensor_stream/operation.rb
288
316
  - lib/tensor_stream/ops.rb
317
+ - lib/tensor_stream/ops/add.rb
318
+ - lib/tensor_stream/ops/argmax.rb
319
+ - lib/tensor_stream/ops/argmin.rb
320
+ - lib/tensor_stream/ops/case.rb
321
+ - lib/tensor_stream/ops/cast.rb
322
+ - lib/tensor_stream/ops/ceil.rb
323
+ - lib/tensor_stream/ops/const.rb
324
+ - lib/tensor_stream/ops/cos.rb
325
+ - lib/tensor_stream/ops/div.rb
326
+ - lib/tensor_stream/ops/equal.rb
327
+ - lib/tensor_stream/ops/expand_dims.rb
328
+ - lib/tensor_stream/ops/fill.rb
329
+ - lib/tensor_stream/ops/floor.rb
330
+ - lib/tensor_stream/ops/floor_div.rb
331
+ - lib/tensor_stream/ops/greater.rb
332
+ - lib/tensor_stream/ops/greater_equal.rb
333
+ - lib/tensor_stream/ops/less_equal.rb
334
+ - lib/tensor_stream/ops/log.rb
335
+ - lib/tensor_stream/ops/mat_mul.rb
336
+ - lib/tensor_stream/ops/max.rb
337
+ - lib/tensor_stream/ops/min.rb
338
+ - lib/tensor_stream/ops/mod.rb
339
+ - lib/tensor_stream/ops/mul.rb
340
+ - lib/tensor_stream/ops/negate.rb
341
+ - lib/tensor_stream/ops/ones_like.rb
342
+ - lib/tensor_stream/ops/pow.rb
343
+ - lib/tensor_stream/ops/prod.rb
344
+ - lib/tensor_stream/ops/random_uniform.rb
345
+ - lib/tensor_stream/ops/range.rb
346
+ - lib/tensor_stream/ops/rank.rb
347
+ - lib/tensor_stream/ops/reshape.rb
348
+ - lib/tensor_stream/ops/round.rb
349
+ - lib/tensor_stream/ops/shape.rb
350
+ - lib/tensor_stream/ops/sigmoid.rb
351
+ - lib/tensor_stream/ops/sign.rb
352
+ - lib/tensor_stream/ops/sin.rb
353
+ - lib/tensor_stream/ops/size.rb
354
+ - lib/tensor_stream/ops/sub.rb
355
+ - lib/tensor_stream/ops/sum.rb
356
+ - lib/tensor_stream/ops/tan.rb
357
+ - lib/tensor_stream/ops/tanh.rb
358
+ - lib/tensor_stream/ops/tile.rb
359
+ - lib/tensor_stream/ops/zeros.rb
289
360
  - lib/tensor_stream/placeholder.rb
290
361
  - lib/tensor_stream/profile/report_tool.rb
291
362
  - lib/tensor_stream/session.rb
@@ -309,17 +380,15 @@ files:
309
380
  - lib/tensor_stream/variable.rb
310
381
  - lib/tensor_stream/variable_scope.rb
311
382
  - lib/tensor_stream/version.rb
312
- - samples/error.graphml
313
- - samples/gradient_sample.graphml
314
- - samples/iris.data
315
- - samples/iris.rb
316
- - samples/linear_regression.rb
317
- - samples/logistic_regression.rb
318
- - samples/mnist_data.rb
319
- - samples/multigpu.rb
320
- - samples/nearest_neighbor.rb
321
- - samples/raw_neural_net_sample.rb
322
- - samples/rnn.rb
383
+ - samples/datasets/iris.data
384
+ - samples/jupyter_notebooks/linear_regression.ipynb
385
+ - samples/neural_networks/iris.rb
386
+ - samples/neural_networks/mnist_data.rb
387
+ - samples/neural_networks/raw_neural_net_sample.rb
388
+ - samples/neural_networks/rnn.rb
389
+ - samples/others/nearest_neighbor.rb
390
+ - samples/regression/linear_regression.rb
391
+ - samples/regression/logistic_regression.rb
323
392
  - tensor_stream.gemspec
324
393
  homepage: http://www.github.com/jedld/tensor_stream
325
394
  licenses:
@@ -341,7 +410,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
341
410
  - !ruby/object:Gem::Version
342
411
  version: '0'
343
412
  requirements: []
344
- rubygems_version: 3.0.1
413
+ rubyforge_project:
414
+ rubygems_version: 2.7.7
345
415
  signing_key:
346
416
  specification_version: 4
347
417
  summary: A Pure ruby tensorflow implementation
data/data_1.json DELETED
@@ -1,4764 +0,0 @@
1
- [
2
- [
3
- [
4
- [
5
- 0.1,
6
- 0.1,
7
- 0.1,
8
- 0.1
9
- ],
10
- [
11
- 0.1,
12
- 0.1,
13
- 0.1,
14
- 0.1
15
- ],
16
- [
17
- 0.1,
18
- 0.1,
19
- 0.1,
20
- 0.1
21
- ],
22
- [
23
- 0.1,
24
- 0.1,
25
- 0.1,
26
- 0.1
27
- ],
28
- [
29
- 0.1,
30
- 0.1,
31
- 0.1,
32
- 0.1
33
- ],
34
- [
35
- 0.1,
36
- 0.1,
37
- 0.1,
38
- 0.1
39
- ],
40
- [
41
- 0.1,
42
- 0.1,
43
- 0.1,
44
- 0.1
45
- ],
46
- [
47
- 0.1,
48
- 0.1,
49
- 0.1,
50
- 0.1
51
- ],
52
- [
53
- 0.1,
54
- 0.1,
55
- 0.1,
56
- 0.1
57
- ],
58
- [
59
- 0.1,
60
- 0.1,
61
- 0.1,
62
- 0.1
63
- ],
64
- [
65
- 0.1,
66
- 0.1,
67
- 0.1,
68
- 0.1
69
- ],
70
- [
71
- 0.1,
72
- 0.1,
73
- 0.1,
74
- 0.1
75
- ],
76
- [
77
- 0.1,
78
- 0.1,
79
- 0.1,
80
- 0.1
81
- ],
82
- [
83
- 0.1,
84
- 0.1,
85
- 0.1,
86
- 0.1
87
- ],
88
- [
89
- 0.1,
90
- 0.1,
91
- 0.1,
92
- 0.1
93
- ],
94
- [
95
- 0.1,
96
- 0.1,
97
- 0.1,
98
- 0.1
99
- ],
100
- [
101
- 0.1,
102
- 0.1,
103
- 0.1,
104
- 0.1
105
- ],
106
- [
107
- 0.1,
108
- 0.1,
109
- 0.1,
110
- 0.1
111
- ],
112
- [
113
- 0.1,
114
- 0.1,
115
- 0.1,
116
- 0.1
117
- ],
118
- [
119
- 0.1,
120
- 0.1,
121
- 0.1,
122
- 0.1
123
- ],
124
- [
125
- 0.1,
126
- 0.1,
127
- 0.1,
128
- 0.1
129
- ],
130
- [
131
- 0.1,
132
- 0.1,
133
- 0.1,
134
- 0.1
135
- ],
136
- [
137
- 0.1,
138
- 0.1,
139
- 0.1,
140
- 0.1
141
- ],
142
- [
143
- 0.1,
144
- 0.1,
145
- 0.1,
146
- 0.1
147
- ],
148
- [
149
- 0.1,
150
- 0.1,
151
- 0.1,
152
- 0.1
153
- ],
154
- [
155
- 0.1,
156
- 0.1,
157
- 0.1,
158
- 0.1
159
- ],
160
- [
161
- 0.1,
162
- 0.1,
163
- 0.1,
164
- 0.1
165
- ],
166
- [
167
- 0.1,
168
- 0.1,
169
- 0.1,
170
- 0.1
171
- ]
172
- ],
173
- [
174
- [
175
- 0.1,
176
- 0.1,
177
- 0.1,
178
- 0.1
179
- ],
180
- [
181
- 0.1,
182
- 0.1,
183
- 0.1,
184
- 0.1
185
- ],
186
- [
187
- 0.1,
188
- 0.1,
189
- 0.1,
190
- 0.1
191
- ],
192
- [
193
- 0.1,
194
- 0.1,
195
- 0.1,
196
- 0.1
197
- ],
198
- [
199
- 0.1,
200
- 0.1,
201
- 0.1,
202
- 0.1
203
- ],
204
- [
205
- 0.1,
206
- 0.1,
207
- 0.1,
208
- 0.1
209
- ],
210
- [
211
- 0.1,
212
- 0.1,
213
- 0.1,
214
- 0.1
215
- ],
216
- [
217
- 0.1,
218
- 0.1,
219
- 0.1,
220
- 0.1
221
- ],
222
- [
223
- 0.1,
224
- 0.1,
225
- 0.1,
226
- 0.1
227
- ],
228
- [
229
- 0.1,
230
- 0.1,
231
- 0.1,
232
- 0.1
233
- ],
234
- [
235
- 0.1,
236
- 0.1,
237
- 0.1,
238
- 0.1
239
- ],
240
- [
241
- 0.1,
242
- 0.1,
243
- 0.1,
244
- 0.1
245
- ],
246
- [
247
- 0.1,
248
- 0.1,
249
- 0.1,
250
- 0.1
251
- ],
252
- [
253
- 0.1,
254
- 0.1,
255
- 0.1,
256
- 0.1
257
- ],
258
- [
259
- 0.1,
260
- 0.1,
261
- 0.1,
262
- 0.1
263
- ],
264
- [
265
- 0.1,
266
- 0.1,
267
- 0.1,
268
- 0.1
269
- ],
270
- [
271
- 0.1,
272
- 0.1,
273
- 0.1,
274
- 0.1
275
- ],
276
- [
277
- 0.1,
278
- 0.1,
279
- 0.1,
280
- 0.1
281
- ],
282
- [
283
- 0.1,
284
- 0.1,
285
- 0.1,
286
- 0.1
287
- ],
288
- [
289
- 0.1,
290
- 0.1,
291
- 0.1,
292
- 0.1
293
- ],
294
- [
295
- 0.1,
296
- 0.1,
297
- 0.1,
298
- 0.1
299
- ],
300
- [
301
- 0.1,
302
- 0.1,
303
- 0.1,
304
- 0.1
305
- ],
306
- [
307
- 0.1,
308
- 0.1,
309
- 0.1,
310
- 0.1
311
- ],
312
- [
313
- 0.1,
314
- 0.1,
315
- 0.1,
316
- 0.1
317
- ],
318
- [
319
- 0.1,
320
- 0.1,
321
- 0.1,
322
- 0.1
323
- ],
324
- [
325
- 0.1,
326
- 0.1,
327
- 0.1,
328
- 0.1
329
- ],
330
- [
331
- 0.1,
332
- 0.1,
333
- 0.1,
334
- 0.1
335
- ],
336
- [
337
- 0.1,
338
- 0.1,
339
- 0.1,
340
- 0.1
341
- ]
342
- ],
343
- [
344
- [
345
- 0.1,
346
- 0.1,
347
- 0.1,
348
- 0.1
349
- ],
350
- [
351
- 0.1,
352
- 0.1,
353
- 0.1,
354
- 0.1
355
- ],
356
- [
357
- 0.1,
358
- 0.1,
359
- 0.1,
360
- 0.1
361
- ],
362
- [
363
- 0.1,
364
- 0.1,
365
- 0.1,
366
- 0.1
367
- ],
368
- [
369
- 0.1,
370
- 0.1,
371
- 0.1,
372
- 0.1
373
- ],
374
- [
375
- 0.1,
376
- 0.1,
377
- 0.1,
378
- 0.1
379
- ],
380
- [
381
- 0.1,
382
- 0.1,
383
- 0.1,
384
- 0.1
385
- ],
386
- [
387
- 0.1,
388
- 0.1,
389
- 0.1,
390
- 0.1
391
- ],
392
- [
393
- 0.1,
394
- 0.1,
395
- 0.1,
396
- 0.1
397
- ],
398
- [
399
- 0.1,
400
- 0.1,
401
- 0.1,
402
- 0.1
403
- ],
404
- [
405
- 0.1,
406
- 0.1,
407
- 0.1,
408
- 0.1
409
- ],
410
- [
411
- 0.1,
412
- 0.1,
413
- 0.1,
414
- 0.1
415
- ],
416
- [
417
- 0.1,
418
- 0.1,
419
- 0.1,
420
- 0.1
421
- ],
422
- [
423
- 0.1,
424
- 0.1,
425
- 0.1,
426
- 0.1
427
- ],
428
- [
429
- 0.1,
430
- 0.1,
431
- 0.1,
432
- 0.1
433
- ],
434
- [
435
- 0.1,
436
- 0.1,
437
- 0.1,
438
- 0.1
439
- ],
440
- [
441
- 0.1,
442
- 0.1,
443
- 0.1,
444
- 0.1
445
- ],
446
- [
447
- 0.1,
448
- 0.1,
449
- 0.1,
450
- 0.1
451
- ],
452
- [
453
- 0.1,
454
- 0.1,
455
- 0.1,
456
- 0.1
457
- ],
458
- [
459
- 0.1,
460
- 0.1,
461
- 0.1,
462
- 0.1
463
- ],
464
- [
465
- 0.1,
466
- 0.1,
467
- 0.1,
468
- 0.1
469
- ],
470
- [
471
- 0.1,
472
- 0.1,
473
- 0.1,
474
- 0.1
475
- ],
476
- [
477
- 0.1,
478
- 0.1,
479
- 0.1,
480
- 0.1
481
- ],
482
- [
483
- 0.1,
484
- 0.1,
485
- 0.1,
486
- 0.1
487
- ],
488
- [
489
- 0.1,
490
- 0.1,
491
- 0.1,
492
- 0.1
493
- ],
494
- [
495
- 0.1,
496
- 0.1,
497
- 0.1,
498
- 0.1
499
- ],
500
- [
501
- 0.1,
502
- 0.1,
503
- 0.1,
504
- 0.1
505
- ],
506
- [
507
- 0.1,
508
- 0.1,
509
- 0.1,
510
- 0.1
511
- ]
512
- ],
513
- [
514
- [
515
- 0.1,
516
- 0.1,
517
- 0.1,
518
- 0.1
519
- ],
520
- [
521
- 0.1,
522
- 0.1,
523
- 0.1,
524
- 0.1
525
- ],
526
- [
527
- 4.23,
528
- 0.0,
529
- 8.43,
530
- 0.0
531
- ],
532
- [
533
- 12.29,
534
- 0.0,
535
- 26.52,
536
- 1.12
537
- ],
538
- [
539
- 13.74,
540
- 8.0,
541
- 41.81,
542
- 7.65
543
- ],
544
- [
545
- 0.0,
546
- 9.25,
547
- 53.34,
548
- 13.36
549
- ],
550
- [
551
- 0.0,
552
- 41.18,
553
- 35.67,
554
- 5.32
555
- ],
556
- [
557
- 0.0,
558
- 56.39,
559
- 8.46,
560
- 0.0
561
- ],
562
- [
563
- 0.0,
564
- 51.16,
565
- 0.0,
566
- 0.0
567
- ],
568
- [
569
- 0.0,
570
- 40.02,
571
- 0.0,
572
- 0.0
573
- ],
574
- [
575
- 0.0,
576
- 17.11,
577
- 0.0,
578
- 0.0
579
- ],
580
- [
581
- 0.0,
582
- 8.84,
583
- 0.0,
584
- 0.0
585
- ],
586
- [
587
- 0.1,
588
- 0.1,
589
- 0.1,
590
- 0.1
591
- ],
592
- [
593
- 0.1,
594
- 0.1,
595
- 0.1,
596
- 0.1
597
- ],
598
- [
599
- 0.1,
600
- 0.1,
601
- 0.1,
602
- 0.1
603
- ],
604
- [
605
- 0.1,
606
- 0.1,
607
- 0.1,
608
- 0.1
609
- ],
610
- [
611
- 0.1,
612
- 0.1,
613
- 0.1,
614
- 0.1
615
- ],
616
- [
617
- 0.1,
618
- 0.1,
619
- 0.1,
620
- 0.1
621
- ],
622
- [
623
- 0.1,
624
- 0.1,
625
- 0.1,
626
- 0.1
627
- ],
628
- [
629
- 0.1,
630
- 0.1,
631
- 0.1,
632
- 0.1
633
- ],
634
- [
635
- 0.1,
636
- 0.1,
637
- 0.1,
638
- 0.1
639
- ],
640
- [
641
- 0.1,
642
- 0.1,
643
- 0.1,
644
- 0.1
645
- ],
646
- [
647
- 0.1,
648
- 0.1,
649
- 0.1,
650
- 0.1
651
- ],
652
- [
653
- 0.1,
654
- 0.1,
655
- 0.1,
656
- 0.1
657
- ],
658
- [
659
- 0.1,
660
- 0.1,
661
- 0.1,
662
- 0.1
663
- ],
664
- [
665
- 0.1,
666
- 0.1,
667
- 0.1,
668
- 0.1
669
- ],
670
- [
671
- 0.1,
672
- 0.1,
673
- 0.1,
674
- 0.1
675
- ],
676
- [
677
- 0.1,
678
- 0.1,
679
- 0.1,
680
- 0.1
681
- ]
682
- ],
683
- [
684
- [
685
- 0.1,
686
- 0.1,
687
- 0.1,
688
- 0.1
689
- ],
690
- [
691
- 0.1,
692
- 0.1,
693
- 0.1,
694
- 0.1
695
- ],
696
- [
697
- 4.82,
698
- 0.0,
699
- 16.66,
700
- 3.2
701
- ],
702
- [
703
- 5.56,
704
- 23.72,
705
- 43.11,
706
- 18.21
707
- ],
708
- [
709
- 0.0,
710
- 32.22,
711
- 82.14,
712
- 36.02
713
- ],
714
- [
715
- 0.0,
716
- 48.44,
717
- 108.11,
718
- 19.69
719
- ],
720
- [
721
- 0.0,
722
- 111.16,
723
- 97.42,
724
- 0.0
725
- ],
726
- [
727
- 0.0,
728
- 109.82,
729
- 84.95,
730
- 0.0
731
- ],
732
- [
733
- 0.0,
734
- 106.3,
735
- 74.8,
736
- 0.0
737
- ],
738
- [
739
- 0.0,
740
- 91.53,
741
- 55.51,
742
- 0.0
743
- ],
744
- [
745
- 0.0,
746
- 87.19,
747
- 43.72,
748
- 0.0
749
- ],
750
- [
751
- 0.0,
752
- 77.74,
753
- 38.38,
754
- 0.0
755
- ],
756
- [
757
- 0.0,
758
- 66.11,
759
- 42.92,
760
- 0.0
761
- ],
762
- [
763
- 0.0,
764
- 66.11,
765
- 42.92,
766
- 0.0
767
- ],
768
- [
769
- 0.0,
770
- 66.11,
771
- 42.92,
772
- 0.0
773
- ],
774
- [
775
- 0.0,
776
- 66.11,
777
- 42.92,
778
- 0.0
779
- ],
780
- [
781
- 0.0,
782
- 67.61,
783
- 40.15,
784
- 0.0
785
- ],
786
- [
787
- 0.0,
788
- 71.18,
789
- 25.76,
790
- 0.0
791
- ],
792
- [
793
- 0.0,
794
- 62.91,
795
- 6.53,
796
- 0.0
797
- ],
798
- [
799
- 0.0,
800
- 58.52,
801
- 0.0,
802
- 0.0
803
- ],
804
- [
805
- 0.0,
806
- 44.91,
807
- 0.0,
808
- 0.0
809
- ],
810
- [
811
- 0.0,
812
- 12.73,
813
- 0.0,
814
- 0.0
815
- ],
816
- [
817
- 0.1,
818
- 0.1,
819
- 0.1,
820
- 0.1
821
- ],
822
- [
823
- 0.1,
824
- 0.1,
825
- 0.1,
826
- 0.1
827
- ],
828
- [
829
- 0.1,
830
- 0.1,
831
- 0.1,
832
- 0.1
833
- ],
834
- [
835
- 0.1,
836
- 0.1,
837
- 0.1,
838
- 0.1
839
- ],
840
- [
841
- 0.1,
842
- 0.1,
843
- 0.1,
844
- 0.1
845
- ],
846
- [
847
- 0.1,
848
- 0.1,
849
- 0.1,
850
- 0.1
851
- ]
852
- ],
853
- [
854
- [
855
- 0.1,
856
- 0.1,
857
- 0.1,
858
- 0.1
859
- ],
860
- [
861
- 0.1,
862
- 0.1,
863
- 0.1,
864
- 0.1
865
- ],
866
- [
867
- 0.0,
868
- 11.75,
869
- 0.0,
870
- 23.14
871
- ],
872
- [
873
- 3.28,
874
- 62.94,
875
- 2.15,
876
- 74.71
877
- ],
878
- [
879
- 0.0,
880
- 79.99,
881
- 0.0,
882
- 80.55
883
- ],
884
- [
885
- 0.0,
886
- 100.39,
887
- 9.87,
888
- 15.62
889
- ],
890
- [
891
- 0.0,
892
- 139.57,
893
- 27.03,
894
- 0.0
895
- ],
896
- [
897
- 0.0,
898
- 139.78,
899
- 28.43,
900
- 0.0
901
- ],
902
- [
903
- 0.0,
904
- 123.26,
905
- 81.65,
906
- 0.0
907
- ],
908
- [
909
- 0.0,
910
- 118.36,
911
- 84.0,
912
- 0.0
913
- ],
914
- [
915
- 0.0,
916
- 119.51,
917
- 102.64,
918
- 0.0
919
- ],
920
- [
921
- 0.0,
922
- 130.79,
923
- 92.22,
924
- 0.0
925
- ],
926
- [
927
- 0.0,
928
- 130.89,
929
- 93.76,
930
- 0.0
931
- ],
932
- [
933
- 0.0,
934
- 126.03,
935
- 99.05,
936
- 0.0
937
- ],
938
- [
939
- 0.0,
940
- 133.8,
941
- 92.64,
942
- 0.0
943
- ],
944
- [
945
- 0.0,
946
- 130.47,
947
- 92.71,
948
- 0.0
949
- ],
950
- [
951
- 0.0,
952
- 132.33,
953
- 94.66,
954
- 0.0
955
- ],
956
- [
957
- 0.0,
958
- 128.77,
959
- 89.89,
960
- 0.0
961
- ],
962
- [
963
- 0.0,
964
- 106.48,
965
- 60.03,
966
- 0.0
967
- ],
968
- [
969
- 0.0,
970
- 94.13,
971
- 20.4,
972
- 0.0
973
- ],
974
- [
975
- 0.0,
976
- 80.63,
977
- 0.0,
978
- 0.0
979
- ],
980
- [
981
- 0.0,
982
- 35.82,
983
- 0.0,
984
- 0.0
985
- ],
986
- [
987
- 0.1,
988
- 0.1,
989
- 0.1,
990
- 0.1
991
- ],
992
- [
993
- 0.1,
994
- 0.1,
995
- 0.1,
996
- 0.1
997
- ],
998
- [
999
- 0.1,
1000
- 0.1,
1001
- 0.1,
1002
- 0.1
1003
- ],
1004
- [
1005
- 0.1,
1006
- 0.1,
1007
- 0.1,
1008
- 0.1
1009
- ],
1010
- [
1011
- 0.1,
1012
- 0.1,
1013
- 0.1,
1014
- 0.1
1015
- ],
1016
- [
1017
- 0.1,
1018
- 0.1,
1019
- 0.1,
1020
- 0.1
1021
- ]
1022
- ],
1023
- [
1024
- [
1025
- 0.1,
1026
- 0.1,
1027
- 0.1,
1028
- 0.1
1029
- ],
1030
- [
1031
- 0.1,
1032
- 0.1,
1033
- 0.1,
1034
- 0.1
1035
- ],
1036
- [
1037
- 18.9,
1038
- 13.19,
1039
- 0.0,
1040
- 38.43
1041
- ],
1042
- [
1043
- 49.41,
1044
- 33.37,
1045
- 0.0,
1046
- 80.14
1047
- ],
1048
- [
1049
- 48.57,
1050
- 45.7,
1051
- 0.0,
1052
- 45.27
1053
- ],
1054
- [
1055
- 63.58,
1056
- 79.52,
1057
- 0.0,
1058
- 0.0
1059
- ],
1060
- [
1061
- 52.05,
1062
- 113.83,
1063
- 0.0,
1064
- 0.65
1065
- ],
1066
- [
1067
- 31.92,
1068
- 116.95,
1069
- 0.0,
1070
- 9.64
1071
- ],
1072
- [
1073
- 30.11,
1074
- 124.86,
1075
- 0.0,
1076
- 15.49
1077
- ],
1078
- [
1079
- 15.62,
1080
- 136.11,
1081
- 0.0,
1082
- 6.97
1083
- ],
1084
- [
1085
- 3.37,
1086
- 137.2,
1087
- 0.0,
1088
- 7.34
1089
- ],
1090
- [
1091
- 0.0,
1092
- 155.24,
1093
- 0.0,
1094
- 0.0
1095
- ],
1096
- [
1097
- 0.0,
1098
- 161.57,
1099
- 0.0,
1100
- 0.0
1101
- ],
1102
- [
1103
- 0.0,
1104
- 153.96,
1105
- 0.0,
1106
- 0.0
1107
- ],
1108
- [
1109
- 0.0,
1110
- 167.96,
1111
- 0.0,
1112
- 0.0
1113
- ],
1114
- [
1115
- 0.0,
1116
- 151.11,
1117
- 0.0,
1118
- 0.0
1119
- ],
1120
- [
1121
- 0.0,
1122
- 171.7,
1123
- 0.45,
1124
- 0.0
1125
- ],
1126
- [
1127
- 0.0,
1128
- 151.37,
1129
- 24.84,
1130
- 0.0
1131
- ],
1132
- [
1133
- 0.0,
1134
- 111.72,
1135
- 39.23,
1136
- 0.0
1137
- ],
1138
- [
1139
- 0.0,
1140
- 132.72,
1141
- 0.0,
1142
- 0.0
1143
- ],
1144
- [
1145
- 0.0,
1146
- 105.31,
1147
- 0.0,
1148
- 0.0
1149
- ],
1150
- [
1151
- 0.0,
1152
- 33.96,
1153
- 0.0,
1154
- 0.0
1155
- ],
1156
- [
1157
- 0.1,
1158
- 0.1,
1159
- 0.1,
1160
- 0.1
1161
- ],
1162
- [
1163
- 0.1,
1164
- 0.1,
1165
- 0.1,
1166
- 0.1
1167
- ],
1168
- [
1169
- 0.1,
1170
- 0.1,
1171
- 0.1,
1172
- 0.1
1173
- ],
1174
- [
1175
- 0.1,
1176
- 0.1,
1177
- 0.1,
1178
- 0.1
1179
- ],
1180
- [
1181
- 0.1,
1182
- 0.1,
1183
- 0.1,
1184
- 0.1
1185
- ],
1186
- [
1187
- 0.1,
1188
- 0.1,
1189
- 0.1,
1190
- 0.1
1191
- ]
1192
- ],
1193
- [
1194
- [
1195
- 0.1,
1196
- 0.1,
1197
- 0.1,
1198
- 0.1
1199
- ],
1200
- [
1201
- 0.1,
1202
- 0.1,
1203
- 0.1,
1204
- 0.1
1205
- ],
1206
- [
1207
- 38.26,
1208
- 0.0,
1209
- 7.14,
1210
- 0.0
1211
- ],
1212
- [
1213
- 64.71,
1214
- 0.0,
1215
- 24.7,
1216
- 0.0
1217
- ],
1218
- [
1219
- 70.42,
1220
- 0.0,
1221
- 66.31,
1222
- 0.0
1223
- ],
1224
- [
1225
- 80.14,
1226
- 0.0,
1227
- 37.64,
1228
- 0.0
1229
- ],
1230
- [
1231
- 87.63,
1232
- 0.0,
1233
- 0.0,
1234
- 0.0
1235
- ],
1236
- [
1237
- 75.65,
1238
- 0.0,
1239
- 0.0,
1240
- 0.0
1241
- ],
1242
- [
1243
- 78.72,
1244
- 0.0,
1245
- 0.0,
1246
- 0.0
1247
- ],
1248
- [
1249
- 81.29,
1250
- 22.65,
1251
- 0.0,
1252
- 0.0
1253
- ],
1254
- [
1255
- 82.08,
1256
- 32.24,
1257
- 0.0,
1258
- 0.0
1259
- ],
1260
- [
1261
- 84.86,
1262
- 64.36,
1263
- 0.0,
1264
- 0.0
1265
- ],
1266
- [
1267
- 70.1,
1268
- 65.6,
1269
- 0.0,
1270
- 0.0
1271
- ],
1272
- [
1273
- 83.24,
1274
- 68.71,
1275
- 0.0,
1276
- 0.0
1277
- ],
1278
- [
1279
- 81.89,
1280
- 63.25,
1281
- 0.0,
1282
- 0.0
1283
- ],
1284
- [
1285
- 77.97,
1286
- 64.41,
1287
- 0.0,
1288
- 0.0
1289
- ],
1290
- [
1291
- 75.09,
1292
- 113.35,
1293
- 0.0,
1294
- 20.7
1295
- ],
1296
- [
1297
- 11.18,
1298
- 117.49,
1299
- 0.0,
1300
- 12.54
1301
- ],
1302
- [
1303
- 0.0,
1304
- 111.04,
1305
- 0.0,
1306
- 0.0
1307
- ],
1308
- [
1309
- 0.0,
1310
- 131.63,
1311
- 0.0,
1312
- 0.0
1313
- ],
1314
- [
1315
- 0.0,
1316
- 85.67,
1317
- 0.0,
1318
- 0.0
1319
- ],
1320
- [
1321
- 0.0,
1322
- 12.36,
1323
- 0.0,
1324
- 0.0
1325
- ],
1326
- [
1327
- 0.1,
1328
- 0.1,
1329
- 0.1,
1330
- 0.1
1331
- ],
1332
- [
1333
- 0.1,
1334
- 0.1,
1335
- 0.1,
1336
- 0.1
1337
- ],
1338
- [
1339
- 0.1,
1340
- 0.1,
1341
- 0.1,
1342
- 0.1
1343
- ],
1344
- [
1345
- 0.1,
1346
- 0.1,
1347
- 0.1,
1348
- 0.1
1349
- ],
1350
- [
1351
- 0.1,
1352
- 0.1,
1353
- 0.1,
1354
- 0.1
1355
- ],
1356
- [
1357
- 0.1,
1358
- 0.1,
1359
- 0.1,
1360
- 0.1
1361
- ]
1362
- ],
1363
- [
1364
- [
1365
- 0.1,
1366
- 0.1,
1367
- 0.1,
1368
- 0.1
1369
- ],
1370
- [
1371
- 0.1,
1372
- 0.1,
1373
- 0.1,
1374
- 0.1
1375
- ],
1376
- [
1377
- 19.71,
1378
- 0.0,
1379
- 50.75,
1380
- 0.0
1381
- ],
1382
- [
1383
- 57.38,
1384
- 0.0,
1385
- 73.57,
1386
- 0.0
1387
- ],
1388
- [
1389
- 39.66,
1390
- 23.0,
1391
- 83.1,
1392
- 0.0
1393
- ],
1394
- [
1395
- 49.08,
1396
- 0.0,
1397
- 92.87,
1398
- 0.0
1399
- ],
1400
- [
1401
- 56.18,
1402
- 0.0,
1403
- 53.03,
1404
- 0.0
1405
- ],
1406
- [
1407
- 60.39,
1408
- 0.0,
1409
- 55.76,
1410
- 0.0
1411
- ],
1412
- [
1413
- 65.36,
1414
- 0.0,
1415
- 49.33,
1416
- 0.0
1417
- ],
1418
- [
1419
- 61.54,
1420
- 0.0,
1421
- 53.06,
1422
- 0.0
1423
- ],
1424
- [
1425
- 74.18,
1426
- 0.0,
1427
- 40.79,
1428
- 0.0
1429
- ],
1430
- [
1431
- 83.53,
1432
- 0.0,
1433
- 33.44,
1434
- 0.0
1435
- ],
1436
- [
1437
- 79.76,
1438
- 0.0,
1439
- 22.25,
1440
- 0.0
1441
- ],
1442
- [
1443
- 85.21,
1444
- 0.0,
1445
- 35.85,
1446
- 0.0
1447
- ],
1448
- [
1449
- 83.83,
1450
- 0.0,
1451
- 47.53,
1452
- 0.0
1453
- ],
1454
- [
1455
- 90.23,
1456
- 0.0,
1457
- 55.07,
1458
- 0.0
1459
- ],
1460
- [
1461
- 87.31,
1462
- 30.7,
1463
- 62.55,
1464
- 7.8
1465
- ],
1466
- [
1467
- 0.0,
1468
- 28.05,
1469
- 12.74,
1470
- 0.0
1471
- ],
1472
- [
1473
- 0.0,
1474
- 88.35,
1475
- 0.0,
1476
- 0.0
1477
- ],
1478
- [
1479
- 0.0,
1480
- 79.39,
1481
- 0.0,
1482
- 0.0
1483
- ],
1484
- [
1485
- 0.0,
1486
- 15.36,
1487
- 0.0,
1488
- 0.0
1489
- ],
1490
- [
1491
- 0.0,
1492
- 0.0,
1493
- 0.0,
1494
- 0.0
1495
- ],
1496
- [
1497
- 0.1,
1498
- 0.1,
1499
- 0.1,
1500
- 0.1
1501
- ],
1502
- [
1503
- 0.1,
1504
- 0.1,
1505
- 0.1,
1506
- 0.1
1507
- ],
1508
- [
1509
- 0.1,
1510
- 0.1,
1511
- 0.1,
1512
- 0.1
1513
- ],
1514
- [
1515
- 0.1,
1516
- 0.1,
1517
- 0.1,
1518
- 0.1
1519
- ],
1520
- [
1521
- 0.1,
1522
- 0.1,
1523
- 0.1,
1524
- 0.1
1525
- ],
1526
- [
1527
- 0.1,
1528
- 0.1,
1529
- 0.1,
1530
- 0.1
1531
- ]
1532
- ],
1533
- [
1534
- [
1535
- 0.1,
1536
- 0.1,
1537
- 0.1,
1538
- 0.1
1539
- ],
1540
- [
1541
- 0.1,
1542
- 0.1,
1543
- 0.1,
1544
- 0.1
1545
- ],
1546
- [
1547
- 3.23,
1548
- 2.92,
1549
- 16.07,
1550
- 0.0
1551
- ],
1552
- [
1553
- 14.68,
1554
- 3.4,
1555
- 32.62,
1556
- 0.0
1557
- ],
1558
- [
1559
- 14.89,
1560
- 9.74,
1561
- 22.7,
1562
- 0.0
1563
- ],
1564
- [
1565
- 8.18,
1566
- 3.62,
1567
- 28.76,
1568
- 0.0
1569
- ],
1570
- [
1571
- 17.5,
1572
- 0.0,
1573
- 42.24,
1574
- 0.0
1575
- ],
1576
- [
1577
- 25.7,
1578
- 0.0,
1579
- 53.64,
1580
- 0.0
1581
- ],
1582
- [
1583
- 40.23,
1584
- 0.0,
1585
- 65.12,
1586
- 0.0
1587
- ],
1588
- [
1589
- 29.39,
1590
- 0.0,
1591
- 60.75,
1592
- 0.0
1593
- ],
1594
- [
1595
- 32.42,
1596
- 0.0,
1597
- 72.5,
1598
- 0.0
1599
- ],
1600
- [
1601
- 41.61,
1602
- 0.0,
1603
- 50.85,
1604
- 0.0
1605
- ],
1606
- [
1607
- 34.54,
1608
- 0.0,
1609
- 62.8,
1610
- 0.0
1611
- ],
1612
- [
1613
- 42.14,
1614
- 0.0,
1615
- 74.72,
1616
- 0.0
1617
- ],
1618
- [
1619
- 35.32,
1620
- 0.0,
1621
- 71.32,
1622
- 0.0
1623
- ],
1624
- [
1625
- 76.64,
1626
- 14.11,
1627
- 90.05,
1628
- 26.5
1629
- ],
1630
- [
1631
- 49.27,
1632
- 26.75,
1633
- 71.95,
1634
- 8.8
1635
- ],
1636
- [
1637
- 0.0,
1638
- 63.38,
1639
- 71.7,
1640
- 0.0
1641
- ],
1642
- [
1643
- 0.0,
1644
- 110.31,
1645
- 1.76,
1646
- 0.0
1647
- ],
1648
- [
1649
- 0.0,
1650
- 49.96,
1651
- 0.0,
1652
- 0.0
1653
- ],
1654
- [
1655
- 0.0,
1656
- 0.0,
1657
- 0.0,
1658
- 0.0
1659
- ],
1660
- [
1661
- 0.0,
1662
- 0.0,
1663
- 0.0,
1664
- 0.0
1665
- ],
1666
- [
1667
- 0.1,
1668
- 0.1,
1669
- 0.1,
1670
- 0.1
1671
- ],
1672
- [
1673
- 0.1,
1674
- 0.1,
1675
- 0.1,
1676
- 0.1
1677
- ],
1678
- [
1679
- 0.1,
1680
- 0.1,
1681
- 0.1,
1682
- 0.1
1683
- ],
1684
- [
1685
- 0.1,
1686
- 0.1,
1687
- 0.1,
1688
- 0.1
1689
- ],
1690
- [
1691
- 0.1,
1692
- 0.1,
1693
- 0.1,
1694
- 0.1
1695
- ],
1696
- [
1697
- 0.1,
1698
- 0.1,
1699
- 0.1,
1700
- 0.1
1701
- ]
1702
- ],
1703
- [
1704
- [
1705
- 0.1,
1706
- 0.1,
1707
- 0.1,
1708
- 0.1
1709
- ],
1710
- [
1711
- 0.1,
1712
- 0.1,
1713
- 0.1,
1714
- 0.1
1715
- ],
1716
- [
1717
- 0.1,
1718
- 0.1,
1719
- 0.1,
1720
- 0.1
1721
- ],
1722
- [
1723
- 0.1,
1724
- 0.1,
1725
- 0.1,
1726
- 0.1
1727
- ],
1728
- [
1729
- 0.1,
1730
- 0.1,
1731
- 0.1,
1732
- 0.1
1733
- ],
1734
- [
1735
- 0.1,
1736
- 0.1,
1737
- 0.1,
1738
- 0.1
1739
- ],
1740
- [
1741
- 0.1,
1742
- 0.1,
1743
- 0.1,
1744
- 0.1
1745
- ],
1746
- [
1747
- 0.9,
1748
- 0.82,
1749
- 4.15,
1750
- 0.0
1751
- ],
1752
- [
1753
- 5.53,
1754
- 2.5,
1755
- 17.19,
1756
- 0.0
1757
- ],
1758
- [
1759
- 8.77,
1760
- 1.54,
1761
- 7.78,
1762
- 0.0
1763
- ],
1764
- [
1765
- 0.95,
1766
- 7.76,
1767
- 14.08,
1768
- 0.0
1769
- ],
1770
- [
1771
- 11.33,
1772
- 0.0,
1773
- 21.27,
1774
- 0.0
1775
- ],
1776
- [
1777
- 9.55,
1778
- 2.06,
1779
- 18.87,
1780
- 0.0
1781
- ],
1782
- [
1783
- 13.73,
1784
- 0.0,
1785
- 36.92,
1786
- 0.0
1787
- ],
1788
- [
1789
- 29.56,
1790
- 38.57,
1791
- 30.73,
1792
- 64.68
1793
- ],
1794
- [
1795
- 41.23,
1796
- 70.07,
1797
- 70.23,
1798
- 70.89
1799
- ],
1800
- [
1801
- 10.58,
1802
- 66.55,
1803
- 86.37,
1804
- 0.0
1805
- ],
1806
- [
1807
- 0.0,
1808
- 166.39,
1809
- 60.01,
1810
- 0.0
1811
- ],
1812
- [
1813
- 0.0,
1814
- 113.6,
1815
- 0.0,
1816
- 0.0
1817
- ],
1818
- [
1819
- 0.0,
1820
- 0.0,
1821
- 0.0,
1822
- 0.0
1823
- ],
1824
- [
1825
- 0.0,
1826
- 0.0,
1827
- 0.0,
1828
- 0.0
1829
- ],
1830
- [
1831
- 0.0,
1832
- 0.0,
1833
- 0.0,
1834
- 0.0
1835
- ],
1836
- [
1837
- 0.1,
1838
- 0.1,
1839
- 0.1,
1840
- 0.1
1841
- ],
1842
- [
1843
- 0.1,
1844
- 0.1,
1845
- 0.1,
1846
- 0.1
1847
- ],
1848
- [
1849
- 0.1,
1850
- 0.1,
1851
- 0.1,
1852
- 0.1
1853
- ],
1854
- [
1855
- 0.1,
1856
- 0.1,
1857
- 0.1,
1858
- 0.1
1859
- ],
1860
- [
1861
- 0.1,
1862
- 0.1,
1863
- 0.1,
1864
- 0.1
1865
- ],
1866
- [
1867
- 0.1,
1868
- 0.1,
1869
- 0.1,
1870
- 0.1
1871
- ]
1872
- ],
1873
- [
1874
- [
1875
- 0.1,
1876
- 0.1,
1877
- 0.1,
1878
- 0.1
1879
- ],
1880
- [
1881
- 0.1,
1882
- 0.1,
1883
- 0.1,
1884
- 0.1
1885
- ],
1886
- [
1887
- 0.1,
1888
- 0.1,
1889
- 0.1,
1890
- 0.1
1891
- ],
1892
- [
1893
- 0.1,
1894
- 0.1,
1895
- 0.1,
1896
- 0.1
1897
- ],
1898
- [
1899
- 0.1,
1900
- 0.1,
1901
- 0.1,
1902
- 0.1
1903
- ],
1904
- [
1905
- 0.1,
1906
- 0.1,
1907
- 0.1,
1908
- 0.1
1909
- ],
1910
- [
1911
- 0.1,
1912
- 0.1,
1913
- 0.1,
1914
- 0.1
1915
- ],
1916
- [
1917
- 0.1,
1918
- 0.1,
1919
- 0.1,
1920
- 0.1
1921
- ],
1922
- [
1923
- 0.1,
1924
- 0.1,
1925
- 0.1,
1926
- 0.1
1927
- ],
1928
- [
1929
- 0.1,
1930
- 0.1,
1931
- 0.1,
1932
- 0.1
1933
- ],
1934
- [
1935
- 0.1,
1936
- 0.1,
1937
- 0.1,
1938
- 0.1
1939
- ],
1940
- [
1941
- 0.1,
1942
- 0.1,
1943
- 0.1,
1944
- 0.1
1945
- ],
1946
- [
1947
- 2.29,
1948
- 0.0,
1949
- 9.46,
1950
- 2.34
1951
- ],
1952
- [
1953
- 8.13,
1954
- 24.13,
1955
- 16.58,
1956
- 38.1
1957
- ],
1958
- [
1959
- 51.85,
1960
- 58.94,
1961
- 47.3,
1962
- 86.1
1963
- ],
1964
- [
1965
- 41.42,
1966
- 74.26,
1967
- 77.94,
1968
- 15.77
1969
- ],
1970
- [
1971
- 0.0,
1972
- 122.01,
1973
- 104.15,
1974
- 0.0
1975
- ],
1976
- [
1977
- 0.0,
1978
- 161.28,
1979
- 2.21,
1980
- 0.0
1981
- ],
1982
- [
1983
- 0.0,
1984
- 51.61,
1985
- 0.0,
1986
- 0.0
1987
- ],
1988
- [
1989
- 0.0,
1990
- 0.0,
1991
- 0.0,
1992
- 0.0
1993
- ],
1994
- [
1995
- 0.0,
1996
- 0.0,
1997
- 0.0,
1998
- 0.0
1999
- ],
2000
- [
2001
- 0.0,
2002
- 0.0,
2003
- 0.0,
2004
- 0.0
2005
- ],
2006
- [
2007
- 0.1,
2008
- 0.1,
2009
- 0.1,
2010
- 0.1
2011
- ],
2012
- [
2013
- 0.1,
2014
- 0.1,
2015
- 0.1,
2016
- 0.1
2017
- ],
2018
- [
2019
- 0.1,
2020
- 0.1,
2021
- 0.1,
2022
- 0.1
2023
- ],
2024
- [
2025
- 0.1,
2026
- 0.1,
2027
- 0.1,
2028
- 0.1
2029
- ],
2030
- [
2031
- 0.1,
2032
- 0.1,
2033
- 0.1,
2034
- 0.1
2035
- ],
2036
- [
2037
- 0.1,
2038
- 0.1,
2039
- 0.1,
2040
- 0.1
2041
- ]
2042
- ],
2043
- [
2044
- [
2045
- 0.1,
2046
- 0.1,
2047
- 0.1,
2048
- 0.1
2049
- ],
2050
- [
2051
- 0.1,
2052
- 0.1,
2053
- 0.1,
2054
- 0.1
2055
- ],
2056
- [
2057
- 0.1,
2058
- 0.1,
2059
- 0.1,
2060
- 0.1
2061
- ],
2062
- [
2063
- 0.1,
2064
- 0.1,
2065
- 0.1,
2066
- 0.1
2067
- ],
2068
- [
2069
- 0.1,
2070
- 0.1,
2071
- 0.1,
2072
- 0.1
2073
- ],
2074
- [
2075
- 0.1,
2076
- 0.1,
2077
- 0.1,
2078
- 0.1
2079
- ],
2080
- [
2081
- 0.1,
2082
- 0.1,
2083
- 0.1,
2084
- 0.1
2085
- ],
2086
- [
2087
- 0.1,
2088
- 0.1,
2089
- 0.1,
2090
- 0.1
2091
- ],
2092
- [
2093
- 0.1,
2094
- 0.1,
2095
- 0.1,
2096
- 0.1
2097
- ],
2098
- [
2099
- 0.1,
2100
- 0.1,
2101
- 0.1,
2102
- 0.1
2103
- ],
2104
- [
2105
- 0.1,
2106
- 0.1,
2107
- 0.1,
2108
- 0.1
2109
- ],
2110
- [
2111
- 0.54,
2112
- 0.0,
2113
- 0.99,
2114
- 0.08
2115
- ],
2116
- [
2117
- 3.94,
2118
- 0.0,
2119
- 7.84,
2120
- 15.04
2121
- ],
2122
- [
2123
- 36.48,
2124
- 45.13,
2125
- 18.2,
2126
- 71.42
2127
- ],
2128
- [
2129
- 66.23,
2130
- 75.07,
2131
- 60.69,
2132
- 59.36
2133
- ],
2134
- [
2135
- 36.58,
2136
- 60.23,
2137
- 102.77,
2138
- 0.0
2139
- ],
2140
- [
2141
- 0.0,
2142
- 148.37,
2143
- 50.44,
2144
- 0.0
2145
- ],
2146
- [
2147
- 0.0,
2148
- 106.14,
2149
- 0.0,
2150
- 0.0
2151
- ],
2152
- [
2153
- 0.0,
2154
- 0.0,
2155
- 0.0,
2156
- 0.0
2157
- ],
2158
- [
2159
- 0.41,
2160
- 0.0,
2161
- 0.0,
2162
- 0.0
2163
- ],
2164
- [
2165
- 0.0,
2166
- 0.0,
2167
- 0.0,
2168
- 0.0
2169
- ],
2170
- [
2171
- 0.1,
2172
- 0.1,
2173
- 0.1,
2174
- 0.1
2175
- ],
2176
- [
2177
- 0.1,
2178
- 0.1,
2179
- 0.1,
2180
- 0.1
2181
- ],
2182
- [
2183
- 0.1,
2184
- 0.1,
2185
- 0.1,
2186
- 0.1
2187
- ],
2188
- [
2189
- 0.1,
2190
- 0.1,
2191
- 0.1,
2192
- 0.1
2193
- ],
2194
- [
2195
- 0.1,
2196
- 0.1,
2197
- 0.1,
2198
- 0.1
2199
- ],
2200
- [
2201
- 0.1,
2202
- 0.1,
2203
- 0.1,
2204
- 0.1
2205
- ],
2206
- [
2207
- 0.1,
2208
- 0.1,
2209
- 0.1,
2210
- 0.1
2211
- ]
2212
- ],
2213
- [
2214
- [
2215
- 0.1,
2216
- 0.1,
2217
- 0.1,
2218
- 0.1
2219
- ],
2220
- [
2221
- 0.1,
2222
- 0.1,
2223
- 0.1,
2224
- 0.1
2225
- ],
2226
- [
2227
- 0.1,
2228
- 0.1,
2229
- 0.1,
2230
- 0.1
2231
- ],
2232
- [
2233
- 0.1,
2234
- 0.1,
2235
- 0.1,
2236
- 0.1
2237
- ],
2238
- [
2239
- 0.1,
2240
- 0.1,
2241
- 0.1,
2242
- 0.1
2243
- ],
2244
- [
2245
- 0.1,
2246
- 0.1,
2247
- 0.1,
2248
- 0.1
2249
- ],
2250
- [
2251
- 0.1,
2252
- 0.1,
2253
- 0.1,
2254
- 0.1
2255
- ],
2256
- [
2257
- 0.1,
2258
- 0.1,
2259
- 0.1,
2260
- 0.1
2261
- ],
2262
- [
2263
- 0.1,
2264
- 0.1,
2265
- 0.1,
2266
- 0.1
2267
- ],
2268
- [
2269
- 0.1,
2270
- 0.1,
2271
- 0.1,
2272
- 0.1
2273
- ],
2274
- [
2275
- 0.1,
2276
- 0.1,
2277
- 0.1,
2278
- 0.1
2279
- ],
2280
- [
2281
- 5.63,
2282
- 0.0,
2283
- 12.0,
2284
- 0.17
2285
- ],
2286
- [
2287
- 17.37,
2288
- 11.43,
2289
- 12.15,
2290
- 32.55
2291
- ],
2292
- [
2293
- 60.1,
2294
- 53.05,
2295
- 50.14,
2296
- 70.74
2297
- ],
2298
- [
2299
- 43.98,
2300
- 64.13,
2301
- 86.85,
2302
- 12.37
2303
- ],
2304
- [
2305
- 0.0,
2306
- 115.99,
2307
- 110.33,
2308
- 0.0
2309
- ],
2310
- [
2311
- 0.0,
2312
- 141.67,
2313
- 19.04,
2314
- 0.0
2315
- ],
2316
- [
2317
- 0.0,
2318
- 42.15,
2319
- 0.0,
2320
- 0.0
2321
- ],
2322
- [
2323
- 0.0,
2324
- 0.0,
2325
- 0.0,
2326
- 0.0
2327
- ],
2328
- [
2329
- 0.0,
2330
- 0.0,
2331
- 0.0,
2332
- 0.0
2333
- ],
2334
- [
2335
- 0.0,
2336
- 0.0,
2337
- 0.0,
2338
- 0.0
2339
- ],
2340
- [
2341
- 0.1,
2342
- 0.1,
2343
- 0.1,
2344
- 0.1
2345
- ],
2346
- [
2347
- 0.1,
2348
- 0.1,
2349
- 0.1,
2350
- 0.1
2351
- ],
2352
- [
2353
- 0.1,
2354
- 0.1,
2355
- 0.1,
2356
- 0.1
2357
- ],
2358
- [
2359
- 0.1,
2360
- 0.1,
2361
- 0.1,
2362
- 0.1
2363
- ],
2364
- [
2365
- 0.1,
2366
- 0.1,
2367
- 0.1,
2368
- 0.1
2369
- ],
2370
- [
2371
- 0.1,
2372
- 0.1,
2373
- 0.1,
2374
- 0.1
2375
- ],
2376
- [
2377
- 0.1,
2378
- 0.1,
2379
- 0.1,
2380
- 0.1
2381
- ]
2382
- ],
2383
- [
2384
- [
2385
- 0.1,
2386
- 0.1,
2387
- 0.1,
2388
- 0.1
2389
- ],
2390
- [
2391
- 0.1,
2392
- 0.1,
2393
- 0.1,
2394
- 0.1
2395
- ],
2396
- [
2397
- 0.1,
2398
- 0.1,
2399
- 0.1,
2400
- 0.1
2401
- ],
2402
- [
2403
- 0.1,
2404
- 0.1,
2405
- 0.1,
2406
- 0.1
2407
- ],
2408
- [
2409
- 0.1,
2410
- 0.1,
2411
- 0.1,
2412
- 0.1
2413
- ],
2414
- [
2415
- 0.1,
2416
- 0.1,
2417
- 0.1,
2418
- 0.1
2419
- ],
2420
- [
2421
- 0.1,
2422
- 0.1,
2423
- 0.1,
2424
- 0.1
2425
- ],
2426
- [
2427
- 0.1,
2428
- 0.1,
2429
- 0.1,
2430
- 0.1
2431
- ],
2432
- [
2433
- 0.1,
2434
- 0.1,
2435
- 0.1,
2436
- 0.1
2437
- ],
2438
- [
2439
- 0.1,
2440
- 0.1,
2441
- 0.1,
2442
- 0.1
2443
- ],
2444
- [
2445
- 3.79,
2446
- 0.0,
2447
- 7.53,
2448
- 0.0
2449
- ],
2450
- [
2451
- 6.41,
2452
- 0.0,
2453
- 23.3,
2454
- 7.75
2455
- ],
2456
- [
2457
- 32.32,
2458
- 38.48,
2459
- 43.65,
2460
- 52.43
2461
- ],
2462
- [
2463
- 47.37,
2464
- 71.17,
2465
- 90.75,
2466
- 55.36
2467
- ],
2468
- [
2469
- 6.12,
2470
- 82.51,
2471
- 104.64,
2472
- 0.0
2473
- ],
2474
- [
2475
- 0.0,
2476
- 149.4,
2477
- 46.3,
2478
- 0.0
2479
- ],
2480
- [
2481
- 0.0,
2482
- 94.88,
2483
- 0.0,
2484
- 0.0
2485
- ],
2486
- [
2487
- 0.0,
2488
- 0.0,
2489
- 0.0,
2490
- 0.0
2491
- ],
2492
- [
2493
- 0.0,
2494
- 0.0,
2495
- 0.0,
2496
- 0.0
2497
- ],
2498
- [
2499
- 0.0,
2500
- 0.0,
2501
- 0.0,
2502
- 0.0
2503
- ],
2504
- [
2505
- 0.1,
2506
- 0.1,
2507
- 0.1,
2508
- 0.1
2509
- ],
2510
- [
2511
- 0.1,
2512
- 0.1,
2513
- 0.1,
2514
- 0.1
2515
- ],
2516
- [
2517
- 0.1,
2518
- 0.1,
2519
- 0.1,
2520
- 0.1
2521
- ],
2522
- [
2523
- 0.1,
2524
- 0.1,
2525
- 0.1,
2526
- 0.1
2527
- ],
2528
- [
2529
- 0.1,
2530
- 0.1,
2531
- 0.1,
2532
- 0.1
2533
- ],
2534
- [
2535
- 0.1,
2536
- 0.1,
2537
- 0.1,
2538
- 0.1
2539
- ],
2540
- [
2541
- 0.1,
2542
- 0.1,
2543
- 0.1,
2544
- 0.1
2545
- ],
2546
- [
2547
- 0.1,
2548
- 0.1,
2549
- 0.1,
2550
- 0.1
2551
- ]
2552
- ],
2553
- [
2554
- [
2555
- 0.1,
2556
- 0.1,
2557
- 0.1,
2558
- 0.1
2559
- ],
2560
- [
2561
- 0.1,
2562
- 0.1,
2563
- 0.1,
2564
- 0.1
2565
- ],
2566
- [
2567
- 0.1,
2568
- 0.1,
2569
- 0.1,
2570
- 0.1
2571
- ],
2572
- [
2573
- 0.1,
2574
- 0.1,
2575
- 0.1,
2576
- 0.1
2577
- ],
2578
- [
2579
- 0.1,
2580
- 0.1,
2581
- 0.1,
2582
- 0.1
2583
- ],
2584
- [
2585
- 0.1,
2586
- 0.1,
2587
- 0.1,
2588
- 0.1
2589
- ],
2590
- [
2591
- 0.1,
2592
- 0.1,
2593
- 0.1,
2594
- 0.1
2595
- ],
2596
- [
2597
- 0.1,
2598
- 0.1,
2599
- 0.1,
2600
- 0.1
2601
- ],
2602
- [
2603
- 0.1,
2604
- 0.1,
2605
- 0.1,
2606
- 0.1
2607
- ],
2608
- [
2609
- 1.03,
2610
- 0.0,
2611
- 1.98,
2612
- 0.05
2613
- ],
2614
- [
2615
- 6.14,
2616
- 0.0,
2617
- 18.97,
2618
- 3.15
2619
- ],
2620
- [
2621
- 8.75,
2622
- 35.9,
2623
- 29.06,
2624
- 41.66
2625
- ],
2626
- [
2627
- 42.73,
2628
- 65.34,
2629
- 69.76,
2630
- 82.18
2631
- ],
2632
- [
2633
- 18.75,
2634
- 77.1,
2635
- 85.32,
2636
- 4.64
2637
- ],
2638
- [
2639
- 0.0,
2640
- 141.02,
2641
- 83.97,
2642
- 0.0
2643
- ],
2644
- [
2645
- 0.0,
2646
- 144.28,
2647
- 14.92,
2648
- 0.0
2649
- ],
2650
- [
2651
- 0.0,
2652
- 35.17,
2653
- 0.0,
2654
- 0.0
2655
- ],
2656
- [
2657
- 0.0,
2658
- 0.0,
2659
- 0.0,
2660
- 0.0
2661
- ],
2662
- [
2663
- 0.0,
2664
- 0.0,
2665
- 0.0,
2666
- 0.0
2667
- ],
2668
- [
2669
- 0.0,
2670
- 0.0,
2671
- 0.0,
2672
- 0.0
2673
- ],
2674
- [
2675
- 0.1,
2676
- 0.1,
2677
- 0.1,
2678
- 0.1
2679
- ],
2680
- [
2681
- 0.1,
2682
- 0.1,
2683
- 0.1,
2684
- 0.1
2685
- ],
2686
- [
2687
- 0.1,
2688
- 0.1,
2689
- 0.1,
2690
- 0.1
2691
- ],
2692
- [
2693
- 0.1,
2694
- 0.1,
2695
- 0.1,
2696
- 0.1
2697
- ],
2698
- [
2699
- 0.1,
2700
- 0.1,
2701
- 0.1,
2702
- 0.1
2703
- ],
2704
- [
2705
- 0.1,
2706
- 0.1,
2707
- 0.1,
2708
- 0.1
2709
- ],
2710
- [
2711
- 0.1,
2712
- 0.1,
2713
- 0.1,
2714
- 0.1
2715
- ],
2716
- [
2717
- 0.1,
2718
- 0.1,
2719
- 0.1,
2720
- 0.1
2721
- ]
2722
- ],
2723
- [
2724
- [
2725
- 0.1,
2726
- 0.1,
2727
- 0.1,
2728
- 0.1
2729
- ],
2730
- [
2731
- 0.1,
2732
- 0.1,
2733
- 0.1,
2734
- 0.1
2735
- ],
2736
- [
2737
- 0.1,
2738
- 0.1,
2739
- 0.1,
2740
- 0.1
2741
- ],
2742
- [
2743
- 0.1,
2744
- 0.1,
2745
- 0.1,
2746
- 0.1
2747
- ],
2748
- [
2749
- 0.1,
2750
- 0.1,
2751
- 0.1,
2752
- 0.1
2753
- ],
2754
- [
2755
- 0.1,
2756
- 0.1,
2757
- 0.1,
2758
- 0.1
2759
- ],
2760
- [
2761
- 0.1,
2762
- 0.1,
2763
- 0.1,
2764
- 0.1
2765
- ],
2766
- [
2767
- 0.1,
2768
- 0.1,
2769
- 0.1,
2770
- 0.1
2771
- ],
2772
- [
2773
- 0.25,
2774
- 0.0,
2775
- 0.4,
2776
- 0.09
2777
- ],
2778
- [
2779
- 8.79,
2780
- 0.0,
2781
- 19.28,
2782
- 0.47
2783
- ],
2784
- [
2785
- 7.5,
2786
- 23.02,
2787
- 26.56,
2788
- 26.48
2789
- ],
2790
- [
2791
- 31.5,
2792
- 59.42,
2793
- 44.07,
2794
- 95.37
2795
- ],
2796
- [
2797
- 1.98,
2798
- 84.38,
2799
- 67.14,
2800
- 58.16
2801
- ],
2802
- [
2803
- 0.0,
2804
- 119.7,
2805
- 82.03,
2806
- 0.0
2807
- ],
2808
- [
2809
- 0.0,
2810
- 168.78,
2811
- 40.36,
2812
- 0.0
2813
- ],
2814
- [
2815
- 0.0,
2816
- 100.83,
2817
- 0.0,
2818
- 0.0
2819
- ],
2820
- [
2821
- 0.0,
2822
- 0.0,
2823
- 0.0,
2824
- 0.0
2825
- ],
2826
- [
2827
- 0.0,
2828
- 0.0,
2829
- 0.0,
2830
- 0.0
2831
- ],
2832
- [
2833
- 0.0,
2834
- 0.0,
2835
- 0.0,
2836
- 0.0
2837
- ],
2838
- [
2839
- 0.1,
2840
- 0.1,
2841
- 0.1,
2842
- 0.1
2843
- ],
2844
- [
2845
- 0.1,
2846
- 0.1,
2847
- 0.1,
2848
- 0.1
2849
- ],
2850
- [
2851
- 0.1,
2852
- 0.1,
2853
- 0.1,
2854
- 0.1
2855
- ],
2856
- [
2857
- 0.1,
2858
- 0.1,
2859
- 0.1,
2860
- 0.1
2861
- ],
2862
- [
2863
- 0.1,
2864
- 0.1,
2865
- 0.1,
2866
- 0.1
2867
- ],
2868
- [
2869
- 0.1,
2870
- 0.1,
2871
- 0.1,
2872
- 0.1
2873
- ],
2874
- [
2875
- 0.1,
2876
- 0.1,
2877
- 0.1,
2878
- 0.1
2879
- ],
2880
- [
2881
- 0.1,
2882
- 0.1,
2883
- 0.1,
2884
- 0.1
2885
- ],
2886
- [
2887
- 0.1,
2888
- 0.1,
2889
- 0.1,
2890
- 0.1
2891
- ]
2892
- ],
2893
- [
2894
- [
2895
- 0.1,
2896
- 0.1,
2897
- 0.1,
2898
- 0.1
2899
- ],
2900
- [
2901
- 0.1,
2902
- 0.1,
2903
- 0.1,
2904
- 0.1
2905
- ],
2906
- [
2907
- 0.1,
2908
- 0.1,
2909
- 0.1,
2910
- 0.1
2911
- ],
2912
- [
2913
- 0.1,
2914
- 0.1,
2915
- 0.1,
2916
- 0.1
2917
- ],
2918
- [
2919
- 0.1,
2920
- 0.1,
2921
- 0.1,
2922
- 0.1
2923
- ],
2924
- [
2925
- 0.1,
2926
- 0.1,
2927
- 0.1,
2928
- 0.1
2929
- ],
2930
- [
2931
- 0.1,
2932
- 0.1,
2933
- 0.1,
2934
- 0.1
2935
- ],
2936
- [
2937
- 0.1,
2938
- 0.1,
2939
- 0.1,
2940
- 0.1
2941
- ],
2942
- [
2943
- 1.75,
2944
- 0.0,
2945
- 3.67,
2946
- 0.13
2947
- ],
2948
- [
2949
- 0.01,
2950
- 0.0,
2951
- 14.52,
2952
- 12.29
2953
- ],
2954
- [
2955
- 23.01,
2956
- 56.45,
2957
- 35.4,
2958
- 72.05
2959
- ],
2960
- [
2961
- 41.1,
2962
- 71.08,
2963
- 55.24,
2964
- 87.89
2965
- ],
2966
- [
2967
- 15.18,
2968
- 84.81,
2969
- 85.84,
2970
- 0.0
2971
- ],
2972
- [
2973
- 0.0,
2974
- 164.69,
2975
- 82.2,
2976
- 0.0
2977
- ],
2978
- [
2979
- 0.0,
2980
- 137.61,
2981
- 0.0,
2982
- 0.0
2983
- ],
2984
- [
2985
- 0.0,
2986
- 4.57,
2987
- 0.0,
2988
- 0.0
2989
- ],
2990
- [
2991
- 0.0,
2992
- 0.0,
2993
- 0.0,
2994
- 0.0
2995
- ],
2996
- [
2997
- 0.0,
2998
- 0.0,
2999
- 0.0,
3000
- 0.0
3001
- ],
3002
- [
3003
- 0.1,
3004
- 0.1,
3005
- 0.1,
3006
- 0.1
3007
- ],
3008
- [
3009
- 0.1,
3010
- 0.1,
3011
- 0.1,
3012
- 0.1
3013
- ],
3014
- [
3015
- 0.1,
3016
- 0.1,
3017
- 0.1,
3018
- 0.1
3019
- ],
3020
- [
3021
- 0.1,
3022
- 0.1,
3023
- 0.1,
3024
- 0.1
3025
- ],
3026
- [
3027
- 0.1,
3028
- 0.1,
3029
- 0.1,
3030
- 0.1
3031
- ],
3032
- [
3033
- 0.1,
3034
- 0.1,
3035
- 0.1,
3036
- 0.1
3037
- ],
3038
- [
3039
- 0.1,
3040
- 0.1,
3041
- 0.1,
3042
- 0.1
3043
- ],
3044
- [
3045
- 0.1,
3046
- 0.1,
3047
- 0.1,
3048
- 0.1
3049
- ],
3050
- [
3051
- 0.1,
3052
- 0.1,
3053
- 0.1,
3054
- 0.1
3055
- ],
3056
- [
3057
- 0.1,
3058
- 0.1,
3059
- 0.1,
3060
- 0.1
3061
- ]
3062
- ],
3063
- [
3064
- [
3065
- 0.1,
3066
- 0.1,
3067
- 0.1,
3068
- 0.1
3069
- ],
3070
- [
3071
- 0.1,
3072
- 0.1,
3073
- 0.1,
3074
- 0.1
3075
- ],
3076
- [
3077
- 0.1,
3078
- 0.1,
3079
- 0.1,
3080
- 0.1
3081
- ],
3082
- [
3083
- 0.1,
3084
- 0.1,
3085
- 0.1,
3086
- 0.1
3087
- ],
3088
- [
3089
- 0.1,
3090
- 0.1,
3091
- 0.1,
3092
- 0.1
3093
- ],
3094
- [
3095
- 0.1,
3096
- 0.1,
3097
- 0.1,
3098
- 0.1
3099
- ],
3100
- [
3101
- 0.1,
3102
- 0.1,
3103
- 0.1,
3104
- 0.1
3105
- ],
3106
- [
3107
- 1.62,
3108
- 0.0,
3109
- 3.17,
3110
- 0.02
3111
- ],
3112
- [
3113
- 9.62,
3114
- 0.0,
3115
- 22.58,
3116
- 2.22
3117
- ],
3118
- [
3119
- 15.07,
3120
- 38.62,
3121
- 19.73,
3122
- 52.44
3123
- ],
3124
- [
3125
- 44.41,
3126
- 73.63,
3127
- 42.85,
3128
- 107.25
3129
- ],
3130
- [
3131
- 5.68,
3132
- 79.69,
3133
- 51.42,
3134
- 6.47
3135
- ],
3136
- [
3137
- 0.81,
3138
- 141.14,
3139
- 94.0,
3140
- 0.0
3141
- ],
3142
- [
3143
- 0.0,
3144
- 159.74,
3145
- 3.27,
3146
- 0.0
3147
- ],
3148
- [
3149
- 0.0,
3150
- 40.8,
3151
- 0.0,
3152
- 0.0
3153
- ],
3154
- [
3155
- 0.0,
3156
- 0.0,
3157
- 0.0,
3158
- 0.0
3159
- ],
3160
- [
3161
- 0.0,
3162
- 0.0,
3163
- 0.0,
3164
- 0.0
3165
- ],
3166
- [
3167
- 0.0,
3168
- 0.0,
3169
- 0.0,
3170
- 0.0
3171
- ],
3172
- [
3173
- 0.1,
3174
- 0.1,
3175
- 0.1,
3176
- 0.1
3177
- ],
3178
- [
3179
- 0.1,
3180
- 0.1,
3181
- 0.1,
3182
- 0.1
3183
- ],
3184
- [
3185
- 0.1,
3186
- 0.1,
3187
- 0.1,
3188
- 0.1
3189
- ],
3190
- [
3191
- 0.1,
3192
- 0.1,
3193
- 0.1,
3194
- 0.1
3195
- ],
3196
- [
3197
- 0.1,
3198
- 0.1,
3199
- 0.1,
3200
- 0.1
3201
- ],
3202
- [
3203
- 0.1,
3204
- 0.1,
3205
- 0.1,
3206
- 0.1
3207
- ],
3208
- [
3209
- 0.1,
3210
- 0.1,
3211
- 0.1,
3212
- 0.1
3213
- ],
3214
- [
3215
- 0.1,
3216
- 0.1,
3217
- 0.1,
3218
- 0.1
3219
- ],
3220
- [
3221
- 0.1,
3222
- 0.1,
3223
- 0.1,
3224
- 0.1
3225
- ],
3226
- [
3227
- 0.1,
3228
- 0.1,
3229
- 0.1,
3230
- 0.1
3231
- ]
3232
- ],
3233
- [
3234
- [
3235
- 0.1,
3236
- 0.1,
3237
- 0.1,
3238
- 0.1
3239
- ],
3240
- [
3241
- 0.1,
3242
- 0.1,
3243
- 0.1,
3244
- 0.1
3245
- ],
3246
- [
3247
- 0.1,
3248
- 0.1,
3249
- 0.1,
3250
- 0.1
3251
- ],
3252
- [
3253
- 0.1,
3254
- 0.1,
3255
- 0.1,
3256
- 0.1
3257
- ],
3258
- [
3259
- 0.1,
3260
- 0.1,
3261
- 0.1,
3262
- 0.1
3263
- ],
3264
- [
3265
- 0.1,
3266
- 0.1,
3267
- 0.1,
3268
- 0.1
3269
- ],
3270
- [
3271
- 0.1,
3272
- 0.1,
3273
- 0.1,
3274
- 0.1
3275
- ],
3276
- [
3277
- 4.35,
3278
- 0.0,
3279
- 11.27,
3280
- 1.11
3281
- ],
3282
- [
3283
- 2.89,
3284
- 13.35,
3285
- 23.47,
3286
- 20.19
3287
- ],
3288
- [
3289
- 41.89,
3290
- 44.56,
3291
- 43.59,
3292
- 82.64
3293
- ],
3294
- [
3295
- 30.53,
3296
- 79.63,
3297
- 84.73,
3298
- 48.74
3299
- ],
3300
- [
3301
- 11.91,
3302
- 96.18,
3303
- 108.03,
3304
- 0.0
3305
- ],
3306
- [
3307
- 0.0,
3308
- 168.41,
3309
- 59.58,
3310
- 0.0
3311
- ],
3312
- [
3313
- 0.0,
3314
- 95.93,
3315
- 0.0,
3316
- 0.0
3317
- ],
3318
- [
3319
- 0.0,
3320
- 0.0,
3321
- 0.0,
3322
- 0.0
3323
- ],
3324
- [
3325
- 0.0,
3326
- 0.0,
3327
- 0.0,
3328
- 0.0
3329
- ],
3330
- [
3331
- 0.0,
3332
- 0.0,
3333
- 0.0,
3334
- 0.0
3335
- ],
3336
- [
3337
- 0.1,
3338
- 0.1,
3339
- 0.1,
3340
- 0.1
3341
- ],
3342
- [
3343
- 0.1,
3344
- 0.1,
3345
- 0.1,
3346
- 0.1
3347
- ],
3348
- [
3349
- 0.1,
3350
- 0.1,
3351
- 0.1,
3352
- 0.1
3353
- ],
3354
- [
3355
- 0.1,
3356
- 0.1,
3357
- 0.1,
3358
- 0.1
3359
- ],
3360
- [
3361
- 0.1,
3362
- 0.1,
3363
- 0.1,
3364
- 0.1
3365
- ],
3366
- [
3367
- 0.1,
3368
- 0.1,
3369
- 0.1,
3370
- 0.1
3371
- ],
3372
- [
3373
- 0.1,
3374
- 0.1,
3375
- 0.1,
3376
- 0.1
3377
- ],
3378
- [
3379
- 0.1,
3380
- 0.1,
3381
- 0.1,
3382
- 0.1
3383
- ],
3384
- [
3385
- 0.1,
3386
- 0.1,
3387
- 0.1,
3388
- 0.1
3389
- ],
3390
- [
3391
- 0.1,
3392
- 0.1,
3393
- 0.1,
3394
- 0.1
3395
- ],
3396
- [
3397
- 0.1,
3398
- 0.1,
3399
- 0.1,
3400
- 0.1
3401
- ]
3402
- ],
3403
- [
3404
- [
3405
- 0.1,
3406
- 0.1,
3407
- 0.1,
3408
- 0.1
3409
- ],
3410
- [
3411
- 0.1,
3412
- 0.1,
3413
- 0.1,
3414
- 0.1
3415
- ],
3416
- [
3417
- 0.1,
3418
- 0.1,
3419
- 0.1,
3420
- 0.1
3421
- ],
3422
- [
3423
- 0.1,
3424
- 0.1,
3425
- 0.1,
3426
- 0.1
3427
- ],
3428
- [
3429
- 0.1,
3430
- 0.1,
3431
- 0.1,
3432
- 0.1
3433
- ],
3434
- [
3435
- 0.1,
3436
- 0.1,
3437
- 0.1,
3438
- 0.1
3439
- ],
3440
- [
3441
- 3.1,
3442
- 0.0,
3443
- 6.15,
3444
- 0.0
3445
- ],
3446
- [
3447
- 6.14,
3448
- 0.26,
3449
- 18.8,
3450
- 11.37
3451
- ],
3452
- [
3453
- 20.12,
3454
- 53.66,
3455
- 30.13,
3456
- 69.8
3457
- ],
3458
- [
3459
- 50.03,
3460
- 69.52,
3461
- 84.22,
3462
- 79.96
3463
- ],
3464
- [
3465
- 28.54,
3466
- 95.23,
3467
- 98.96,
3468
- 0.0
3469
- ],
3470
- [
3471
- 0.0,
3472
- 166.23,
3473
- 116.89,
3474
- 0.0
3475
- ],
3476
- [
3477
- 0.0,
3478
- 136.83,
3479
- 32.54,
3480
- 0.0
3481
- ],
3482
- [
3483
- 0.0,
3484
- 49.16,
3485
- 0.0,
3486
- 0.0
3487
- ],
3488
- [
3489
- 0.0,
3490
- 0.0,
3491
- 0.0,
3492
- 0.0
3493
- ],
3494
- [
3495
- 0.0,
3496
- 0.0,
3497
- 0.0,
3498
- 0.0
3499
- ],
3500
- [
3501
- 0.0,
3502
- 0.0,
3503
- 0.0,
3504
- 0.0
3505
- ],
3506
- [
3507
- 0.1,
3508
- 0.1,
3509
- 0.1,
3510
- 0.1
3511
- ],
3512
- [
3513
- 0.1,
3514
- 0.1,
3515
- 0.1,
3516
- 0.1
3517
- ],
3518
- [
3519
- 0.1,
3520
- 0.1,
3521
- 0.1,
3522
- 0.1
3523
- ],
3524
- [
3525
- 0.1,
3526
- 0.1,
3527
- 0.1,
3528
- 0.1
3529
- ],
3530
- [
3531
- 0.1,
3532
- 0.1,
3533
- 0.1,
3534
- 0.1
3535
- ],
3536
- [
3537
- 0.1,
3538
- 0.1,
3539
- 0.1,
3540
- 0.1
3541
- ],
3542
- [
3543
- 0.1,
3544
- 0.1,
3545
- 0.1,
3546
- 0.1
3547
- ],
3548
- [
3549
- 0.1,
3550
- 0.1,
3551
- 0.1,
3552
- 0.1
3553
- ],
3554
- [
3555
- 0.1,
3556
- 0.1,
3557
- 0.1,
3558
- 0.1
3559
- ],
3560
- [
3561
- 0.1,
3562
- 0.1,
3563
- 0.1,
3564
- 0.1
3565
- ],
3566
- [
3567
- 0.1,
3568
- 0.1,
3569
- 0.1,
3570
- 0.1
3571
- ]
3572
- ],
3573
- [
3574
- [
3575
- 0.1,
3576
- 0.1,
3577
- 0.1,
3578
- 0.1
3579
- ],
3580
- [
3581
- 0.1,
3582
- 0.1,
3583
- 0.1,
3584
- 0.1
3585
- ],
3586
- [
3587
- 0.1,
3588
- 0.1,
3589
- 0.1,
3590
- 0.1
3591
- ],
3592
- [
3593
- 0.1,
3594
- 0.1,
3595
- 0.1,
3596
- 0.1
3597
- ],
3598
- [
3599
- 0.1,
3600
- 0.1,
3601
- 0.1,
3602
- 0.1
3603
- ],
3604
- [
3605
- 0.1,
3606
- 0.1,
3607
- 0.1,
3608
- 0.1
3609
- ],
3610
- [
3611
- 1.55,
3612
- 0.0,
3613
- 8.14,
3614
- 2.46
3615
- ],
3616
- [
3617
- 9.63,
3618
- 22.1,
3619
- 15.45,
3620
- 38.35
3621
- ],
3622
- [
3623
- 52.21,
3624
- 54.25,
3625
- 41.28,
3626
- 92.67
3627
- ],
3628
- [
3629
- 38.91,
3630
- 78.02,
3631
- 89.44,
3632
- 27.73
3633
- ],
3634
- [
3635
- 6.37,
3636
- 154.15,
3637
- 159.31,
3638
- 0.0
3639
- ],
3640
- [
3641
- 0.0,
3642
- 180.14,
3643
- 52.5,
3644
- 0.0
3645
- ],
3646
- [
3647
- 0.0,
3648
- 105.0,
3649
- 0.0,
3650
- 0.0
3651
- ],
3652
- [
3653
- 0.0,
3654
- 10.38,
3655
- 0.0,
3656
- 0.0
3657
- ],
3658
- [
3659
- 0.0,
3660
- 0.0,
3661
- 0.0,
3662
- 0.0
3663
- ],
3664
- [
3665
- 0.0,
3666
- 0.0,
3667
- 0.0,
3668
- 0.0
3669
- ],
3670
- [
3671
- 0.1,
3672
- 0.1,
3673
- 0.1,
3674
- 0.1
3675
- ],
3676
- [
3677
- 0.1,
3678
- 0.1,
3679
- 0.1,
3680
- 0.1
3681
- ],
3682
- [
3683
- 0.1,
3684
- 0.1,
3685
- 0.1,
3686
- 0.1
3687
- ],
3688
- [
3689
- 0.1,
3690
- 0.1,
3691
- 0.1,
3692
- 0.1
3693
- ],
3694
- [
3695
- 0.1,
3696
- 0.1,
3697
- 0.1,
3698
- 0.1
3699
- ],
3700
- [
3701
- 0.1,
3702
- 0.1,
3703
- 0.1,
3704
- 0.1
3705
- ],
3706
- [
3707
- 0.1,
3708
- 0.1,
3709
- 0.1,
3710
- 0.1
3711
- ],
3712
- [
3713
- 0.1,
3714
- 0.1,
3715
- 0.1,
3716
- 0.1
3717
- ],
3718
- [
3719
- 0.1,
3720
- 0.1,
3721
- 0.1,
3722
- 0.1
3723
- ],
3724
- [
3725
- 0.1,
3726
- 0.1,
3727
- 0.1,
3728
- 0.1
3729
- ],
3730
- [
3731
- 0.1,
3732
- 0.1,
3733
- 0.1,
3734
- 0.1
3735
- ],
3736
- [
3737
- 0.1,
3738
- 0.1,
3739
- 0.1,
3740
- 0.1
3741
- ]
3742
- ],
3743
- [
3744
- [
3745
- 0.1,
3746
- 0.1,
3747
- 0.1,
3748
- 0.1
3749
- ],
3750
- [
3751
- 0.1,
3752
- 0.1,
3753
- 0.1,
3754
- 0.1
3755
- ],
3756
- [
3757
- 0.1,
3758
- 0.1,
3759
- 0.1,
3760
- 0.1
3761
- ],
3762
- [
3763
- 0.1,
3764
- 0.1,
3765
- 0.1,
3766
- 0.1
3767
- ],
3768
- [
3769
- 0.1,
3770
- 0.1,
3771
- 0.1,
3772
- 0.1
3773
- ],
3774
- [
3775
- 0.1,
3776
- 0.1,
3777
- 0.1,
3778
- 0.1
3779
- ],
3780
- [
3781
- 0.48,
3782
- 3.49,
3783
- 0.0,
3784
- 14.9
3785
- ],
3786
- [
3787
- 34.79,
3788
- 34.58,
3789
- 11.05,
3790
- 65.99
3791
- ],
3792
- [
3793
- 73.3,
3794
- 69.48,
3795
- 61.22,
3796
- 57.19
3797
- ],
3798
- [
3799
- 60.55,
3800
- 98.71,
3801
- 92.5,
3802
- 0.0
3803
- ],
3804
- [
3805
- 0.0,
3806
- 175.01,
3807
- 86.59,
3808
- 0.0
3809
- ],
3810
- [
3811
- 0.0,
3812
- 133.27,
3813
- 0.0,
3814
- 0.0
3815
- ],
3816
- [
3817
- 0.0,
3818
- 49.89,
3819
- 0.0,
3820
- 0.0
3821
- ],
3822
- [
3823
- 0.0,
3824
- 0.0,
3825
- 0.0,
3826
- 0.0
3827
- ],
3828
- [
3829
- 0.0,
3830
- 0.0,
3831
- 0.0,
3832
- 0.0
3833
- ],
3834
- [
3835
- 0.08,
3836
- 0.07,
3837
- 0.02,
3838
- 0.06
3839
- ],
3840
- [
3841
- 0.1,
3842
- 0.1,
3843
- 0.1,
3844
- 0.1
3845
- ],
3846
- [
3847
- 0.1,
3848
- 0.1,
3849
- 0.1,
3850
- 0.1
3851
- ],
3852
- [
3853
- 0.1,
3854
- 0.1,
3855
- 0.1,
3856
- 0.1
3857
- ],
3858
- [
3859
- 0.1,
3860
- 0.1,
3861
- 0.1,
3862
- 0.1
3863
- ],
3864
- [
3865
- 0.1,
3866
- 0.1,
3867
- 0.1,
3868
- 0.1
3869
- ],
3870
- [
3871
- 0.1,
3872
- 0.1,
3873
- 0.1,
3874
- 0.1
3875
- ],
3876
- [
3877
- 0.1,
3878
- 0.1,
3879
- 0.1,
3880
- 0.1
3881
- ],
3882
- [
3883
- 0.1,
3884
- 0.1,
3885
- 0.1,
3886
- 0.1
3887
- ],
3888
- [
3889
- 0.1,
3890
- 0.1,
3891
- 0.1,
3892
- 0.1
3893
- ],
3894
- [
3895
- 0.1,
3896
- 0.1,
3897
- 0.1,
3898
- 0.1
3899
- ],
3900
- [
3901
- 0.1,
3902
- 0.1,
3903
- 0.1,
3904
- 0.1
3905
- ],
3906
- [
3907
- 0.1,
3908
- 0.1,
3909
- 0.1,
3910
- 0.1
3911
- ]
3912
- ],
3913
- [
3914
- [
3915
- 0.1,
3916
- 0.1,
3917
- 0.1,
3918
- 0.1
3919
- ],
3920
- [
3921
- 0.1,
3922
- 0.1,
3923
- 0.1,
3924
- 0.1
3925
- ],
3926
- [
3927
- 0.1,
3928
- 0.1,
3929
- 0.1,
3930
- 0.1
3931
- ],
3932
- [
3933
- 0.1,
3934
- 0.1,
3935
- 0.1,
3936
- 0.1
3937
- ],
3938
- [
3939
- 0.1,
3940
- 0.1,
3941
- 0.1,
3942
- 0.1
3943
- ],
3944
- [
3945
- 0.1,
3946
- 0.1,
3947
- 0.1,
3948
- 0.1
3949
- ],
3950
- [
3951
- 6.21,
3952
- 7.54,
3953
- 0.0,
3954
- 24.62
3955
- ],
3956
- [
3957
- 43.02,
3958
- 30.62,
3959
- 0.0,
3960
- 50.33
3961
- ],
3962
- [
3963
- 73.71,
3964
- 55.54,
3965
- 22.92,
3966
- 17.77
3967
- ],
3968
- [
3969
- 106.89,
3970
- 85.93,
3971
- 71.31,
3972
- 0.0
3973
- ],
3974
- [
3975
- 73.28,
3976
- 78.43,
3977
- 12.38,
3978
- 0.0
3979
- ],
3980
- [
3981
- 8.99,
3982
- 31.38,
3983
- 0.0,
3984
- 0.0
3985
- ],
3986
- [
3987
- 0.0,
3988
- 0.0,
3989
- 0.0,
3990
- 0.0
3991
- ],
3992
- [
3993
- 0.0,
3994
- 0.0,
3995
- 0.0,
3996
- 0.0
3997
- ],
3998
- [
3999
- 0.0,
4000
- 0.0,
4001
- 0.0,
4002
- 0.0
4003
- ],
4004
- [
4005
- 0.1,
4006
- 0.1,
4007
- 0.1,
4008
- 0.1
4009
- ],
4010
- [
4011
- 0.1,
4012
- 0.1,
4013
- 0.1,
4014
- 0.1
4015
- ],
4016
- [
4017
- 0.1,
4018
- 0.1,
4019
- 0.1,
4020
- 0.1
4021
- ],
4022
- [
4023
- 0.1,
4024
- 0.1,
4025
- 0.1,
4026
- 0.1
4027
- ],
4028
- [
4029
- 0.1,
4030
- 0.1,
4031
- 0.1,
4032
- 0.1
4033
- ],
4034
- [
4035
- 0.1,
4036
- 0.1,
4037
- 0.1,
4038
- 0.1
4039
- ],
4040
- [
4041
- 0.1,
4042
- 0.1,
4043
- 0.1,
4044
- 0.1
4045
- ],
4046
- [
4047
- 0.1,
4048
- 0.1,
4049
- 0.1,
4050
- 0.1
4051
- ],
4052
- [
4053
- 0.1,
4054
- 0.1,
4055
- 0.1,
4056
- 0.1
4057
- ],
4058
- [
4059
- 0.1,
4060
- 0.1,
4061
- 0.1,
4062
- 0.1
4063
- ],
4064
- [
4065
- 0.1,
4066
- 0.1,
4067
- 0.1,
4068
- 0.1
4069
- ],
4070
- [
4071
- 0.1,
4072
- 0.1,
4073
- 0.1,
4074
- 0.1
4075
- ],
4076
- [
4077
- 0.1,
4078
- 0.1,
4079
- 0.1,
4080
- 0.1
4081
- ]
4082
- ],
4083
- [
4084
- [
4085
- 0.1,
4086
- 0.1,
4087
- 0.1,
4088
- 0.1
4089
- ],
4090
- [
4091
- 0.1,
4092
- 0.1,
4093
- 0.1,
4094
- 0.1
4095
- ],
4096
- [
4097
- 0.1,
4098
- 0.1,
4099
- 0.1,
4100
- 0.1
4101
- ],
4102
- [
4103
- 0.1,
4104
- 0.1,
4105
- 0.1,
4106
- 0.1
4107
- ],
4108
- [
4109
- 0.1,
4110
- 0.1,
4111
- 0.1,
4112
- 0.1
4113
- ],
4114
- [
4115
- 0.1,
4116
- 0.1,
4117
- 0.1,
4118
- 0.1
4119
- ],
4120
- [
4121
- 26.25,
4122
- 0.0,
4123
- 0.65,
4124
- 7.76
4125
- ],
4126
- [
4127
- 78.35,
4128
- 8.06,
4129
- 22.28,
4130
- 1.31
4131
- ],
4132
- [
4133
- 107.95,
4134
- 23.5,
4135
- 32.53,
4136
- 0.0
4137
- ],
4138
- [
4139
- 93.58,
4140
- 34.08,
4141
- 45.58,
4142
- 0.0
4143
- ],
4144
- [
4145
- 54.39,
4146
- 0.0,
4147
- 0.0,
4148
- 0.0
4149
- ],
4150
- [
4151
- 9.21,
4152
- 0.0,
4153
- 0.0,
4154
- 0.0
4155
- ],
4156
- [
4157
- 9.2,
4158
- 0.0,
4159
- 0.0,
4160
- 0.0
4161
- ],
4162
- [
4163
- 1.35,
4164
- 0.0,
4165
- 0.0,
4166
- 0.0
4167
- ],
4168
- [
4169
- 0.0,
4170
- 0.0,
4171
- 0.0,
4172
- 0.0
4173
- ],
4174
- [
4175
- 0.1,
4176
- 0.1,
4177
- 0.1,
4178
- 0.1
4179
- ],
4180
- [
4181
- 0.1,
4182
- 0.1,
4183
- 0.1,
4184
- 0.1
4185
- ],
4186
- [
4187
- 0.1,
4188
- 0.1,
4189
- 0.1,
4190
- 0.1
4191
- ],
4192
- [
4193
- 0.1,
4194
- 0.1,
4195
- 0.1,
4196
- 0.1
4197
- ],
4198
- [
4199
- 0.1,
4200
- 0.1,
4201
- 0.1,
4202
- 0.1
4203
- ],
4204
- [
4205
- 0.1,
4206
- 0.1,
4207
- 0.1,
4208
- 0.1
4209
- ],
4210
- [
4211
- 0.1,
4212
- 0.1,
4213
- 0.1,
4214
- 0.1
4215
- ],
4216
- [
4217
- 0.1,
4218
- 0.1,
4219
- 0.1,
4220
- 0.1
4221
- ],
4222
- [
4223
- 0.1,
4224
- 0.1,
4225
- 0.1,
4226
- 0.1
4227
- ],
4228
- [
4229
- 0.1,
4230
- 0.1,
4231
- 0.1,
4232
- 0.1
4233
- ],
4234
- [
4235
- 0.1,
4236
- 0.1,
4237
- 0.1,
4238
- 0.1
4239
- ],
4240
- [
4241
- 0.1,
4242
- 0.1,
4243
- 0.1,
4244
- 0.1
4245
- ],
4246
- [
4247
- 0.1,
4248
- 0.1,
4249
- 0.1,
4250
- 0.1
4251
- ]
4252
- ],
4253
- [
4254
- [
4255
- 0.1,
4256
- 0.1,
4257
- 0.1,
4258
- 0.1
4259
- ],
4260
- [
4261
- 0.1,
4262
- 0.1,
4263
- 0.1,
4264
- 0.1
4265
- ],
4266
- [
4267
- 0.1,
4268
- 0.1,
4269
- 0.1,
4270
- 0.1
4271
- ],
4272
- [
4273
- 0.1,
4274
- 0.1,
4275
- 0.1,
4276
- 0.1
4277
- ],
4278
- [
4279
- 0.1,
4280
- 0.1,
4281
- 0.1,
4282
- 0.1
4283
- ],
4284
- [
4285
- 0.1,
4286
- 0.1,
4287
- 0.1,
4288
- 0.1
4289
- ],
4290
- [
4291
- 22.42,
4292
- 0.0,
4293
- 24.85,
4294
- 0.0
4295
- ],
4296
- [
4297
- 61.95,
4298
- 0.0,
4299
- 60.01,
4300
- 0.0
4301
- ],
4302
- [
4303
- 61.65,
4304
- 0.0,
4305
- 96.87,
4306
- 0.0
4307
- ],
4308
- [
4309
- 33.69,
4310
- 7.84,
4311
- 115.56,
4312
- 0.0
4313
- ],
4314
- [
4315
- 32.56,
4316
- 0.0,
4317
- 32.38,
4318
- 0.0
4319
- ],
4320
- [
4321
- 7.94,
4322
- 0.0,
4323
- 0.0,
4324
- 0.0
4325
- ],
4326
- [
4327
- 0.0,
4328
- 0.0,
4329
- 0.0,
4330
- 0.0
4331
- ],
4332
- [
4333
- 0.0,
4334
- 0.0,
4335
- 0.0,
4336
- 0.0
4337
- ],
4338
- [
4339
- 0.0,
4340
- 0.0,
4341
- 0.0,
4342
- 0.0
4343
- ],
4344
- [
4345
- 0.1,
4346
- 0.1,
4347
- 0.1,
4348
- 0.1
4349
- ],
4350
- [
4351
- 0.1,
4352
- 0.1,
4353
- 0.1,
4354
- 0.1
4355
- ],
4356
- [
4357
- 0.1,
4358
- 0.1,
4359
- 0.1,
4360
- 0.1
4361
- ],
4362
- [
4363
- 0.1,
4364
- 0.1,
4365
- 0.1,
4366
- 0.1
4367
- ],
4368
- [
4369
- 0.1,
4370
- 0.1,
4371
- 0.1,
4372
- 0.1
4373
- ],
4374
- [
4375
- 0.1,
4376
- 0.1,
4377
- 0.1,
4378
- 0.1
4379
- ],
4380
- [
4381
- 0.1,
4382
- 0.1,
4383
- 0.1,
4384
- 0.1
4385
- ],
4386
- [
4387
- 0.1,
4388
- 0.1,
4389
- 0.1,
4390
- 0.1
4391
- ],
4392
- [
4393
- 0.1,
4394
- 0.1,
4395
- 0.1,
4396
- 0.1
4397
- ],
4398
- [
4399
- 0.1,
4400
- 0.1,
4401
- 0.1,
4402
- 0.1
4403
- ],
4404
- [
4405
- 0.1,
4406
- 0.1,
4407
- 0.1,
4408
- 0.1
4409
- ],
4410
- [
4411
- 0.1,
4412
- 0.1,
4413
- 0.1,
4414
- 0.1
4415
- ],
4416
- [
4417
- 0.1,
4418
- 0.1,
4419
- 0.1,
4420
- 0.1
4421
- ]
4422
- ],
4423
- [
4424
- [
4425
- 0.1,
4426
- 0.1,
4427
- 0.1,
4428
- 0.1
4429
- ],
4430
- [
4431
- 0.1,
4432
- 0.1,
4433
- 0.1,
4434
- 0.1
4435
- ],
4436
- [
4437
- 0.1,
4438
- 0.1,
4439
- 0.1,
4440
- 0.1
4441
- ],
4442
- [
4443
- 0.1,
4444
- 0.1,
4445
- 0.1,
4446
- 0.1
4447
- ],
4448
- [
4449
- 0.1,
4450
- 0.1,
4451
- 0.1,
4452
- 0.1
4453
- ],
4454
- [
4455
- 0.1,
4456
- 0.1,
4457
- 0.1,
4458
- 0.1
4459
- ],
4460
- [
4461
- 5.76,
4462
- 5.2,
4463
- 28.94,
4464
- 0.0
4465
- ],
4466
- [
4467
- 28.69,
4468
- 8.09,
4469
- 70.3,
4470
- 0.0
4471
- ],
4472
- [
4473
- 37.05,
4474
- 19.68,
4475
- 63.11,
4476
- 0.0
4477
- ],
4478
- [
4479
- 13.43,
4480
- 3.4,
4481
- 10.59,
4482
- 0.0
4483
- ],
4484
- [
4485
- 0.0,
4486
- 0.0,
4487
- 0.0,
4488
- 4.3
4489
- ],
4490
- [
4491
- 0.0,
4492
- 0.0,
4493
- 0.0,
4494
- 0.66
4495
- ],
4496
- [
4497
- 0.0,
4498
- 0.0,
4499
- 0.0,
4500
- 0.0
4501
- ],
4502
- [
4503
- 0.0,
4504
- 0.0,
4505
- 0.0,
4506
- 0.0
4507
- ],
4508
- [
4509
- 0.1,
4510
- 0.1,
4511
- 0.1,
4512
- 0.1
4513
- ],
4514
- [
4515
- 0.1,
4516
- 0.1,
4517
- 0.1,
4518
- 0.1
4519
- ],
4520
- [
4521
- 0.1,
4522
- 0.1,
4523
- 0.1,
4524
- 0.1
4525
- ],
4526
- [
4527
- 0.1,
4528
- 0.1,
4529
- 0.1,
4530
- 0.1
4531
- ],
4532
- [
4533
- 0.1,
4534
- 0.1,
4535
- 0.1,
4536
- 0.1
4537
- ],
4538
- [
4539
- 0.1,
4540
- 0.1,
4541
- 0.1,
4542
- 0.1
4543
- ],
4544
- [
4545
- 0.1,
4546
- 0.1,
4547
- 0.1,
4548
- 0.1
4549
- ],
4550
- [
4551
- 0.1,
4552
- 0.1,
4553
- 0.1,
4554
- 0.1
4555
- ],
4556
- [
4557
- 0.1,
4558
- 0.1,
4559
- 0.1,
4560
- 0.1
4561
- ],
4562
- [
4563
- 0.1,
4564
- 0.1,
4565
- 0.1,
4566
- 0.1
4567
- ],
4568
- [
4569
- 0.1,
4570
- 0.1,
4571
- 0.1,
4572
- 0.1
4573
- ],
4574
- [
4575
- 0.1,
4576
- 0.1,
4577
- 0.1,
4578
- 0.1
4579
- ],
4580
- [
4581
- 0.1,
4582
- 0.1,
4583
- 0.1,
4584
- 0.1
4585
- ],
4586
- [
4587
- 0.1,
4588
- 0.1,
4589
- 0.1,
4590
- 0.1
4591
- ]
4592
- ],
4593
- [
4594
- [
4595
- 0.1,
4596
- 0.1,
4597
- 0.1,
4598
- 0.1
4599
- ],
4600
- [
4601
- 0.1,
4602
- 0.1,
4603
- 0.1,
4604
- 0.1
4605
- ],
4606
- [
4607
- 0.1,
4608
- 0.1,
4609
- 0.1,
4610
- 0.1
4611
- ],
4612
- [
4613
- 0.1,
4614
- 0.1,
4615
- 0.1,
4616
- 0.1
4617
- ],
4618
- [
4619
- 0.1,
4620
- 0.1,
4621
- 0.1,
4622
- 0.1
4623
- ],
4624
- [
4625
- 0.1,
4626
- 0.1,
4627
- 0.1,
4628
- 0.1
4629
- ],
4630
- [
4631
- 0.1,
4632
- 0.1,
4633
- 0.1,
4634
- 0.1
4635
- ],
4636
- [
4637
- 0.1,
4638
- 0.1,
4639
- 0.1,
4640
- 0.1
4641
- ],
4642
- [
4643
- 0.1,
4644
- 0.1,
4645
- 0.1,
4646
- 0.1
4647
- ],
4648
- [
4649
- 0.1,
4650
- 0.1,
4651
- 0.1,
4652
- 0.1
4653
- ],
4654
- [
4655
- 0.1,
4656
- 0.1,
4657
- 0.1,
4658
- 0.1
4659
- ],
4660
- [
4661
- 0.1,
4662
- 0.1,
4663
- 0.1,
4664
- 0.1
4665
- ],
4666
- [
4667
- 0.1,
4668
- 0.1,
4669
- 0.1,
4670
- 0.1
4671
- ],
4672
- [
4673
- 0.1,
4674
- 0.1,
4675
- 0.1,
4676
- 0.1
4677
- ],
4678
- [
4679
- 0.1,
4680
- 0.1,
4681
- 0.1,
4682
- 0.1
4683
- ],
4684
- [
4685
- 0.1,
4686
- 0.1,
4687
- 0.1,
4688
- 0.1
4689
- ],
4690
- [
4691
- 0.1,
4692
- 0.1,
4693
- 0.1,
4694
- 0.1
4695
- ],
4696
- [
4697
- 0.1,
4698
- 0.1,
4699
- 0.1,
4700
- 0.1
4701
- ],
4702
- [
4703
- 0.1,
4704
- 0.1,
4705
- 0.1,
4706
- 0.1
4707
- ],
4708
- [
4709
- 0.1,
4710
- 0.1,
4711
- 0.1,
4712
- 0.1
4713
- ],
4714
- [
4715
- 0.1,
4716
- 0.1,
4717
- 0.1,
4718
- 0.1
4719
- ],
4720
- [
4721
- 0.1,
4722
- 0.1,
4723
- 0.1,
4724
- 0.1
4725
- ],
4726
- [
4727
- 0.1,
4728
- 0.1,
4729
- 0.1,
4730
- 0.1
4731
- ],
4732
- [
4733
- 0.1,
4734
- 0.1,
4735
- 0.1,
4736
- 0.1
4737
- ],
4738
- [
4739
- 0.1,
4740
- 0.1,
4741
- 0.1,
4742
- 0.1
4743
- ],
4744
- [
4745
- 0.1,
4746
- 0.1,
4747
- 0.1,
4748
- 0.1
4749
- ],
4750
- [
4751
- 0.1,
4752
- 0.1,
4753
- 0.1,
4754
- 0.1
4755
- ],
4756
- [
4757
- 0.1,
4758
- 0.1,
4759
- 0.1,
4760
- 0.1
4761
- ]
4762
- ]
4763
- ]
4764
- ]