glowfish 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +34 -0
- data/lib/glowfish.rb +137 -0
- data/lib/glowfish/version.rb +3 -0
- data/lib/tasks/glowfish_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +34 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +56 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -0
- data/test/dummy/log/test.log +20 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/glowfish_test.rb +7 -0
- data/test/test_helper.rb +19 -0
- metadata +171 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 83d2735cd8182a314a86cb1255d3c6e04328f222
|
|
4
|
+
data.tar.gz: a9feeb2f498c67755a1caec5ee5a44ae20d31dbf
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 83363e7d722f841f6f3f0a61168a180b4040cca6a50149d7209c351c2a2cbf51a968b609e6751f303cdd0fd0a63372c1a5397375c32ac1c4cd0d365ac59079e9
|
|
7
|
+
data.tar.gz: 5b4dc0c35ca29e8ac8deec898f03078b70fc257453475c89951a3916b6fc902e882670c3f79793dec2e3cc3a6d13d1e54b1cb6bd8f3ed9b23bc3379df3d50ecb
|
data/MIT-LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright 2015 Patrick
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
begin
|
|
2
|
+
require 'bundler/setup'
|
|
3
|
+
rescue LoadError
|
|
4
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
|
5
|
+
end
|
|
6
|
+
|
|
7
|
+
require 'rdoc/task'
|
|
8
|
+
|
|
9
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
|
10
|
+
rdoc.rdoc_dir = 'rdoc'
|
|
11
|
+
rdoc.title = 'Glowfish'
|
|
12
|
+
rdoc.options << '--line-numbers'
|
|
13
|
+
rdoc.rdoc_files.include('README.rdoc')
|
|
14
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
Bundler::GemHelper.install_tasks
|
|
23
|
+
|
|
24
|
+
require 'rake/testtask'
|
|
25
|
+
|
|
26
|
+
Rake::TestTask.new(:test) do |t|
|
|
27
|
+
t.libs << 'lib'
|
|
28
|
+
t.libs << 'test'
|
|
29
|
+
t.pattern = 'test/**/*_test.rb'
|
|
30
|
+
t.verbose = false
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
task default: :test
|
data/lib/glowfish.rb
ADDED
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
require 'net/http'
|
|
2
|
+
require 'net/https'
|
|
3
|
+
require 'uri'
|
|
4
|
+
|
|
5
|
+
require 'json'
|
|
6
|
+
|
|
7
|
+
module Glowfish
|
|
8
|
+
class API
|
|
9
|
+
@@url = "https://api.glowfi.sh/"
|
|
10
|
+
@@v = "v1"
|
|
11
|
+
|
|
12
|
+
def initialize(sid = nil, token = nil)
|
|
13
|
+
@sid = sid
|
|
14
|
+
@token = token
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def train(data_set = {}, response = {}, params = {})
|
|
18
|
+
data = Hash.new("data")
|
|
19
|
+
data = {"data_set" => data_set, "response" => response}
|
|
20
|
+
data.merge!(params)
|
|
21
|
+
|
|
22
|
+
return _request("train", data)
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def predict(data_set = {}, response = nil, params = {})
|
|
26
|
+
data = Hash.new("data")
|
|
27
|
+
data = {"data_set" => data_set, "response" => response}
|
|
28
|
+
data.merge!(params)
|
|
29
|
+
|
|
30
|
+
return _request("predict", data)
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def cluster(data_set = {}, response = nil, params = {})
|
|
34
|
+
data = Hash.new("data")
|
|
35
|
+
data = {"data_set" => data_set, "response" => response}
|
|
36
|
+
data.merge!(params)
|
|
37
|
+
|
|
38
|
+
return _request("cluster", data)
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
def feature_select(data_set = {}, response = nil, params = {})
|
|
42
|
+
data = Hash.new("data")
|
|
43
|
+
data = {"data_set" => data_set, "response" => response}
|
|
44
|
+
data.merge!(params)
|
|
45
|
+
|
|
46
|
+
return _request("feature_select", data)
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
def filter_train(userids = [], productids = [], ratings = [], params = {})
|
|
50
|
+
data = Hash.new("data")
|
|
51
|
+
data = {"userid" => userids, "productid" => productids, "ratings" => ratings}
|
|
52
|
+
data.merge!(params)
|
|
53
|
+
|
|
54
|
+
return _request("filter_train", data)
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
def filter_predict(userids = [], productids = [], ratings = [], params = {})
|
|
58
|
+
data = Hash.new("data")
|
|
59
|
+
data = {"userid" => userids, "productid" => productids, "ratings" => ratings}
|
|
60
|
+
data.merge!(params)
|
|
61
|
+
|
|
62
|
+
return _request("filter_predict", data)
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
private
|
|
66
|
+
|
|
67
|
+
def _request (endpoint, data)
|
|
68
|
+
url = URI.parse("#{@@url}#{@@v}/#{endpoint}/")
|
|
69
|
+
req = Net::HTTP::Post.new(url.path, initheader = {'Content-Type' =>'application/json'})
|
|
70
|
+
req.basic_auth @sid, @token
|
|
71
|
+
#req.set_form_data(data.to_json)
|
|
72
|
+
req.body = data.to_json
|
|
73
|
+
|
|
74
|
+
sock = Net::HTTP.new(url.host, url.port)
|
|
75
|
+
sock.use_ssl = true
|
|
76
|
+
res = sock.start {|http| http.request(req) }
|
|
77
|
+
|
|
78
|
+
begin
|
|
79
|
+
result = JSON.parse(res.body)
|
|
80
|
+
rescue JSON::ParserError => e
|
|
81
|
+
return Response.new(400, "Unknown error occurred", nil, e, nil)
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
metrics = nil
|
|
85
|
+
if result.has_key? 'result' and result['result'].has_key? 'metrics'
|
|
86
|
+
metrics = result['result']['metrics']
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
if result.has_key? 'status' and result['status'].has_key? 'code'
|
|
90
|
+
if result['status']['code'].to_i < 300
|
|
91
|
+
return Response.new(result['status']['code'].to_i, "Success", result['result'], nil, metrics)
|
|
92
|
+
else
|
|
93
|
+
if result['status'].has_key? 'codeMessage' and result.has_key? 'errors'
|
|
94
|
+
return Response.new(result['status']['code'].to_i, result['status']['codeMessage'], nil, result['errors'], metrics)
|
|
95
|
+
elsif result['status'].has_key? 'codeMessage'
|
|
96
|
+
return Response.new(400, "Unknown connection error", nil, {"global" => result['status']['codeMessage']}, metrics)
|
|
97
|
+
else
|
|
98
|
+
return Response.new(400, "Unknown connection error", nil, nil, metrics)
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
end
|
|
102
|
+
end
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
class Response
|
|
106
|
+
@code = 200
|
|
107
|
+
@message = nil
|
|
108
|
+
|
|
109
|
+
@data = nil
|
|
110
|
+
@errors = nil
|
|
111
|
+
@metrics = nil
|
|
112
|
+
|
|
113
|
+
def initialize(*args)
|
|
114
|
+
@code, @message, @data, @errors, @metrics = args
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
def code
|
|
118
|
+
return @code
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
def message
|
|
122
|
+
return @message
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
def data
|
|
126
|
+
return @data
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
def errors
|
|
130
|
+
return @errors
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
def metrics
|
|
134
|
+
return @metrics
|
|
135
|
+
end
|
|
136
|
+
end
|
|
137
|
+
end
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
== README
|
|
2
|
+
|
|
3
|
+
This README would normally document whatever steps are necessary to get the
|
|
4
|
+
application up and running.
|
|
5
|
+
|
|
6
|
+
Things you may want to cover:
|
|
7
|
+
|
|
8
|
+
* Ruby version
|
|
9
|
+
|
|
10
|
+
* System dependencies
|
|
11
|
+
|
|
12
|
+
* Configuration
|
|
13
|
+
|
|
14
|
+
* Database creation
|
|
15
|
+
|
|
16
|
+
* Database initialization
|
|
17
|
+
|
|
18
|
+
* How to run the test suite
|
|
19
|
+
|
|
20
|
+
* Services (job queues, cache servers, search engines, etc.)
|
|
21
|
+
|
|
22
|
+
* Deployment instructions
|
|
23
|
+
|
|
24
|
+
* ...
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
Please feel free to use a different markup language if you do not plan to run
|
|
28
|
+
<tt>rake doc:app</tt>.
|
data/test/dummy/Rakefile
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
|
2
|
+
// listed below.
|
|
3
|
+
//
|
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
|
5
|
+
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
|
|
6
|
+
//
|
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
|
8
|
+
// compiled file.
|
|
9
|
+
//
|
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
|
11
|
+
// about supported directives.
|
|
12
|
+
//
|
|
13
|
+
//= require_tree .
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
|
3
|
+
* listed below.
|
|
4
|
+
*
|
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
|
6
|
+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
|
7
|
+
*
|
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any styles
|
|
10
|
+
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
|
11
|
+
* file per style scope.
|
|
12
|
+
*
|
|
13
|
+
*= require_tree .
|
|
14
|
+
*= require_self
|
|
15
|
+
*/
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>Dummy</title>
|
|
5
|
+
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
|
6
|
+
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
|
7
|
+
<%= csrf_meta_tags %>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
|
|
11
|
+
<%= yield %>
|
|
12
|
+
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
data/test/dummy/bin/rake
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
require 'pathname'
|
|
3
|
+
|
|
4
|
+
# path to your application root.
|
|
5
|
+
APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
|
|
6
|
+
|
|
7
|
+
Dir.chdir APP_ROOT do
|
|
8
|
+
# This script is a starting point to setup your application.
|
|
9
|
+
# Add necessary setup steps to this file:
|
|
10
|
+
|
|
11
|
+
puts "== Installing dependencies =="
|
|
12
|
+
system "gem install bundler --conservative"
|
|
13
|
+
system "bundle check || bundle install"
|
|
14
|
+
|
|
15
|
+
# puts "\n== Copying sample files =="
|
|
16
|
+
# unless File.exist?("config/database.yml")
|
|
17
|
+
# system "cp config/database.yml.sample config/database.yml"
|
|
18
|
+
# end
|
|
19
|
+
|
|
20
|
+
puts "\n== Preparing database =="
|
|
21
|
+
system "bin/rake db:setup"
|
|
22
|
+
|
|
23
|
+
puts "\n== Removing old logs and tempfiles =="
|
|
24
|
+
system "rm -f log/*"
|
|
25
|
+
system "rm -rf tmp/cache"
|
|
26
|
+
|
|
27
|
+
puts "\n== Restarting application server =="
|
|
28
|
+
system "touch tmp/restart.txt"
|
|
29
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
|
2
|
+
|
|
3
|
+
require 'rails/all'
|
|
4
|
+
|
|
5
|
+
Bundler.require(*Rails.groups)
|
|
6
|
+
require "glowfish"
|
|
7
|
+
|
|
8
|
+
require 'pp'
|
|
9
|
+
|
|
10
|
+
module Dummy
|
|
11
|
+
class Application < Rails::Application
|
|
12
|
+
# Settings in config/environments/* take precedence over those specified here.
|
|
13
|
+
# Application configuration should go into files in config/initializers
|
|
14
|
+
# -- all .rb files in that directory are automatically loaded.
|
|
15
|
+
|
|
16
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
|
17
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
|
18
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
|
19
|
+
|
|
20
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
|
21
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
|
22
|
+
# config.i18n.default_locale = :de
|
|
23
|
+
|
|
24
|
+
# Do not swallow errors in after_commit/after_rollback callbacks.
|
|
25
|
+
config.active_record.raise_in_transactional_callbacks = true
|
|
26
|
+
|
|
27
|
+
glower = Glowfish::API.new("YOUR_SID", "YOUR_API_TOKEN")
|
|
28
|
+
response = glower.train({"A1" => [800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 16000.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 16000.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 16000.0, 20000.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 16000.0, 20000.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 16000.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 16000.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 16000.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 16000.0, 20000.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 16000.0, 20000.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 16000.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 16000.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 16000.0, 20000.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 16000.0, 20000.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 12500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 10000.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 8000.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 200.0, 250.0, 315.0, 400.0, 500.0, 630.0, 800.0, 1000.0, 1250.0, 1600.0, 2000.0, 2500.0, 3150.0, 4000.0, 5000.0, 6300.0], "A3" => [0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.3048, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.2286, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.1524, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0508, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.0254, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016, 0.1016], "A2" => [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 1.5, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 5.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 7.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 2.7, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 5.4, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 7.2, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 12.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 8.4, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 11.2, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 15.4, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 19.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 4.8, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 9.5, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 12.7, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 17.4, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 22.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 3.3, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 6.7, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 8.9, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 12.3, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6, 15.6], "A5" => [0.00266337, 0.00266337, 0.00266337, 0.00266337, 0.00266337, 0.00266337, 0.00266337, 0.00266337, 0.00266337, 0.00266337, 0.00266337, 0.00266337, 0.00266337, 0.00266337, 0.00283081, 0.00283081, 0.00283081, 0.00283081, 0.00283081, 0.00283081, 0.00283081, 0.00283081, 0.00283081, 0.00283081, 0.00283081, 0.00283081, 0.00283081, 0.00283081, 0.00283081, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00310138, 0.00331266, 0.00331266, 0.00331266, 0.00331266, 0.00331266, 0.00331266, 0.00331266, 0.00331266, 0.00331266, 0.00331266, 0.00331266, 0.00331266, 0.00331266, 0.00331266, 0.00331266, 0.00331266, 0.00331266, 0.00331266, 0.00336729, 0.00336729, 0.00336729, 0.00336729, 0.00336729, 0.00336729, 0.00336729, 0.00336729, 0.00336729, 0.00336729, 0.00336729, 0.00336729, 0.00336729, 0.00336729, 0.00392107, 0.00392107, 0.00392107, 0.00392107, 0.00392107, 0.00392107, 0.00392107, 0.00392107, 0.00392107, 0.00392107, 0.00392107, 0.00392107, 0.00392107, 0.00392107, 0.00392107, 0.00392107, 0.00392107, 0.00425727, 0.00425727, 0.00425727, 0.00425727, 0.00425727, 0.00425727, 0.00425727, 0.00425727, 0.00425727, 0.00425727, 0.00425727, 0.00425727, 0.00425727, 0.00425727, 0.00425727, 0.00452492, 0.00452492, 0.00452492, 0.00452492, 0.00452492, 0.00452492, 0.00452492, 0.00452492, 0.00452492, 0.00452492, 0.00452492, 0.00452492, 0.00452492, 0.00452492, 0.00452492, 0.00495741, 0.00495741, 0.00495741, 0.00495741, 0.00495741, 0.00495741, 0.00495741, 0.00495741, 0.00495741, 0.00495741, 0.00495741, 0.00495741, 0.00495741, 0.00495741, 0.00495741, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00497773, 0.00497773, 0.00497773, 0.00497773, 0.00497773, 0.00497773, 0.00497773, 0.00497773, 0.00497773, 0.00497773, 0.00497773, 0.00497773, 0.00497773, 0.00497773, 0.00497773, 0.00497773, 0.00497773, 0.00497773, 0.00579636, 0.00579636, 0.00579636, 0.00579636, 0.00579636, 0.00579636, 0.00579636, 0.00579636, 0.00579636, 0.00579636, 0.00579636, 0.00579636, 0.00579636, 0.00579636, 0.00214345, 0.00214345, 0.00214345, 0.00214345, 0.00214345, 0.00214345, 0.00214345, 0.00214345, 0.00214345, 0.00214345, 0.00214345, 0.00214345, 0.00214345, 0.00229336, 0.00229336, 0.00229336, 0.00229336, 0.00229336, 0.00229336, 0.00229336, 0.00229336, 0.00229336, 0.00229336, 0.00229336, 0.00229336, 0.00229336, 0.00229336, 0.00253511, 0.00253511, 0.00253511, 0.00253511, 0.00253511, 0.00253511, 0.00253511, 0.00253511, 0.00253511, 0.00253511, 0.00253511, 0.00253511, 0.00253511, 0.00253511, 0.0027238, 0.0027238, 0.0027238, 0.0027238, 0.0027238, 0.0027238, 0.0027238, 0.0027238, 0.0027238, 0.0027238, 0.0027238, 0.0027238, 0.0027238, 0.0027238, 0.00293031, 0.00293031, 0.00293031, 0.00293031, 0.00293031, 0.00293031, 0.00293031, 0.00293031, 0.00293031, 0.00293031, 0.00293031, 0.00293031, 0.00293031, 0.00293031, 0.00293031, 0.00313525, 0.00313525, 0.00313525, 0.00313525, 0.00313525, 0.00313525, 0.00313525, 0.00313525, 0.00313525, 0.00313525, 0.00313525, 0.00313525, 0.00313525, 0.00346574, 0.00346574, 0.00346574, 0.00346574, 0.00346574, 0.00346574, 0.00346574, 0.00346574, 0.00346574, 0.00346574, 0.00346574, 0.00346574, 0.00346574, 0.00346574, 0.00372371, 0.00372371, 0.00372371, 0.00372371, 0.00372371, 0.00372371, 0.00372371, 0.00372371, 0.00372371, 0.00372371, 0.00372371, 0.00372371, 0.00372371, 0.00372371, 0.00400603, 0.00400603, 0.00400603, 0.00400603, 0.00400603, 0.00400603, 0.00400603, 0.00400603, 0.00400603, 0.00400603, 0.00400603, 0.00400603, 0.00400603, 0.00400603, 0.00400603, 0.00400603, 0.00400603, 0.0042862, 0.0042862, 0.0042862, 0.0042862, 0.0042862, 0.0042862, 0.0042862, 0.0042862, 0.0042862, 0.0042862, 0.0042862, 0.0042862, 0.0042862, 0.0042862, 0.00473801, 0.00473801, 0.00473801, 0.00473801, 0.00473801, 0.00473801, 0.00473801, 0.00473801, 0.00473801, 0.00473801, 0.00473801, 0.00473801, 0.00473801, 0.00473801, 0.00473801, 0.00509068, 0.00509068, 0.00509068, 0.00509068, 0.00509068, 0.00509068, 0.00509068, 0.00509068, 0.00509068, 0.00509068, 0.00509068, 0.00509068, 0.00509068, 0.00509068, 0.00509068, 0.0051942, 0.0051942, 0.0051942, 0.0051942, 0.0051942, 0.0051942, 0.0051942, 0.0051942, 0.0051942, 0.0051942, 0.0051942, 0.0051942, 0.0051942, 0.0051942, 0.0051942, 0.00614329, 0.00614329, 0.00614329, 0.00614329, 0.00614329, 0.00614329, 0.00614329, 0.00614329, 0.00614329, 0.00614329, 0.00614329, 0.00614329, 0.00614329, 0.00614329, 0.00614329, 0.0104404, 0.0104404, 0.0104404, 0.0104404, 0.0104404, 0.0104404, 0.0104404, 0.0104404, 0.0104404, 0.0104404, 0.0104404, 0.0104404, 0.0104404, 0.0104404, 0.0104404, 0.0104404, 0.0111706, 0.0111706, 0.0111706, 0.0111706, 0.0111706, 0.0111706, 0.0111706, 0.0111706, 0.0111706, 0.0111706, 0.0111706, 0.0111706, 0.0111706, 0.0111706, 0.0111706, 0.0111706, 0.0123481, 0.0123481, 0.0123481, 0.0123481, 0.0123481, 0.0123481, 0.0123481, 0.0123481, 0.0123481, 0.0123481, 0.0123481, 0.0123481, 0.0123481, 0.0123481, 0.0123481, 0.0123481, 0.0132672, 0.0132672, 0.0132672, 0.0132672, 0.0132672, 0.0132672, 0.0132672, 0.0132672, 0.0132672, 0.0132672, 0.0132672, 0.0132672, 0.0132672, 0.0132672, 0.0132672, 0.0132672, 0.0015988, 0.0015988, 0.0015988, 0.0015988, 0.0015988, 0.0015988, 0.0015988, 0.0015988, 0.0015988, 0.0015988, 0.0015988, 0.0015988, 0.0015988, 0.0015988, 0.00172668, 0.00172668, 0.00172668, 0.00172668, 0.00172668, 0.00172668, 0.00172668, 0.00172668, 0.00172668, 0.00172668, 0.00172668, 0.00172668, 0.00172668, 0.00172668, 0.00172668, 0.00172668, 0.00193287, 0.00193287, 0.00193287, 0.00193287, 0.00193287, 0.00193287, 0.00193287, 0.00193287, 0.00193287, 0.00193287, 0.00193287, 0.00193287, 0.00193287, 0.00193287, 0.00209405, 0.00209405, 0.00209405, 0.00209405, 0.00209405, 0.00209405, 0.00209405, 0.00209405, 0.00209405, 0.00209405, 0.00209405, 0.00209405, 0.00209405, 0.00243851, 0.00243851, 0.00243851, 0.00243851, 0.00243851, 0.00243851, 0.00243851, 0.00243851, 0.00243851, 0.00243851, 0.00243851, 0.00243851, 0.00243851, 0.00243851, 0.00243851, 0.00294804, 0.00294804, 0.00294804, 0.00294804, 0.00294804, 0.00294804, 0.00294804, 0.00294804, 0.00294804, 0.00294804, 0.00294804, 0.00294804, 0.00294804, 0.00294804, 0.00294804, 0.00401199, 0.00401199, 0.00401199, 0.00401199, 0.00401199, 0.00401199, 0.00401199, 0.00401199, 0.00401199, 0.00401199, 0.00401199, 0.00401199, 0.00401199, 0.00433288, 0.00433288, 0.00433288, 0.00433288, 0.00433288, 0.00433288, 0.00433288, 0.00433288, 0.00433288, 0.00433288, 0.00433288, 0.00433288, 0.00433288, 0.00433288, 0.00485029, 0.00485029, 0.00485029, 0.00485029, 0.00485029, 0.00485029, 0.00485029, 0.00485029, 0.00485029, 0.00485029, 0.00485029, 0.00485029, 0.00485029, 0.00485029, 0.00525474, 0.00525474, 0.00525474, 0.00525474, 0.00525474, 0.00525474, 0.00525474, 0.00525474, 0.00525474, 0.00525474, 0.00525474, 0.00525474, 0.00525474, 0.00525474, 0.00752039, 0.00752039, 0.00752039, 0.00752039, 0.00752039, 0.00752039, 0.00752039, 0.00752039, 0.00752039, 0.00752039, 0.00752039, 0.00752039, 0.00752039, 0.00752039, 0.00752039, 0.00752039, 0.00909175, 0.00909175, 0.00909175, 0.00909175, 0.00909175, 0.00909175, 0.00909175, 0.00909175, 0.00909175, 0.00909175, 0.00909175, 0.00909175, 0.00909175, 0.00909175, 0.00909175, 0.00909175, 0.00909175, 0.0193001, 0.0193001, 0.0193001, 0.0193001, 0.0193001, 0.0193001, 0.0193001, 0.0193001, 0.0193001, 0.0193001, 0.0193001, 0.0193001, 0.0193001, 0.0193001, 0.0193001, 0.0193001, 0.0208438, 0.0208438, 0.0208438, 0.0208438, 0.0208438, 0.0208438, 0.0208438, 0.0208438, 0.0208438, 0.0208438, 0.0208438, 0.0208438, 0.0208438, 0.0208438, 0.0208438, 0.0208438, 0.0233328, 0.0233328, 0.0233328, 0.0233328, 0.0233328, 0.0233328, 0.0233328, 0.0233328, 0.0233328, 0.0233328, 0.0233328, 0.0233328, 0.0233328, 0.0233328, 0.0233328, 0.0233328, 0.0252785, 0.0252785, 0.0252785, 0.0252785, 0.0252785, 0.0252785, 0.0252785, 0.0252785, 0.0252785, 0.0252785, 0.0252785, 0.0252785, 0.0252785, 0.0252785, 0.0252785, 0.0252785, 0.0483159, 0.0483159, 0.0483159, 0.0483159, 0.0483159, 0.0483159, 0.0483159, 0.0483159, 0.0483159, 0.0483159, 0.0483159, 0.0483159, 0.0483159, 0.0483159, 0.0483159, 0.0483159, 0.0584113, 0.0584113, 0.0584113, 0.0584113, 0.0584113, 0.0584113, 0.0584113, 0.0584113, 0.0584113, 0.0584113, 0.0584113, 0.0584113, 0.0584113, 0.0584113, 0.0584113, 0.0584113, 0.000740478, 0.000740478, 0.000740478, 0.000740478, 0.000740478, 0.000740478, 0.000740478, 0.000740478, 0.000740478, 0.000740478, 0.000740478, 0.000740478, 0.000740478, 0.00076193, 0.00076193, 0.00076193, 0.00076193, 0.00076193, 0.00076193, 0.00076193, 0.00076193, 0.00076193, 0.00076193, 0.00076193, 0.00076193, 0.00076193, 0.000791822, 0.000791822, 0.000791822, 0.000791822, 0.000791822, 0.000791822, 0.000791822, 0.000791822, 0.000791822, 0.000791822, 0.000791822, 0.000791822, 0.000791822, 0.000812164, 0.000812164, 0.000812164, 0.000812164, 0.000812164, 0.000812164, 0.000812164, 0.000812164, 0.000812164, 0.000812164, 0.000812164, 0.000812164, 0.000812164, 0.00142788, 0.00142788, 0.00142788, 0.00142788, 0.00142788, 0.00142788, 0.00142788, 0.00142788, 0.00142788, 0.00142788, 0.00152689, 0.00152689, 0.00152689, 0.00152689, 0.00152689, 0.00152689, 0.00152689, 0.00152689, 0.00152689, 0.00152689, 0.00152689, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00529514, 0.00544854, 0.00544854, 0.00544854, 0.00544854, 0.00544854, 0.00544854, 0.00544854, 0.00544854, 0.00544854, 0.00544854, 0.00544854, 0.00544854, 0.00566229, 0.00566229, 0.00566229, 0.00566229, 0.00566229, 0.00566229, 0.00566229, 0.00566229, 0.00566229, 0.00566229, 0.00566229, 0.00580776, 0.00580776, 0.00580776, 0.00580776, 0.00580776, 0.00580776, 0.00580776, 0.00580776, 0.00580776, 0.00580776, 0.00580776, 0.014072, 0.014072, 0.014072, 0.014072, 0.014072, 0.014072, 0.014072, 0.014072, 0.014072, 0.014072, 0.014072, 0.014072, 0.014072, 0.014072, 0.0150478, 0.0150478, 0.0150478, 0.0150478, 0.0150478, 0.0150478, 0.0150478, 0.0150478, 0.0150478, 0.0150478, 0.0150478, 0.0150478, 0.0150478, 0.0150478, 0.0264269, 0.0264269, 0.0264269, 0.0264269, 0.0264269, 0.0264269, 0.0264269, 0.0264269, 0.0264269, 0.0264269, 0.0264269, 0.0264269, 0.0264269, 0.0264269, 0.0264269, 0.0264269, 0.0264269, 0.0271925, 0.0271925, 0.0271925, 0.0271925, 0.0271925, 0.0271925, 0.0271925, 0.0271925, 0.0271925, 0.0271925, 0.0271925, 0.0271925, 0.0271925, 0.0271925, 0.0271925, 0.0271925, 0.0282593, 0.0282593, 0.0282593, 0.0282593, 0.0282593, 0.0282593, 0.0282593, 0.0282593, 0.0282593, 0.0282593, 0.0282593, 0.0282593, 0.0282593, 0.0282593, 0.0282593, 0.0282593, 0.0289853, 0.0289853, 0.0289853, 0.0289853, 0.0289853, 0.0289853, 0.0289853, 0.0289853, 0.0289853, 0.0289853, 0.0289853, 0.0289853, 0.0289853, 0.0289853, 0.0289853, 0.0289853, 0.0341183, 0.0341183, 0.0341183, 0.0341183, 0.0341183, 0.0341183, 0.0341183, 0.0341183, 0.0341183, 0.0341183, 0.0341183, 0.0341183, 0.0341183, 0.0341183, 0.036484, 0.036484, 0.036484, 0.036484, 0.036484, 0.036484, 0.036484, 0.036484, 0.036484, 0.036484, 0.036484, 0.036484, 0.036484, 0.036484, 0.000400682, 0.000400682, 0.000400682, 0.000400682, 0.000400682, 0.000400682, 0.000400682, 0.000400682, 0.000400682, 0.000400682, 0.00041229, 0.00041229, 0.00041229, 0.00041229, 0.00041229, 0.00041229, 0.00041229, 0.00041229, 0.00041229, 0.00041229, 0.00041229, 0.000428464, 0.000428464, 0.000428464, 0.000428464, 0.000428464, 0.000428464, 0.000428464, 0.000428464, 0.000428464, 0.000428464, 0.000428464, 0.000439472, 0.000439472, 0.000439472, 0.000439472, 0.000439472, 0.000439472, 0.000439472, 0.000439472, 0.000439472, 0.000439472, 0.000439472, 0.000439472, 0.000439472, 0.000848633, 0.000848633, 0.000848633, 0.000848633, 0.000848633, 0.000848633, 0.000848633, 0.000848633, 0.000848633, 0.000848633, 0.000848633, 0.000873218, 0.000873218, 0.000873218, 0.000873218, 0.000873218, 0.000873218, 0.000873218, 0.000873218, 0.000873218, 0.000873218, 0.000873218, 0.000873218, 0.000907475, 0.000907475, 0.000907475, 0.000907475, 0.000907475, 0.000907475, 0.000907475, 0.000907475, 0.000907475, 0.000907475, 0.000907475, 0.000907475, 0.000907475, 0.000907475, 0.000930789, 0.000930789, 0.000930789, 0.000930789, 0.000930789, 0.000930789, 0.000930789, 0.000930789, 0.000930789, 0.000930789, 0.000930789, 0.000930789, 0.000930789, 0.00420654, 0.00420654, 0.00420654, 0.00420654, 0.00420654, 0.00420654, 0.00420654, 0.00420654, 0.00420654, 0.00420654, 0.00420654, 0.0043284, 0.0043284, 0.0043284, 0.0043284, 0.0043284, 0.0043284, 0.0043284, 0.0043284, 0.0043284, 0.0043284, 0.0043284, 0.0043284, 0.0043284, 0.00449821, 0.00449821, 0.00449821, 0.00449821, 0.00449821, 0.00449821, 0.00449821, 0.00449821, 0.00449821, 0.00449821, 0.00449821, 0.00449821, 0.00449821, 0.00449821, 0.00449821, 0.00449821, 0.00461377, 0.00461377, 0.00461377, 0.00461377, 0.00461377, 0.00461377, 0.00461377, 0.00461377, 0.00461377, 0.00461377, 0.00461377, 0.00461377, 0.00461377, 0.00461377, 0.00461377, 0.00461377, 0.0121808, 0.0121808, 0.0121808, 0.0121808, 0.0121808, 0.0121808, 0.0121808, 0.0121808, 0.0121808, 0.0121808, 0.0121808, 0.0121808, 0.0121808, 0.0121808, 0.0121808, 0.0121808, 0.0121808, 0.0130253, 0.0130253, 0.0130253, 0.0130253, 0.0130253, 0.0130253, 0.0130253, 0.0130253, 0.0130253, 0.0130253, 0.0130253, 0.0130253, 0.0130253, 0.0130253, 0.0130253, 0.0130253, 0.0130253, 0.016104, 0.016104, 0.016104, 0.016104, 0.016104, 0.016104, 0.016104, 0.016104, 0.016104, 0.016104, 0.016104, 0.016104, 0.016104, 0.016104, 0.016104, 0.016104, 0.016104, 0.0165706, 0.0165706, 0.0165706, 0.0165706, 0.0165706, 0.0165706, 0.0165706, 0.0165706, 0.0165706, 0.0165706, 0.0165706, 0.0165706, 0.0165706, 0.0165706, 0.0165706, 0.0165706, 0.0172206, 0.0172206, 0.0172206, 0.0172206, 0.0172206, 0.0172206, 0.0172206, 0.0172206, 0.0172206, 0.0172206, 0.0172206, 0.0172206, 0.0172206, 0.0172206, 0.0172206, 0.0176631, 0.0176631, 0.0176631, 0.0176631, 0.0176631, 0.0176631, 0.0176631, 0.0176631, 0.0176631, 0.0176631, 0.0176631, 0.0176631, 0.0176631, 0.0176631, 0.0176631, 0.0214178, 0.0214178, 0.0214178, 0.0214178, 0.0214178, 0.0214178, 0.0214178, 0.0214178, 0.0214178, 0.0214178, 0.0214178, 0.0214178, 0.0214178, 0.0214178, 0.0214178, 0.0229028, 0.0229028, 0.0229028, 0.0229028, 0.0229028, 0.0229028, 0.0229028, 0.0229028, 0.0229028, 0.0229028, 0.0229028, 0.0229028, 0.0229028, 0.0229028, 0.0229028, 0.00121072, 0.00121072, 0.00121072, 0.00121072, 0.00121072, 0.00121072, 0.00121072, 0.00121072, 0.00121072, 0.00121072, 0.00121072, 0.00121072, 0.00121072, 0.00121072, 0.00131983, 0.00131983, 0.00131983, 0.00131983, 0.00131983, 0.00131983, 0.00131983, 0.00131983, 0.00131983, 0.00131983, 0.00131983, 0.00131983, 0.00131983, 0.00131983, 0.00146332, 0.00146332, 0.00146332, 0.00146332, 0.00146332, 0.00146332, 0.00146332, 0.00146332, 0.00146332, 0.00146332, 0.00146332, 0.00146332, 0.00146332, 0.00150092, 0.00150092, 0.00150092, 0.00150092, 0.00150092, 0.00150092, 0.00150092, 0.00150092, 0.00150092, 0.00150092, 0.00150092, 0.00150092, 0.00150092, 0.00202822, 0.00202822, 0.00202822, 0.00202822, 0.00202822, 0.00202822, 0.00202822, 0.00202822, 0.00202822, 0.00202822, 0.00202822, 0.00202822, 0.002211, 0.002211, 0.002211, 0.002211, 0.002211, 0.002211, 0.002211, 0.002211, 0.002211, 0.002211, 0.002211, 0.002211, 0.002211, 0.00245138, 0.00245138, 0.00245138, 0.00245138, 0.00245138, 0.00245138, 0.00245138, 0.00245138, 0.00245138, 0.00245138, 0.00245138, 0.00245138, 0.00245138, 0.00251435, 0.00251435, 0.00251435, 0.00251435, 0.00251435, 0.00251435, 0.00251435, 0.00251435, 0.00251435, 0.00251435, 0.00251435, 0.00251435, 0.00478288, 0.00478288, 0.00478288, 0.00478288, 0.00478288, 0.00478288, 0.00478288, 0.00478288, 0.0052139, 0.0052139, 0.0052139, 0.0052139, 0.0052139, 0.0052139, 0.0052139, 0.0052139, 0.00578076, 0.00578076, 0.00578076, 0.00578076, 0.00578076, 0.00578076, 0.00578076, 0.00578076, 0.00592927, 0.00592927, 0.00592927, 0.00592927, 0.00592927, 0.00592927, 0.00592927, 0.00592927, 0.00592927, 0.0103088, 0.0103088, 0.0103088, 0.0103088, 0.0103088, 0.0103088, 0.0103088, 0.0103088, 0.0103088, 0.0103088, 0.0103088, 0.0103088, 0.0103088, 0.0103088, 0.0103088, 0.0103088, 0.0124596, 0.0124596, 0.0124596, 0.0124596, 0.0124596, 0.0124596, 0.0124596, 0.0124596, 0.0124596, 0.0124596, 0.0124596, 0.0124596, 0.0124596, 0.0124596, 0.0124596, 0.0124596, 0.0337792, 0.0337792, 0.0337792, 0.0337792, 0.0337792, 0.0337792, 0.0337792, 0.0337792, 0.0337792, 0.0337792, 0.0337792, 0.0337792, 0.0337792, 0.0337792, 0.0337792, 0.0337792, 0.0368233, 0.0368233, 0.0368233, 0.0368233, 0.0368233, 0.0368233, 0.0368233, 0.0368233, 0.0368233, 0.0368233, 0.0368233, 0.0368233, 0.0368233, 0.0368233, 0.0368233, 0.0368233, 0.0408268, 0.0408268, 0.0408268, 0.0408268, 0.0408268, 0.0408268, 0.0408268, 0.0408268, 0.0408268, 0.0408268, 0.0408268, 0.0408268, 0.0408268, 0.0408268, 0.0408268, 0.0408268, 0.0418756, 0.0418756, 0.0418756, 0.0418756, 0.0418756, 0.0418756, 0.0418756, 0.0418756, 0.0418756, 0.0418756, 0.0418756, 0.0418756, 0.0418756, 0.0418756, 0.0418756, 0.0418756, 0.0437259, 0.0437259, 0.0437259, 0.0437259, 0.0437259, 0.0437259, 0.0437259, 0.0437259, 0.0437259, 0.0437259, 0.0437259, 0.0437259, 0.0437259, 0.0437259, 0.0528487, 0.0528487, 0.0528487, 0.0528487, 0.0528487, 0.0528487, 0.0528487, 0.0528487, 0.0528487, 0.0528487, 0.0528487, 0.0528487, 0.0528487, 0.0528487, 0.0528487, 0.0528487], "A4" => [71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 55.5, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 31.7, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 71.3, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6, 39.6]}, {"response" => [126.201, 125.201, 125.951, 127.591, 127.461, 125.571, 125.201, 123.061, 121.301, 119.541, 117.151, 115.391, 112.241, 108.721, 126.416, 127.696, 128.086, 126.966, 126.086, 126.986, 126.616, 124.106, 123.236, 121.106, 119.606, 117.976, 116.476, 113.076, 111.076, 118.129, 119.319, 122.779, 124.809, 126.959, 128.629, 129.099, 127.899, 125.499, 124.049, 123.689, 121.399, 120.319, 119.229, 117.789, 116.229, 114.779, 112.139, 109.619, 117.195, 118.595, 122.765, 125.045, 127.315, 129.095, 129.235, 127.365, 124.355, 122.365, 122.375, 120.755, 119.135, 118.145, 115.645, 113.775, 110.515, 108.265, 127.122, 125.992, 125.872, 126.632, 126.642, 124.512, 123.392, 121.762, 119.632, 118.122, 115.372, 113.492, 109.222, 106.582, 121.851, 124.001, 126.661, 128.311, 128.831, 127.581, 125.211, 122.211, 122.101, 120.981, 119.111, 117.741, 116.241, 114.751, 112.251, 108.991, 106.111, 127.564, 128.454, 129.354, 129.494, 129.004, 127.634, 126.514, 125.524, 124.024, 121.514, 120.264, 118.134, 116.134, 114.634, 110.224, 126.159, 128.179, 129.569, 129.949, 129.329, 127.329, 124.439, 123.069, 122.439, 120.189, 118.689, 117.309, 115.679, 113.799, 112.169, 123.312, 125.472, 127.632, 129.292, 129.552, 128.312, 125.802, 122.782, 120.532, 120.162, 118.922, 116.792, 115.792, 114.042, 110.652, 123.118, 125.398, 127.548, 128.698, 128.708, 126.838, 124.838, 122.088, 120.088, 119.598, 118.108, 115.608, 113.858, 109.718, 126.395, 128.175, 129.575, 130.715, 131.615, 131.755, 131.015, 129.395, 126.645, 124.395, 123.775, 121.775, 119.535, 117.785, 116.165, 113.665, 110.905, 107.405, 123.543, 126.843, 128.633, 130.173, 131.073, 130.723, 128.723, 126.343, 123.213, 120.963, 120.233, 118.743, 115.863, 113.733, 128.144, 129.134, 128.244, 128.354, 127.834, 125.824, 124.304, 122.044, 118.024, 118.134, 117.624, 114.984, 114.474, 119.54, 121.66, 123.78, 126.16, 127.53, 128.29, 127.91, 126.79, 126.54, 126.54, 125.16, 123.41, 122.41, 118.41, 121.055, 123.565, 126.195, 128.705, 130.205, 130.435, 129.395, 127.095, 125.305, 125.025, 124.625, 123.465, 122.175, 117.465, 120.595, 123.635, 126.675, 129.465, 130.725, 130.595, 128.805, 125.625, 123.455, 123.445, 123.445, 122.035, 120.505, 116.815, 125.116, 126.486, 127.356, 128.216, 128.956, 128.816, 127.796, 126.896, 127.006, 126.116, 124.086, 122.816, 120.786, 115.996, 113.086, 122.292, 124.692, 126.842, 128.492, 129.002, 128.762, 126.752, 124.612, 123.862, 123.742, 122.232, 120.472, 118.712, 120.137, 122.147, 125.157, 127.417, 129.037, 129.147, 128.257, 125.837, 122.797, 121.397, 121.627, 120.227, 118.827, 116.417, 120.147, 123.417, 126.677, 129.057, 130.307, 130.307, 128.677, 125.797, 123.037, 121.407, 121.527, 120.527, 118.267, 115.137, 126.758, 129.038, 130.688, 131.708, 131.718, 129.468, 126.218, 124.338, 124.108, 121.728, 121.118, 118.618, 112.848, 113.108, 114.258, 112.768, 109.638, 123.274, 127.314, 129.964, 131.864, 132.134, 131.264, 128.264, 124.254, 122.384, 122.394, 120.654, 120.034, 117.154, 112.524, 122.229, 123.879, 127.039, 129.579, 130.469, 129.969, 128.339, 125.319, 121.659, 119.649, 120.419, 119.159, 117.649, 114.249, 113.129, 120.189, 123.609, 126.149, 128.939, 130.349, 130.869, 129.869, 128.119, 125.229, 122.089, 120.209, 120.229, 118.859, 115.969, 112.699, 127.7, 129.88, 131.8, 133.48, 134.0, 133.38, 130.46, 125.89, 123.74, 123.12, 120.33, 118.05, 116.92, 114.9, 111.35, 127.011, 129.691, 131.221, 132.251, 132.011, 129.491, 125.581, 125.721, 123.081, 117.911, 116.151, 118.441, 115.801, 115.311, 112.541, 138.758, 139.918, 139.808, 139.438, 136.798, 133.768, 130.748, 126.838, 127.358, 125.728, 122.708, 122.088, 120.458, 119.208, 115.298, 115.818, 135.234, 136.384, 136.284, 135.924, 133.174, 130.934, 128.444, 125.194, 125.724, 123.354, 120.354, 118.994, 117.134, 117.284, 113.144, 111.534, 130.989, 131.889, 132.149, 132.039, 130.299, 128.929, 126.299, 122.539, 123.189, 121.059, 117.809, 116.559, 114.309, 114.079, 111.959, 110.839, 128.679, 130.089, 130.239, 130.269, 128.169, 126.189, 123.209, 119.099, 120.509, 119.039, 115.309, 114.709, 113.229, 112.639, 111.029, 110.689, 125.817, 127.307, 128.927, 129.667, 128.647, 128.127, 129.377, 128.857, 126.457, 125.427, 122.527, 120.247, 117.087, 113.297, 120.573, 123.583, 126.713, 128.583, 129.953, 130.183, 129.673, 127.763, 127.753, 127.233, 125.203, 123.303, 121.903, 119.253, 117.093, 112.803, 119.513, 124.403, 127.903, 130.033, 131.023, 131.013, 129.633, 126.863, 125.603, 125.343, 123.453, 121.313, 120.553, 115.413, 121.617, 125.997, 129.117, 130.987, 131.467, 130.817, 128.907, 125.867, 124.207, 123.807, 122.397, 119.737, 117.957, 127.404, 127.394, 128.774, 130.144, 130.644, 130.114, 128.334, 127.054, 126.534, 124.364, 121.944, 120.534, 116.724, 113.034, 110.364, 121.009, 125.809, 128.829, 130.589, 130.829, 130.049, 128.139, 125.589, 122.919, 121.889, 121.499, 119.209, 116.659, 112.589, 108.649, 124.121, 126.291, 128.971, 131.281, 133.201, 134.111, 133.241, 131.111, 127.591, 123.311, 121.431, 120.061, 116.411, 126.807, 129.367, 131.807, 133.097, 132.127, 130.777, 130.567, 128.707, 124.077, 121.587, 119.737, 118.757, 117.287, 114.927, 125.347, 127.637, 129.937, 132.357, 132.757, 130.507, 127.117, 126.267, 124.647, 120.497, 119.137, 117.137, 117.037, 116.677, 125.741, 127.781, 129.681, 131.471, 131.491, 128.241, 123.991, 123.761, 122.771, 119.151, 118.291, 116.181, 115.691, 115.591, 128.713, 130.123, 132.043, 134.853, 136.023, 134.273, 132.513, 130.893, 128.643, 124.353, 116.783, 119.343, 118.343, 116.603, 113.333, 110.313, 127.488, 130.558, 132.118, 132.658, 133.198, 132.358, 128.338, 122.428, 120.058, 120.228, 117.478, 111.818, 114.258, 113.288, 112.688, 111.588, 110.868, 134.319, 135.329, 135.459, 135.079, 131.279, 129.889, 128.879, 126.349, 122.679, 121.789, 120.779, 119.639, 116.849, 115.079, 114.569, 112.039, 131.955, 133.235, 132.355, 131.605, 127.815, 127.315, 126.565, 124.665, 121.635, 119.875, 119.505, 118.365, 115.085, 112.945, 112.065, 110.555, 127.315, 128.335, 128.595, 128.345, 126.835, 126.465, 126.345, 123.835, 120.555, 118.545, 117.925, 116.295, 113.525, 112.265, 111.135, 109.885, 127.299, 128.559, 128.809, 128.939, 127.179, 126.049, 125.539, 122.149, 118.619, 117.119, 116.859, 114.729, 112.209, 111.459, 109.949, 108.689, 128.354, 129.744, 128.484, 127.094, 121.664, 123.304, 123.054, 122.044, 120.154, 120.534, 117.504, 115.234, 113.334, 108.034, 108.034, 107.284, 114.75, 115.89, 116.02, 115.91, 114.9, 116.55, 116.56, 114.67, 112.16, 110.78, 109.52, 106.88, 106.26, 104.5, 104.13, 103.38, 130.96, 129.45, 128.56, 129.68, 131.06, 131.31, 135.07, 134.43, 134.43, 133.04, 130.89, 128.74, 125.22, 124.336, 125.586, 127.076, 128.576, 131.456, 133.956, 134.826, 134.946, 134.556, 132.796, 130.156, 127.636, 125.376, 126.508, 127.638, 129.148, 130.908, 132.918, 134.938, 135.938, 135.308, 134.308, 131.918, 128.518, 125.998, 123.988, 122.79, 126.78, 129.27, 131.01, 133.01, 134.87, 135.49, 134.11, 133.23, 130.34, 126.59, 122.45, 119.07, 124.318, 129.848, 131.978, 133.728, 133.598, 132.828, 129.308, 125.268, 121.238, 117.328, 125.647, 128.427, 130.197, 132.587, 133.847, 133.587, 131.807, 129.777, 125.717, 120.397, 116.967, 127.556, 129.946, 132.086, 133.846, 134.476, 134.226, 131.966, 126.926, 121.146, 121.582, 123.742, 126.152, 128.562, 130.722, 132.252, 133.032, 133.042, 131.542, 128.402, 122.612, 115.812, 120.015, 122.905, 126.045, 128.435, 130.195, 131.205, 130.965, 129.965, 127.465, 123.965, 118.955, 120.076, 122.966, 125.856, 128.246, 129.516, 130.156, 129.296, 127.686, 125.576, 122.086, 118.106, 125.941, 127.101, 128.381, 129.281, 130.311, 133.611, 136.031, 136.941, 136.191, 135.191, 133.311, 130.541, 127.141, 122.471, 125.01, 126.43, 128.99, 130.67, 131.96, 133.13, 133.79, 132.43, 130.05, 126.54, 124.42, 122.17, 119.67, 115.52, 123.595, 124.835, 126.195, 126.805, 127.285, 129.645, 131.515, 131.865, 130.845, 130.065, 129.285, 127.625, 125.715, 122.675, 119.135, 115.215, 112.675, 122.94, 124.17, 125.39, 126.5, 127.22, 129.33, 130.43, 130.4, 130.0, 128.2, 127.04, 125.63, 123.46, 120.92, 117.11, 112.93, 121.783, 122.893, 124.493, 125.353, 125.963, 127.443, 128.423, 127.893, 126.743, 124.843, 123.443, 122.413, 120.513, 118.113, 114.453, 109.663, 119.975, 121.225, 122.845, 123.705, 123.695, 124.685, 125.555, 124.525, 123.255, 121.485, 120.835, 119.945, 118.045, 115.635, 112.355, 108.185, 118.005, 119.115, 121.235, 123.865, 126.995, 128.365, 124.555, 121.885, 121.485, 120.575, 120.055, 118.385, 116.225, 113.045, 125.974, 127.224, 129.864, 130.614, 128.444, 120.324, 119.174, 118.904, 118.634, 117.604, 117.724, 116.184, 113.004, 108.684, 133.707, 137.007, 138.557, 136.837, 134.987, 129.867, 130.787, 133.207, 130.477, 123.217, 127.623, 130.073, 130.503, 133.223, 135.803, 136.103, 136.163, 134.563, 131.453, 125.683, 121.933, 124.156, 130.026, 131.836, 133.276, 135.346, 136.536, 136.826, 135.866, 133.376, 129.116, 124.986, 125.127, 127.947, 129.267, 130.697, 132.897, 135.227, 137.047, 138.607, 138.537, 137.207, 134.227, 128.977, 125.627, 128.398, 130.828, 133.378, 134.928, 135.468, 134.498, 131.518, 127.398, 127.688, 124.208, 119.708, 121.474, 125.054, 129.144, 132.354, 133.924, 135.484, 135.164, 132.184, 126.944, 125.094, 124.394, 121.284, 116.366, 118.696, 120.766, 122.956, 125.026, 125.966, 128.916, 131.236, 133.436, 134.996, 135.426, 134.336, 131.346, 126.066, 116.128, 120.078, 122.648, 125.348, 127.408, 128.718, 130.148, 132.588, 134.268, 135.328, 135.248, 132.898, 127.008, 125.726, 127.206, 129.556, 131.656, 133.756, 134.976, 135.956, 136.166, 134.236, 131.186, 127.246, 120.952, 123.082, 125.452, 128.082, 130.332, 132.202, 133.062, 134.052, 134.152, 133.252, 131.582, 128.412, 124.222, 116.074, 116.924, 119.294, 121.154, 123.894, 126.514, 129.014, 130.374, 130.964, 131.184, 131.274, 131.234, 129.934, 127.864, 125.044, 120.324, 119.146, 120.136, 122.766, 124.756, 126.886, 129.006, 130.746, 131.346, 131.446, 131.036, 130.496, 130.086, 128.536, 126.736, 124.426, 120.726, 119.698, 122.938, 125.048, 126.898, 128.878, 130.348, 131.698, 133.048, 134.528, 134.228, 134.058, 133.758, 131.808, 128.978, 125.398, 120.538, 114.418, 121.547, 123.537, 125.527, 127.127, 128.867, 130.217, 130.947, 130.777, 129.977, 129.567, 129.027, 127.847, 126.537, 125.107, 123.177, 120.607, 116.017, 112.506, 113.796, 115.846, 117.396, 119.806, 122.606, 124.276, 125.816, 126.356, 126.406, 126.826, 126.746, 126.536, 125.586, 123.126, 119.916, 115.466, 109.951, 110.491, 111.911, 115.461, 119.621, 122.411, 123.091, 126.001, 129.301, 126.471, 125.261, 124.931, 124.101, 121.771, 118.941, 114.861, 114.044, 114.714, 115.144, 115.444, 117.514, 124.514, 135.324, 138.274, 131.364, 127.614, 126.644, 124.154, 123.564, 122.724, 119.854, 116.146, 116.956, 118.416, 120.766, 127.676, 136.886, 139.226, 131.796, 128.306, 126.846, 124.356, 124.166, 123.466, 121.996, 117.996, 115.857, 117.927, 117.967, 120.657, 123.227, 134.247, 140.987, 131.817, 127.197, 126.097, 124.127, 123.917, 125.727, 123.127, 121.657, 116.066, 117.386, 120.716, 123.416, 129.776, 137.026, 137.076, 128.416, 126.446, 122.216, 121.256, 121.306, 120.856, 119.646, 118.816, 124.155, 126.805, 128.825, 130.335, 131.725, 132.095, 132.595, 131.955, 130.935, 130.795, 129.395, 125.465, 123.305, 119.375, 126.17, 127.92, 129.8, 131.43, 132.05, 132.54, 133.04, 131.78, 129.5, 128.36, 127.73, 124.45, 121.93, 119.91, 125.401, 128.401, 130.781, 132.271, 133.261, 133.251, 132.611, 130.961, 127.801, 126.021, 125.631, 122.341, 119.561, 126.413, 129.053, 131.313, 133.063, 133.553, 133.153, 132.003, 129.973, 126.933, 124.393, 124.253, 120.193, 115.893, 131.074, 131.434, 132.304, 133.664, 134.034, 133.894, 132.114, 128.704, 127.054, 124.904, 121.234, 116.694, 126.599, 129.119, 131.129, 132.769, 133.649, 133.649, 132.889, 130.629, 127.229, 124.839, 123.839, 120.569, 115.659, 127.251, 129.991, 131.971, 133.211, 133.071, 132.301, 130.791, 128.401, 124.881, 122.371, 120.851, 118.091, 115.321, 128.952, 131.362, 133.012, 134.022, 133.402, 131.642, 130.392, 128.252, 124.852, 122.082, 120.702, 117.432, 131.448, 134.478, 136.758, 137.658, 136.678, 134.568, 131.458, 124.458, 129.343, 133.023, 135.953, 137.233, 136.883, 133.653, 129.653, 124.273, 128.295, 130.955, 133.355, 134.625, 134.515, 132.395, 127.375, 122.235, 126.266, 128.296, 130.206, 132.116, 132.886, 131.636, 129.256, 124.346, 120.446, 133.503, 134.533, 136.583, 138.123, 138.523, 138.423, 137.813, 135.433, 132.793, 128.763, 124.233, 123.623, 123.263, 120.243, 116.723, 117.253, 133.42, 134.34, 135.38, 135.54, 133.79, 131.92, 130.94, 129.58, 127.71, 123.82, 119.04, 119.19, 119.35, 116.22, 113.08, 113.11, 130.588, 131.568, 137.068, 139.428, 140.158, 135.368, 127.318, 127.928, 126.648, 124.748, 122.218, 121.318, 120.798, 118.018, 116.108, 113.958, 132.304, 133.294, 135.674, 136.414, 133.774, 124.244, 125.114, 125.484, 124.214, 121.824, 118.564, 117.054, 116.914, 114.404, 112.014, 110.124, 128.545, 129.675, 129.415, 128.265, 122.205, 121.315, 122.315, 122.435, 121.165, 117.875, 114.085, 113.315, 113.055, 110.905, 108.625, 107.985, 124.987, 125.857, 124.717, 123.207, 118.667, 119.287, 120.037, 119.777, 118.767, 114.477, 110.447, 110.317, 110.307, 108.407, 107.147, 107.267, 130.898, 132.158, 133.808, 134.058, 130.638, 122.288, 124.188, 124.438, 123.178, 121.528, 119.888, 118.998, 116.468, 113.298, 123.514, 124.644, 122.754, 120.484, 115.304, 118.084, 118.964, 119.224, 118.214, 114.554, 110.894, 110.264, 109.254, 106.604, 106.224, 104.204]}, {"hold" => true})
|
|
29
|
+
|
|
30
|
+
PP.pp(response.errors, $>, 40)
|
|
31
|
+
PP.pp(response.data, $>, 40)
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# SQLite version 3.x
|
|
2
|
+
# gem install sqlite3
|
|
3
|
+
#
|
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
|
5
|
+
# gem 'sqlite3'
|
|
6
|
+
#
|
|
7
|
+
default: &default
|
|
8
|
+
adapter: sqlite3
|
|
9
|
+
pool: 5
|
|
10
|
+
timeout: 5000
|
|
11
|
+
|
|
12
|
+
development:
|
|
13
|
+
<<: *default
|
|
14
|
+
database: db/development.sqlite3
|
|
15
|
+
|
|
16
|
+
# Warning: The database defined as "test" will be erased and
|
|
17
|
+
# re-generated from your development database when you run "rake".
|
|
18
|
+
# Do not set this db to the same as development or production.
|
|
19
|
+
test:
|
|
20
|
+
<<: *default
|
|
21
|
+
database: db/test.sqlite3
|
|
22
|
+
|
|
23
|
+
production:
|
|
24
|
+
<<: *default
|
|
25
|
+
database: db/production.sqlite3
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Rails.application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
|
3
|
+
|
|
4
|
+
# In the development environment your application's code is reloaded on
|
|
5
|
+
# every request. This slows down response time but is perfect for development
|
|
6
|
+
# since you don't have to restart the web server when you make code changes.
|
|
7
|
+
config.cache_classes = false
|
|
8
|
+
|
|
9
|
+
# Do not eager load code on boot.
|
|
10
|
+
config.eager_load = false
|
|
11
|
+
|
|
12
|
+
# Show full error reports and disable caching.
|
|
13
|
+
config.consider_all_requests_local = true
|
|
14
|
+
config.action_controller.perform_caching = false
|
|
15
|
+
|
|
16
|
+
# Don't care if the mailer can't send.
|
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
|
18
|
+
|
|
19
|
+
# Print deprecation notices to the Rails logger.
|
|
20
|
+
config.active_support.deprecation = :log
|
|
21
|
+
|
|
22
|
+
# Raise an error on page load if there are pending migrations.
|
|
23
|
+
config.active_record.migration_error = :page_load
|
|
24
|
+
|
|
25
|
+
# Debug mode disables concatenation and preprocessing of assets.
|
|
26
|
+
# This option may cause significant delays in view rendering with a large
|
|
27
|
+
# number of complex assets.
|
|
28
|
+
config.assets.debug = true
|
|
29
|
+
|
|
30
|
+
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
|
|
31
|
+
# yet still be able to expire them through the digest params.
|
|
32
|
+
config.assets.digest = true
|
|
33
|
+
|
|
34
|
+
# Adds additional error checking when serving assets at runtime.
|
|
35
|
+
# Checks for improperly declared sprockets dependencies.
|
|
36
|
+
# Raises helpful error messages.
|
|
37
|
+
config.assets.raise_runtime_errors = true
|
|
38
|
+
|
|
39
|
+
# Raises error for missing translations
|
|
40
|
+
# config.action_view.raise_on_missing_translations = true
|
|
41
|
+
end
|