unsupervised-language-detection 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +4 -0
- data/README.md +28 -0
- data/Rakefile +2 -0
- data/datasets/gutenberg-test-du.txt +1224 -0
- data/datasets/gutenberg-test-en.txt +1130 -0
- data/datasets/gutenberg-test-sp.txt +1031 -0
- data/datasets/gutenberg-training-du.txt +1140 -0
- data/datasets/gutenberg-training-en.txt +2823 -0
- data/datasets/gutenberg-training-sp.txt +971 -0
- data/datasets/gutenberg-training.txt +3237 -0
- data/datasets/gutenberg-training_en_du.txt +3301 -0
- data/datasets/smiley_tweets_tiny.txt +1000 -0
- data/datasets/tweets_5000.txt +5000 -0
- data/language-detector-demo.rb +39 -0
- data/lib/unsupervised-language-detection.rb +8 -0
- data/lib/unsupervised-language-detection/english-tweet-detector.yaml +1658 -0
- data/lib/unsupervised-language-detection/language-detector.rb +68 -0
- data/lib/unsupervised-language-detection/naive-bayes-classifier.rb +102 -0
- data/lib/unsupervised-language-detection/train-english-tweet-detector.rb +11 -0
- data/lib/unsupervised-language-detection/version.rb +3 -0
- data/test/test_language_detector.rb +19 -0
- data/test/test_naive_bayes_classifier.rb +60 -0
- data/test/test_naive_bayes_em.rb +23 -0
- data/test/test_suite.rb +4 -0
- data/unsupervised-language-detection.gemspec +21 -0
- data/website/Gemfile +12 -0
- data/website/README.md +1 -0
- data/website/config.ru +2 -0
- data/website/detector.yaml +1658 -0
- data/website/detector2.yaml +1658 -0
- data/website/main.rb +46 -0
- data/website/public/jquery.inlineformlabels.js +53 -0
- data/website/public/main.css +23 -0
- data/website/views/index.haml +36 -0
- data/website/views/layout.haml +14 -0
- data/website/views/tweet.haml +3 -0
- metadata +106 -0
@@ -0,0 +1,68 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
require File.expand_path('../naive-bayes-classifier', __FILE__)
|
3
|
+
|
4
|
+
class String
|
5
|
+
# Returns a set of `n`-grams computed from this string.
|
6
|
+
def to_ngrams(n)
|
7
|
+
self.normalize.scan(/.{#{n}}/)
|
8
|
+
end
|
9
|
+
|
10
|
+
# TODO: Try not normalizing out all non-ASCII characters! Should significantly reduce false positive rate.
|
11
|
+
def normalize
|
12
|
+
self.remove_tweeters.remove_links.remove_hashtags.downcase.gsub(/\s/, " ").gsub(/[^a-z0-9\s]/, "")
|
13
|
+
end
|
14
|
+
|
15
|
+
# Remove mentions of other twitter users.
|
16
|
+
def remove_tweeters
|
17
|
+
self.gsub(/@.+?\s/, "")
|
18
|
+
end
|
19
|
+
|
20
|
+
def remove_hashtags
|
21
|
+
self.gsub(/#.+?\s/, "")
|
22
|
+
end
|
23
|
+
|
24
|
+
def remove_links
|
25
|
+
self.gsub(/http.+?\s/, "")
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
# Given a set of sentences in multiple languages, build a classifier to detect the majority language.
|
30
|
+
class LanguageDetector
|
31
|
+
attr_reader :classifier
|
32
|
+
|
33
|
+
def initialize(options = {})
|
34
|
+
options = {:ngram_size => 3}.merge(options)
|
35
|
+
@ngram_size = options[:ngram_size]
|
36
|
+
@classifier = NaiveBayesClassifier.new(:num_categories => 2)
|
37
|
+
end
|
38
|
+
|
39
|
+
def train(max_epochs, training_sentences)
|
40
|
+
@classifier = NaiveBayesClassifier.train_em(max_epochs, training_sentences.map{ |sentence| sentence.to_ngrams(@ngram_size) })
|
41
|
+
@classifier.category_names =
|
42
|
+
if @classifier.get_prior_category_probability(0) > @classifier.get_prior_category_probability(1)
|
43
|
+
%w( majority minority )
|
44
|
+
else
|
45
|
+
%w( minority majority )
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
# Returns the (named) category the sentence belongs to.
|
50
|
+
def classify(sentence)
|
51
|
+
category_index = @classifier.classify(sentence.to_ngrams(@ngram_size))
|
52
|
+
@classifier.category_names[category_index]
|
53
|
+
end
|
54
|
+
|
55
|
+
def probabilities(sentence)
|
56
|
+
@classifier.get_posterior_category_probabilities(sentence.to_ngrams(@ngram_size))
|
57
|
+
end
|
58
|
+
|
59
|
+
def yamlize(filename)
|
60
|
+
File.open(filename, "w") do |f|
|
61
|
+
f.puts self.to_yaml
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def self.load_yaml(filename)
|
66
|
+
return YAML::load(File.read(filename))
|
67
|
+
end
|
68
|
+
end
|
@@ -0,0 +1,102 @@
|
|
1
|
+
class Array
|
2
|
+
def sum
|
3
|
+
self.reduce(0) { |total, element| total + element }
|
4
|
+
end
|
5
|
+
|
6
|
+
def product
|
7
|
+
self.reduce(1) { |total, element| total * element }
|
8
|
+
end
|
9
|
+
end
|
10
|
+
|
11
|
+
class NaiveBayesClassifier
|
12
|
+
attr_reader :num_categories, :prior_token_count, :prior_category_counts
|
13
|
+
attr_accessor :category_names
|
14
|
+
|
15
|
+
# `num_categories`: number of categories we want to classify.
|
16
|
+
# `prior_category_counts`: array of parameters for a Dirichlet prior that we place on the prior probabilities of each category. Set the array to all 0's if you want to use maximum likelihood estimates. Defaults to uniform reals from the unit interval if nothing is set.
|
17
|
+
# `prior_token_count`: parameter for a beta prior that we place on p(token|category). Set to 0 if you want to use maximum likelihood estimates.
|
18
|
+
def initialize(options = {})
|
19
|
+
options = {:num_categories => 2,
|
20
|
+
:prior_token_count => 0.0001}.merge(options)
|
21
|
+
@num_categories = options[:num_categories]
|
22
|
+
@prior_token_count = options[:prior_token_count]
|
23
|
+
@prior_category_counts = options[:prior_category_counts] || Array.new(@num_categories) { rand }
|
24
|
+
@category_names = options[:category_names] || (0..num_categories-1).map(&:to_s).to_a
|
25
|
+
|
26
|
+
@token_counts = Array.new(@num_categories) do # `@token_counts[category][token]` is the (weighted) number of times we have seen `token` with this category
|
27
|
+
Hash.new { |h, token| h[token] = 0 }
|
28
|
+
end
|
29
|
+
@total_token_counts = Array.new(@num_categories, 0) # `@total_token_counts[category]` is always equal to `@token_counts[category].sum`
|
30
|
+
@category_counts = Array.new(@num_categories, 0) # `@category_counts[category]` is the (weighted) number of training examples we have seen with this category
|
31
|
+
end
|
32
|
+
|
33
|
+
# `example`: an array of tokens.
|
34
|
+
def train(example, category_index, probability = 1)
|
35
|
+
example.each do |token|
|
36
|
+
@token_counts[category_index][token] += probability
|
37
|
+
@total_token_counts[category_index] += probability
|
38
|
+
end
|
39
|
+
@category_counts[category_index] += probability
|
40
|
+
end
|
41
|
+
|
42
|
+
# Performs a Naive Bayes EM algorithm with two classes.
|
43
|
+
def self.train_em(max_epochs, training_examples)
|
44
|
+
prev_classifier = NaiveBayesClassifier.new
|
45
|
+
max_epochs.times do
|
46
|
+
classifier = NaiveBayesClassifier.new
|
47
|
+
|
48
|
+
# E-M training
|
49
|
+
training_examples.each do |example|
|
50
|
+
# E-step: for each training example, recompute its classification probabilities.
|
51
|
+
posterior_category_probs = prev_classifier.get_posterior_category_probabilities(example)
|
52
|
+
|
53
|
+
# M-step: for each category, recompute the probability of generating each token.
|
54
|
+
posterior_category_probs.each_with_index do |p, category|
|
55
|
+
classifier.train(example, category, p)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
prev_classifier = classifier
|
59
|
+
# TODO: add a convergence check, so we can break out early if we want.
|
60
|
+
end
|
61
|
+
return prev_classifier
|
62
|
+
end
|
63
|
+
|
64
|
+
def classify(tokens)
|
65
|
+
max_prob, max_category = -1, -1
|
66
|
+
get_posterior_category_probabilities(tokens).each_with_index do |prob, category|
|
67
|
+
max_prob, max_category = prob, category if prob > max_prob
|
68
|
+
end
|
69
|
+
return max_category
|
70
|
+
end
|
71
|
+
|
72
|
+
# Returns p(category | token), for each category, in an array.
|
73
|
+
def get_posterior_category_probabilities(tokens)
|
74
|
+
unnormalized_posterior_probs = (0..@num_categories-1).map do |category|
|
75
|
+
p = tokens.map { |token| get_token_probability(token, category) }.product # p(tokens | category)
|
76
|
+
p * get_prior_category_probability(category) # p(tokens | category) * p(category)
|
77
|
+
end
|
78
|
+
normalization = unnormalized_posterior_probs.sum
|
79
|
+
normalization = 1 if normalization == 0
|
80
|
+
return unnormalized_posterior_probs.map{ |p| p / normalization }
|
81
|
+
end
|
82
|
+
|
83
|
+
# p(token | category)
|
84
|
+
def get_token_probability(token, category_index)
|
85
|
+
denom = @total_token_counts[category_index] + @token_counts[category_index].size * @prior_token_count
|
86
|
+
if denom == 0
|
87
|
+
return 0
|
88
|
+
else
|
89
|
+
return ((@token_counts[category_index][token] || 0) + @prior_token_count).to_f / denom # TODO: Make the default hash value 0, to remove the `|| 0`.
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
# p(category)
|
94
|
+
def get_prior_category_probability(category_index)
|
95
|
+
denom = @category_counts.sum + @prior_category_counts.sum
|
96
|
+
if denom == 0
|
97
|
+
return 0
|
98
|
+
else
|
99
|
+
return (@category_counts[category_index] + @prior_category_counts[category_index]).to_f / denom
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require File.expand_path('../language-detector', __FILE__)
|
2
|
+
|
3
|
+
TWEETS_FILENAME = "datasets/tweets_5000.txt"
|
4
|
+
|
5
|
+
training_sentences = File.readlines(TWEETS_FILENAME).map{ |tweet| tweet.normalize }
|
6
|
+
detector = LanguageDetector.new(:ngram_size => 2)
|
7
|
+
detector.train(30, training_sentences)
|
8
|
+
detector.yamlize("detector.yaml")
|
9
|
+
|
10
|
+
puts detector.classifier.get_prior_category_probability(0)
|
11
|
+
puts detector.classifier.get_prior_category_probability(1)
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require_relative '../src/language-detector'
|
3
|
+
|
4
|
+
class LanguageDetectorTests < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
# Detect vowel-y sentences (the majority language) vs. consonant-y sentences.
|
7
|
+
@vowel_detector = LanguageDetector.new(:ngram_size => 2)
|
8
|
+
vowel_examples = ["aeiou uoeia auoiao ai", "iouea eou eu eaiou", "ou oi oiea ieau", "eau au aou ia", "aei aae eaee iou aii iaa ooae oaiuuoouie", "aei iou iaou", "aeeeiioouuu uoeiae"]
|
9
|
+
consonant_examples = ["bcbcbbccdd bcd cdbcbc dbdb", "cddccdbcbcdbd", "cdc bdc bdb cdc"]
|
10
|
+
@vowel_detector.train(20, vowel_examples + consonant_examples)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_classify
|
14
|
+
assert_equal "majority", @vowel_detector.classify("iou eao oiee aie tee")
|
15
|
+
assert_equal "majority", @vowel_detector.classify("aeou one cdf oeaoi ioeae")
|
16
|
+
assert_equal "minority", @vowel_detector.classify("cdccdb")
|
17
|
+
assert_equal "minority", @vowel_detector.classify("bcbbd cdcbdcb ae")
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require_relative '../src/naive-bayes-classifier'
|
3
|
+
|
4
|
+
class NaiveBayesClassifierTests < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
# Test with all prior parameters set to zero.
|
7
|
+
@mle = NaiveBayesClassifier.new(:num_categories => 2, :prior_token_count => 0, :prior_category_counts => [0, 0])
|
8
|
+
example_colors = %w( red green blue )
|
9
|
+
example_numbers = %w( one two three )
|
10
|
+
@mle.train(example_colors, 0)
|
11
|
+
@mle.train(example_colors, 0)
|
12
|
+
@mle.train(example_numbers, 0)
|
13
|
+
@mle.train(example_numbers, 1)
|
14
|
+
@mle.train(example_numbers, 1)
|
15
|
+
@mle.train(example_colors, 1)
|
16
|
+
|
17
|
+
# Test smoothing.
|
18
|
+
@smoothed = NaiveBayesClassifier.new(:num_categories => 2, :prior_token_count => 0.001, :prior_category_counts => [1, 1])
|
19
|
+
@smoothed.train(example_colors, 0)
|
20
|
+
@smoothed.train(example_numbers, 1)
|
21
|
+
|
22
|
+
# Test three categories.
|
23
|
+
@three = NaiveBayesClassifier.new(:num_categories => 3, :prior_token_count => 0.001, :prior_category_counts => [1, 1, 1])
|
24
|
+
@three.train(example_colors, 0)
|
25
|
+
@three.train(example_numbers, 1)
|
26
|
+
example_planets = %w( mars earth venus )
|
27
|
+
@three.train(example_planets, 2)
|
28
|
+
end
|
29
|
+
|
30
|
+
def test_classify
|
31
|
+
assert_equal 0, @mle.classify(%w( blue green red ))
|
32
|
+
assert_equal 0, @mle.classify(%w( blue green one ))
|
33
|
+
assert_equal 1, @mle.classify(%w( blue two one ))
|
34
|
+
assert_equal 1, @mle.classify(%w( three two one ))
|
35
|
+
|
36
|
+
assert_equal 0, @smoothed.classify(%w( blue green red ))
|
37
|
+
assert_equal 0, @smoothed.classify(%w( blue green one ))
|
38
|
+
assert_equal 1, @smoothed.classify(%w( blue two one ))
|
39
|
+
assert_equal 1, @smoothed.classify(%w( three two one ))
|
40
|
+
|
41
|
+
assert_equal 0, @three.classify(%w( blue green venus ))
|
42
|
+
assert_equal 1, @three.classify(%w( one two mars ))
|
43
|
+
assert_equal 2, @three.classify(%w( one three mars earth venus green))
|
44
|
+
assert_equal 2, @three.classify(%w( mars green venus ))
|
45
|
+
end
|
46
|
+
|
47
|
+
def test_posterior_probabilities
|
48
|
+
assert_equal [8.0 / 9, 1.0 / 9], @mle.get_posterior_category_probabilities(%w( blue green red ))
|
49
|
+
assert_equal [1.0 / 9, 8.0 / 9], @mle.get_posterior_category_probabilities(%w( three two one ))
|
50
|
+
|
51
|
+
p, q = @mle.get_posterior_category_probabilities(%w( blue green one ))
|
52
|
+
assert_in_delta p, 2.0 / 3, 0.00001
|
53
|
+
assert_in_delta q, 1.0 / 3, 0.00001
|
54
|
+
|
55
|
+
p, q = @smoothed.get_posterior_category_probabilities(%w( blue green red ))
|
56
|
+
assert p > 0
|
57
|
+
assert q > 0
|
58
|
+
assert_in_delta 1, p + q, 0.00001
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require_relative '../src/naive-bayes-classifier'
|
3
|
+
|
4
|
+
class NaiveBayesEmTests < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
number_examples = [%w(one two three), %w(two three four five six), %w(seven three one four five eight nine), %w(ten one two six three seven), %w(one five six seven two eight ten nine)]
|
7
|
+
color_examples = [%w(red blue green), %w(red blue yellow purple red), %w(brown green purple red blue black white)]
|
8
|
+
@two = NaiveBayesClassifier.train_em(20, number_examples + color_examples)
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_classify
|
12
|
+
color_classifications = [%w(red rainbow green grass), %w(one red blue green), %w(brown cow)].map do |example|
|
13
|
+
@two.classify(example)
|
14
|
+
end
|
15
|
+
number_classifications = [%w(one hundred two three red), %w(one nine one one eight), %w(three cows)].map do |example|
|
16
|
+
@two.classify(example)
|
17
|
+
end
|
18
|
+
|
19
|
+
assert_equal 1, color_classifications.uniq.size
|
20
|
+
assert_equal 1, number_classifications.uniq.size
|
21
|
+
assert_not_equal color_classifications.first, number_classifications.first
|
22
|
+
end
|
23
|
+
end
|
data/test/test_suite.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "unsupervised-language-detection/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "unsupervised-language-detection"
|
7
|
+
s.version = UnsupervisedLanguageDetection::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ["Edwin Chen"]
|
10
|
+
s.email = ["hello@echen.me"]
|
11
|
+
s.homepage = "http://blog.echen.me/2011/05/01/unsupervised-language-detection-algorithms/"
|
12
|
+
s.summary = %q{Perform unsupervised language detection.}
|
13
|
+
s.description = %q{Perform unsupervised language detection, specifically for the purpose of finding English-language tweets.}
|
14
|
+
|
15
|
+
s.rubyforge_project = "unsupervised-language-detection"
|
16
|
+
|
17
|
+
s.files = `git ls-files`.split("\n")
|
18
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
19
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
20
|
+
s.require_paths = ["lib"]
|
21
|
+
end
|
data/website/Gemfile
ADDED
data/website/README.md
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
Current language detector in `detector.yaml` is trained on bigrams from 5000 tweets. It automatically removes all non-ASCII characters (thus, it doesn't use non-Roman characters when attempting to classify), though you could obviously add a simple check for these. (Adding a check isn't really necessary, though; really, the only case where it seems to help is when the tweet consists solely of non-Roman characters, since in those cases, the language detector automatically strips out all non-Roman characters, so it's effectively trying to classify an empty string.)
|
data/website/config.ru
ADDED
@@ -0,0 +1,1658 @@
|
|
1
|
+
--- !ruby/object:LanguageDetector
|
2
|
+
classifier: !ruby/object:NaiveBayesClassifier
|
3
|
+
category_counts:
|
4
|
+
- 3183.4027934973374
|
5
|
+
- 1816.597206502668
|
6
|
+
category_names:
|
7
|
+
- majority
|
8
|
+
- minority
|
9
|
+
num_categories: 2
|
10
|
+
prior_category_counts:
|
11
|
+
- 0.2697076436538801
|
12
|
+
- 0.3885667929570299
|
13
|
+
prior_token_count: 0.0001
|
14
|
+
token_counts:
|
15
|
+
- uh: 4.839766300291566
|
16
|
+
" t": 1644.190839221338
|
17
|
+
"a ": 448.3737270387496
|
18
|
+
ce: 141.80198966237577
|
19
|
+
rt: 510.6701382674465
|
20
|
+
is: 407.10877424240334
|
21
|
+
si: 120.78445863136832
|
22
|
+
mo: 215.5804810444768
|
23
|
+
" v": 64.08394201261416
|
24
|
+
ai: 118.85324989295007
|
25
|
+
" s": 988.5449904028534
|
26
|
+
er: 680.0073640162193
|
27
|
+
ud: 43.583434448253925
|
28
|
+
"o ": 874.5225908513802
|
29
|
+
li: 265.9999125330205
|
30
|
+
nd: 378.8235732117308
|
31
|
+
em: 103.98736049173093
|
32
|
+
" j": 192.3020344648149
|
33
|
+
"p ": 247.6105694007469
|
34
|
+
eu: 2.5823850074731465
|
35
|
+
"u ": 510.7781980548315
|
36
|
+
"d ": 1183.5582142955957
|
37
|
+
th: 1123.2265095891996
|
38
|
+
"e ": 2346.2827093338146
|
39
|
+
nt: 369.0058408632457
|
40
|
+
" a": 1081.9065189157038
|
41
|
+
" d": 750.1941596011246
|
42
|
+
ay: 359.608437584092
|
43
|
+
" b": 707.5180211724066
|
44
|
+
ie: 156.74713405199756
|
45
|
+
be: 283.46825182315575
|
46
|
+
"r ": 697.9486629727522
|
47
|
+
wo: 163.6663475818484
|
48
|
+
re: 643.3820964720902
|
49
|
+
" i": 1298.9618577898823
|
50
|
+
"m ": 360.5895607023793
|
51
|
+
im: 305.4879754413127
|
52
|
+
pr: 96.71032027984812
|
53
|
+
es: 398.8196099984257
|
54
|
+
se: 320.8479503915177
|
55
|
+
ha: 951.4865909121324
|
56
|
+
aa: 104.4025601140618
|
57
|
+
ah: 183.89119574390006
|
58
|
+
" ": 1874.3419176268542
|
59
|
+
sp: 45.51890121903155
|
60
|
+
"on": 560.7154502333444
|
61
|
+
di: 138.6078598294823
|
62
|
+
" p": 464.40085334886584
|
63
|
+
ri: 187.44095412513582
|
64
|
+
ma: 240.30349218939887
|
65
|
+
ul: 98.81549066057582
|
66
|
+
yo: 536.3321868818153
|
67
|
+
ra: 136.0858150473006
|
68
|
+
le: 274.36578381846016
|
69
|
+
gl: 39.71664019130852
|
70
|
+
"s ": 1423.6628036305015
|
71
|
+
or: 428.53589712537985
|
72
|
+
rm: 30.5436384255757
|
73
|
+
ss: 180.33210070353155
|
74
|
+
ju: 134.34435533509924
|
75
|
+
st: 457.25691772734103
|
76
|
+
" 5": 12.053636748248982
|
77
|
+
" m": 821.242137258036
|
78
|
+
mi: 137.18071659352842
|
79
|
+
nu: 21.242983799949798
|
80
|
+
te: 350.6910561420312
|
81
|
+
to: 577.0101699053549
|
82
|
+
" g": 504.5267622510934
|
83
|
+
en: 340.60542476325855
|
84
|
+
ac: 177.87437468315045
|
85
|
+
"k ": 364.71324918045497
|
86
|
+
" w": 863.022548773044
|
87
|
+
ki: 145.00176149214732
|
88
|
+
ng: 541.5165930436791
|
89
|
+
" h": 696.9685736932486
|
90
|
+
ar: 370.71402265933983
|
91
|
+
dr: 35.530100983226
|
92
|
+
oo: 546.2605261571005
|
93
|
+
ll: 555.0418815296788
|
94
|
+
" o": 506.4338676563596
|
95
|
+
"n ": 935.6808817936025
|
96
|
+
"12": 5.366107248120995
|
97
|
+
"x ": 141.78623978443238
|
98
|
+
bu: 136.28710316443076
|
99
|
+
ny: 71.83502148826885
|
100
|
+
"i ": 721.4334791254124
|
101
|
+
ik: 93.81279330211494
|
102
|
+
" u": 215.81843046845282
|
103
|
+
ja: 27.067372932284925
|
104
|
+
nn: 104.08241292390105
|
105
|
+
" r": 339.5343813382633
|
106
|
+
"t ": 1824.0945661459166
|
107
|
+
ih: 2.34282517649624
|
108
|
+
hh: 62.2573693076191
|
109
|
+
un: 163.55936052451347
|
110
|
+
yi: 35.00993890787994
|
111
|
+
pa: 99.11849828276829
|
112
|
+
tu: 64.8949922472486
|
113
|
+
wk: 3.0008975323585134
|
114
|
+
" k": 119.41884042151338
|
115
|
+
ec: 75.47184819785329
|
116
|
+
il: 209.75131282753622
|
117
|
+
uk: 4.333391217571921
|
118
|
+
aq: 1.0034655709513578
|
119
|
+
de: 170.31230433771285
|
120
|
+
ee: 418.0368591009681
|
121
|
+
ke: 238.64586066252195
|
122
|
+
" z": 3.713943663038402
|
123
|
+
je: 24.060341556214315
|
124
|
+
" 1": 44.91905002951729
|
125
|
+
"7 ": 6.985441638642572
|
126
|
+
in: 941.1670325738004
|
127
|
+
" l": 592.3630448938694
|
128
|
+
t3: 80.7092799744246
|
129
|
+
" y": 545.0704250147389
|
130
|
+
el: 205.96963478591627
|
131
|
+
an: 759.4538716558542
|
132
|
+
au: 60.365678570479695
|
133
|
+
wi: 240.28855668163334
|
134
|
+
gr: 70.92721358112829
|
135
|
+
ea: 416.63761137113704
|
136
|
+
td: 8.78438719305366
|
137
|
+
rr: 112.67341227217216
|
138
|
+
"y ": 1070.5373572816504
|
139
|
+
ks: 95.25007334940253
|
140
|
+
" f": 576.5157079054167
|
141
|
+
we: 311.7244554662131
|
142
|
+
et: 268.46337651717147
|
143
|
+
"g ": 490.1649447439454
|
144
|
+
nk: 101.00159432115177
|
145
|
+
"f ": 226.89800066279702
|
146
|
+
do: 221.03299716256484
|
147
|
+
lr: 11.883353791144225
|
148
|
+
dy: 46.60995340059612
|
149
|
+
as: 308.9397848036829
|
150
|
+
fo: 321.37548217665545
|
151
|
+
ow: 407.96538272266054
|
152
|
+
ne: 301.2793953626116
|
153
|
+
ut: 250.84420775075577
|
154
|
+
ta: 154.13155421438984
|
155
|
+
he: 933.6075815717488
|
156
|
+
ho: 314.1245221901847
|
157
|
+
ge: 199.10329623528096
|
158
|
+
ou: 790.907121565043
|
159
|
+
of: 149.91336075395978
|
160
|
+
ed: 281.3103663940694
|
161
|
+
" n": 367.6736008872821
|
162
|
+
lu: 40.55553221136501
|
163
|
+
ck: 175.20356420442494
|
164
|
+
hi: 379.80520269059934
|
165
|
+
ti: 304.49744328409497
|
166
|
+
ts: 194.56532913667965
|
167
|
+
av: 175.2477195773374
|
168
|
+
da: 272.2333658254268
|
169
|
+
sh: 201.9462751079879
|
170
|
+
sm: 27.988273226165703
|
171
|
+
me: 540.564451702098
|
172
|
+
rn: 58.15722380047372
|
173
|
+
sa: 123.04022094183729
|
174
|
+
id: 132.9638466313771
|
175
|
+
"no": 302.5550958562615
|
176
|
+
nc: 87.69194653337914
|
177
|
+
vo: 26.8369117485612
|
178
|
+
ic: 177.65262885513275
|
179
|
+
"5 ": 16.946824307141124
|
180
|
+
ye: 145.44554343785396
|
181
|
+
ok: 121.65338396143562
|
182
|
+
"w ": 349.6453690217641
|
183
|
+
ep: 48.637548781178076
|
184
|
+
uy: 28.48168482529267
|
185
|
+
" 3": 32.868541349135356
|
186
|
+
rs: 137.09277438203688
|
187
|
+
"h ": 416.42130633302844
|
188
|
+
va: 24.891841427094022
|
189
|
+
ca: 198.59919092483577
|
190
|
+
ga: 57.53716071963162
|
191
|
+
mp: 20.487864962019465
|
192
|
+
" e": 180.39082074601367
|
193
|
+
ii: 31.879315486898143
|
194
|
+
" c": 461.7900231085685
|
195
|
+
gu: 49.6071073147688
|
196
|
+
tt: 138.9272944754637
|
197
|
+
ur: 245.26901136846485
|
198
|
+
am: 171.45483389421085
|
199
|
+
cu: 47.95963633648011
|
200
|
+
ey: 88.51189382429614
|
201
|
+
ot: 211.17697780813677
|
202
|
+
it: 567.101791686211
|
203
|
+
lo: 461.42214725264313
|
204
|
+
eb: 81.65086243710108
|
205
|
+
iv: 83.21575574280348
|
206
|
+
ro: 190.42939401970494
|
207
|
+
og: 22.881833207419216
|
208
|
+
fa: 88.80783292134147
|
209
|
+
al: 366.5997447332038
|
210
|
+
eg: 21.049304625005625
|
211
|
+
hm: 11.112574900465532
|
212
|
+
kn: 81.01435099547466
|
213
|
+
my: 244.31776065997852
|
214
|
+
ad: 185.7788973314001
|
215
|
+
um: 40.504774891107814
|
216
|
+
gh: 148.5608778138633
|
217
|
+
ak: 130.21093509146488
|
218
|
+
po: 61.83085451096458
|
219
|
+
od: 144.36928648885558
|
220
|
+
ir: 127.47451388970005
|
221
|
+
so: 344.058673047766
|
222
|
+
"70": 1.98191261603024e-12
|
223
|
+
"0 ": 30.243026757983216
|
224
|
+
" q": 10.176454377586055
|
225
|
+
ue: 32.47940657317049
|
226
|
+
bo: 127.39239967162457
|
227
|
+
ui: 10.898288343930679
|
228
|
+
uu: 17.716769095847795
|
229
|
+
ve: 501.82619328585287
|
230
|
+
wa: 334.3558860906528
|
231
|
+
yw: 3.9999999999996185
|
232
|
+
oz: 2.0036604884895755
|
233
|
+
zy: 10.510344381975447
|
234
|
+
om: 293.1642451206514
|
235
|
+
cr: 44.02888349584953
|
236
|
+
ym: 10.999898745229016
|
237
|
+
ux: 4.007197786046749
|
238
|
+
ly: 164.77658645764956
|
239
|
+
"l ": 571.3766112707243
|
240
|
+
ig: 134.75436019199756
|
241
|
+
oy: 20.861365476307636
|
242
|
+
la: 161.83967634179112
|
243
|
+
mm: 97.65465742340554
|
244
|
+
yb: 18.946551649637605
|
245
|
+
us: 228.29267823523196
|
246
|
+
bi: 134.19241742693768
|
247
|
+
ff: 42.76586897329485
|
248
|
+
lc: 19.816296600099122
|
249
|
+
pu: 23.44272658485823
|
250
|
+
sc: 72.34135207958018
|
251
|
+
ol: 269.55789212377147
|
252
|
+
co: 205.24793041641325
|
253
|
+
fe: 104.53124654831356
|
254
|
+
if: 109.67162805576562
|
255
|
+
ni: 149.06065453548544
|
256
|
+
ag: 66.96713315235782
|
257
|
+
cl: 44.50203816322883
|
258
|
+
" 2": 36.82184033927458
|
259
|
+
"72": 1.9999999979121108
|
260
|
+
09: 1.9999999032982612
|
261
|
+
zo: 10.276164108922519
|
262
|
+
ij: 3.703343347957592
|
263
|
+
jo: 36.69703675192406
|
264
|
+
go: 269.44019957146895
|
265
|
+
ba: 142.63649803260842
|
266
|
+
na: 110.92663886028977
|
267
|
+
pe: 145.76683647453643
|
268
|
+
pi: 85.20580019648902
|
269
|
+
op: 91.17530473819139
|
270
|
+
ph: 32.29206791413767
|
271
|
+
iq: 1.9999315490184393
|
272
|
+
sk: 29.42453190854923
|
273
|
+
tr: 77.88871328842177
|
274
|
+
"b ": 38.16930960461638
|
275
|
+
za: 5.958634670392675
|
276
|
+
lt: 118.66633530856954
|
277
|
+
hu: 43.87816348805939
|
278
|
+
rk: 41.15076421274067
|
279
|
+
"4 ": 9.460461467731045
|
280
|
+
"21": 3.0000898505896267
|
281
|
+
"22": 0.00010454302569680175
|
282
|
+
l2: 8.932746869436433e-05
|
283
|
+
"3 ": 85.86064677511428
|
284
|
+
os: 87.79057206205775
|
285
|
+
tc: 60.85960149078181
|
286
|
+
at: 489.0120623008663
|
287
|
+
ch: 270.719859358651
|
288
|
+
ab: 88.74768520879464
|
289
|
+
ld: 115.30000430682719
|
290
|
+
ty: 63.88840710827123
|
291
|
+
xx: 123.78273566775641
|
292
|
+
fr: 107.60404835548034
|
293
|
+
ci: 37.48707293290583
|
294
|
+
ia: 47.97248226799231
|
295
|
+
dh: 1.9997928157861378
|
296
|
+
"z ": 31.42870423784919
|
297
|
+
mh: 6.334575263607563
|
298
|
+
pl: 146.94562590016685
|
299
|
+
mu: 68.89383000898681
|
300
|
+
ov: 176.52066182420415
|
301
|
+
az: 35.067213442266805
|
302
|
+
" x": 123.40566805779763
|
303
|
+
uf: 12.341740223293982
|
304
|
+
lw: 13.999999915287479
|
305
|
+
lv: 1.0214153436354587
|
306
|
+
lm: 33.34278782608633
|
307
|
+
ao: 27.808858809424983
|
308
|
+
br: 54.1050839392679
|
309
|
+
tw: 98.07853979786555
|
310
|
+
"10": 12.963460747951668
|
311
|
+
kr: 9.04587352598636
|
312
|
+
uc: 92.6715590983134
|
313
|
+
rd: 70.51674675577699
|
314
|
+
rl: 56.37051924579373
|
315
|
+
hl: 4.211230500182076
|
316
|
+
ze: 12.560709951451285
|
317
|
+
ko: 14.56064039166642
|
318
|
+
ya: 55.01839886219887
|
319
|
+
zn: 0.9986480246903902
|
320
|
+
yu: 23.453500492760014
|
321
|
+
tm: 4.016281342479998
|
322
|
+
xa: 8.02962788020744
|
323
|
+
lh: 9.222696704447927e-06
|
324
|
+
qu: 15.246216239065804
|
325
|
+
oa: 16.904339242871874
|
326
|
+
"2 ": 38.872225778228554
|
327
|
+
zk: 1.063840325312703e-06
|
328
|
+
1k: 2.1057390028351214e-07
|
329
|
+
lz: 5.988430055467244
|
330
|
+
aw: 73.49307062167038
|
331
|
+
ww: 36.446639911158776
|
332
|
+
vi: 84.0778621505838
|
333
|
+
ht: 107.34625604753022
|
334
|
+
ev: 130.02007291749385
|
335
|
+
sw: 24.53183711200272
|
336
|
+
ry: 111.28693780215175
|
337
|
+
du: 29.449862642874056
|
338
|
+
ib: 9.831401769285174
|
339
|
+
bl: 64.54643378799996
|
340
|
+
ei: 38.45118601629631
|
341
|
+
ob: 27.62268434214535
|
342
|
+
io: 56.054094896300256
|
343
|
+
ys: 82.12340496058995
|
344
|
+
ek: 29.500267390579257
|
345
|
+
ku: 5.007448121972309
|
346
|
+
ft: 19.05491758334458
|
347
|
+
rg: 38.88569373171677
|
348
|
+
gg: 25.887141963902792
|
349
|
+
w1: 0.9999999999999954
|
350
|
+
3s: 0.9999999999999954
|
351
|
+
af: 21.626830547252247
|
352
|
+
hy: 17.990084512941102
|
353
|
+
gi: 64.33050033302474
|
354
|
+
aj: 6.349715828915662
|
355
|
+
vr: 0.0006937421812221323
|
356
|
+
iz: 17.061528558332135
|
357
|
+
wt: 5.998285297009448
|
358
|
+
ds: 57.071743558642424
|
359
|
+
xp: 6.889029532074012
|
360
|
+
ef: 29.887248813511246
|
361
|
+
ms: 18.439515564516817
|
362
|
+
gs: 25.70842756049424
|
363
|
+
wn: 41.84270588729909
|
364
|
+
" 0": 5.031238957059699
|
365
|
+
tp: 2.9999999857353226
|
366
|
+
ns: 67.559076169283
|
367
|
+
up: 85.21744158342966
|
368
|
+
mb: 18.063017208238293
|
369
|
+
ex: 55.82473419362528
|
370
|
+
"c ": 41.53012064250355
|
371
|
+
tb: 5.298938015704919
|
372
|
+
sn: 26.809881810223228
|
373
|
+
oj: 4.199952959314429
|
374
|
+
nh: 2.7950782819227687e-06
|
375
|
+
"15": 1.8700297842027682
|
376
|
+
"38": 8.855312904984618e-33
|
377
|
+
"87": 1.7710625809969294e-32
|
378
|
+
"63": 8.855312904984795e-33
|
379
|
+
"41": 0.5785755551182977
|
380
|
+
pt: 13.006569754783799
|
381
|
+
fl: 10.297597340516436
|
382
|
+
pc: 3.198724862581291
|
383
|
+
nl: 24.70746828096453
|
384
|
+
ru: 52.020734595736826
|
385
|
+
ew: 81.23113295308964
|
386
|
+
rc: 36.18777400215829
|
387
|
+
fi: 64.07357644414668
|
388
|
+
"30": 11.316433678991398
|
389
|
+
fu: 70.56676048845172
|
390
|
+
oe: 32.89614945954165
|
391
|
+
ae: 3.78154515446044
|
392
|
+
rf: 13.195487267924255
|
393
|
+
bg: 3.264755440238228e-06
|
394
|
+
oh: 62.37442453448478
|
395
|
+
2m: 4.999999817489453
|
396
|
+
2h: 0.9999999999999997
|
397
|
+
" 4": 12.994808561963222
|
398
|
+
hr: 35.00770460836095
|
399
|
+
2d: 1.9999999842862417
|
400
|
+
su: 80.71935107420504
|
401
|
+
vd: 8.67242373653564e-06
|
402
|
+
eo: 56.29871558546575
|
403
|
+
pp: 91.62647738803025
|
404
|
+
tl: 30.890703700371287
|
405
|
+
"1 ": 31.6444263890566
|
406
|
+
" 9": 5.002010347836767
|
407
|
+
rv: 21.123723916897614
|
408
|
+
by: 42.65659994539152
|
409
|
+
oc: 32.61537862881787
|
410
|
+
mn: 22.17468833708439
|
411
|
+
sb: 4.054047672835389
|
412
|
+
zi: 20.184087308306456
|
413
|
+
jn: 1.0858298997842573
|
414
|
+
nw: 5.197621526748485e-07
|
415
|
+
nj: 8.00910415497418
|
416
|
+
wr: 24.493129279454926
|
417
|
+
hd: 38.406540749891306
|
418
|
+
1s: 5.999999953855214
|
419
|
+
wh: 182.6393140511426
|
420
|
+
hs: 7.546343182756506
|
421
|
+
zt: 7.913595795179021e-06
|
422
|
+
lb: 6.9902646784598055
|
423
|
+
ua: 11.472329741490157
|
424
|
+
xc: 8.314588895824379
|
425
|
+
mr: 3.4219454324073473
|
426
|
+
zu: 3.8550556785810214e-12
|
427
|
+
uv: 4.005711948698307
|
428
|
+
"8 ": 14.414112232260269
|
429
|
+
fg: 3.4199488579105153
|
430
|
+
ct: 71.61572386566024
|
431
|
+
dt: 5.2198587191790935
|
432
|
+
gt: 21.70082309155617
|
433
|
+
kk: 8.706450265223348
|
434
|
+
ug: 59.6260992158706
|
435
|
+
eh: 27.565820155748728
|
436
|
+
zl: 2.213782609820785
|
437
|
+
dm: 18.23570089332906
|
438
|
+
jk: 6.634242031476077
|
439
|
+
oi: 59.718059803142644
|
440
|
+
zc: 5.946924661667526e-08
|
441
|
+
2n: 1.9999858599693892
|
442
|
+
ls: 32.43072909299181
|
443
|
+
ap: 94.48586262676507
|
444
|
+
mk: 0.994043902408179
|
445
|
+
ip: 29.8438975465707
|
446
|
+
gw: 3.999881176825189
|
447
|
+
sl: 27.493009733853057
|
448
|
+
yp: 7.820497778518594
|
449
|
+
nf: 11.445212773268686
|
450
|
+
ez: 7.15549575305601
|
451
|
+
fy: 1.0
|
452
|
+
lf: 18.39095093027435
|
453
|
+
3l: 10.999999999902698
|
454
|
+
yy: 61.252299251031104
|
455
|
+
yl: 18.879934293235223
|
456
|
+
rw: 8.898075068242521
|
457
|
+
ws: 14.997425557010331
|
458
|
+
tv: 5.795877067338229
|
459
|
+
bt: 10.927723862860082
|
460
|
+
gn: 7.383749678715197
|
461
|
+
nx: 2.9996307929662693
|
462
|
+
uq: 6.537483768883679e-06
|
463
|
+
dn: 39.29864991913146
|
464
|
+
dd: 39.96086342775154
|
465
|
+
cs: 11.213696420101295
|
466
|
+
dj: 1.5949390443197744
|
467
|
+
lg: 8.477227680008063e-06
|
468
|
+
ka: 28.53933398374443
|
469
|
+
pf: 1.5302657822848735e-08
|
470
|
+
"33": 7.05358213853868
|
471
|
+
dl: 10.036020371545712
|
472
|
+
"25": 4.999996906106528
|
473
|
+
"86": 0.9999999999539692
|
474
|
+
ub: 15.24218170669359
|
475
|
+
c2: 0.9999991597191608
|
476
|
+
mt: 3.0402848657946975
|
477
|
+
mv: 8.635003384373907e-09
|
478
|
+
dg: 5.9999999483230315
|
479
|
+
sf: 4.000001682465683
|
480
|
+
nb: 2.9671360645697584
|
481
|
+
hk: 0.9994287721908874
|
482
|
+
lj: 7.71388580178197e-11
|
483
|
+
jd: 0.8833748594669242
|
484
|
+
bb: 14.600097071708483
|
485
|
+
dc: 2.2859646932544866
|
486
|
+
dk: 0.9999999998728073
|
487
|
+
"20": 12.000023047469728
|
488
|
+
ps: 33.446688549061214
|
489
|
+
"j ": 7.654189461083003
|
490
|
+
sg: 0.883106612239832
|
491
|
+
nv: 9.131228575905096
|
492
|
+
cc: 10.310160429527823
|
493
|
+
"18": 3.014412958521107
|
494
|
+
"9 ": 6.9981793778665295
|
495
|
+
xy: 5.999997022699714
|
496
|
+
mf: 3.997968357783491
|
497
|
+
ji: 0.0001586021128730021
|
498
|
+
t7: 0.0002639344273054405
|
499
|
+
"11": 6.951330331768689
|
500
|
+
"23": 1.9999968277981253
|
501
|
+
kd: 2.9999542561740093
|
502
|
+
sy: 8.499921356978613
|
503
|
+
"42": 0.9999998729331045
|
504
|
+
sj: 3.078258124246216
|
505
|
+
3d: 5.991340132912544
|
506
|
+
"50": 2.997483233154205
|
507
|
+
xd: 13.433734360845278
|
508
|
+
py: 38.792740677876324
|
509
|
+
rq: 1.7172585630195608e-11
|
510
|
+
"80": 1.999999999867053
|
511
|
+
o2: 4.624238353639166e-24
|
512
|
+
"60": 2.9999963146855286
|
513
|
+
4e: 4.624238353639166e-24
|
514
|
+
yn: 5.002624512238392
|
515
|
+
yc: 4.995249521119288
|
516
|
+
jt: 2.4701622513473403e-05
|
517
|
+
sd: 6.193247129781506
|
518
|
+
tj: 4.924515129842811e-05
|
519
|
+
yf: 3.135854250904501
|
520
|
+
gb: 8.30527009752088e-05
|
521
|
+
"16": 3.9999962832301064
|
522
|
+
oq: 3.457194235659092e-05
|
523
|
+
kl: 9.927515233557541
|
524
|
+
kt: 0.058980928270449935
|
525
|
+
np: 2.319979040099058
|
526
|
+
uz: 11.494702735851458
|
527
|
+
xt: 20.6702719261484
|
528
|
+
hb: 0.040150169535285385
|
529
|
+
pj: 3.368595664251825
|
530
|
+
lk: 30.819271026606078
|
531
|
+
bs: 14.112177517878875
|
532
|
+
ox: 10.241275274818802
|
533
|
+
7u: 8.258199063590654e-37
|
534
|
+
qo: 0.00015832983446282647
|
535
|
+
"q ": 5.33024506062958
|
536
|
+
7a: 1.651639812718131e-36
|
537
|
+
" 7": 8.22140169735175
|
538
|
+
jh: 1.8678454841288725
|
539
|
+
"v ": 19.246326282582206
|
540
|
+
yt: 16.999998984714892
|
541
|
+
"00": 26.818985195111676
|
542
|
+
kp: 1.18841451437672
|
543
|
+
sr: 2.2384415469205767
|
544
|
+
rj: 0.0007659852853112359
|
545
|
+
kf: 4.990163312827333
|
546
|
+
cy: 5.071689599003732
|
547
|
+
ix: 6.995293056569007
|
548
|
+
bc: 4.998743439386849
|
549
|
+
"24": 3.0018406854224073
|
550
|
+
fs: 1.0000002603110087
|
551
|
+
tf: 7.9999943704149725
|
552
|
+
gy: 5.959581740725445
|
553
|
+
jv: 1.2310903397229147e-05
|
554
|
+
tg: 15.609222946715548
|
555
|
+
km: 1.003714005415485
|
556
|
+
iy: 2.156573837336848
|
557
|
+
wy: 2.0974802287737835
|
558
|
+
kc: 4.889000131589506
|
559
|
+
yh: 4.385734144072473
|
560
|
+
bd: 9.129234085095545
|
561
|
+
gk: 6.298746350354604e-08
|
562
|
+
rz: 2.0006618481236176
|
563
|
+
fb: 2.9997144873853605
|
564
|
+
cd: 1.9999999998807516
|
565
|
+
rb: 5.0607078260636875
|
566
|
+
pm: 2.9999999997572733
|
567
|
+
7m: 0.9999999999809971
|
568
|
+
pn: 1.0113586353354813e-06
|
569
|
+
zb: 0.9996722309917638
|
570
|
+
lp: 12.932639167687952
|
571
|
+
z3: 0.999999803068999
|
572
|
+
ln: 2.9999940849772373
|
573
|
+
tn: 6.977031264655876
|
574
|
+
4m: 0.9999999999999996
|
575
|
+
"17": 5.999971487524141
|
576
|
+
bh: 2.1204743825731214
|
577
|
+
g3: 0.9999999997507604
|
578
|
+
" 8": 3.798186401063376
|
579
|
+
"81": 0.9999999999466499
|
580
|
+
r8: 2.9999999994809334
|
581
|
+
wl: 4.319907029048115
|
582
|
+
zz: 14.334429997546595
|
583
|
+
sz: 2.857647512449611e-05
|
584
|
+
tk: 1.150297130029292e-11
|
585
|
+
dp: 0.9999455920066946
|
586
|
+
7p: 4.7633062990016593e-17
|
587
|
+
"01": 4.999970097969632
|
588
|
+
hj: 1.3857685101970415e-06
|
589
|
+
mw: 0.9997622004882926
|
590
|
+
bm: 3.1094348042966247
|
591
|
+
ej: 1.0184369736589831
|
592
|
+
qe: 1.9930216241964064e-09
|
593
|
+
wu: 1.999999987332465
|
594
|
+
md: 2.097030056691077
|
595
|
+
gp: 0.999999962579826
|
596
|
+
nq: 1.000627666537929
|
597
|
+
uo: 9.982799357150425e-06
|
598
|
+
bj: 0.016820950840977962
|
599
|
+
fd: 0.00012000504995124854
|
600
|
+
iu: 3.0056929513326454
|
601
|
+
gd: 0.012040376153974238
|
602
|
+
jw: 1.0001527243252106
|
603
|
+
wd: 0.999999970861187
|
604
|
+
hz: 1.999999997228957
|
605
|
+
"90": 0.9999995610477208
|
606
|
+
"89": 5.551565274167866e-09
|
607
|
+
7r: 5.551565274167866e-09
|
608
|
+
"67": 5.551565274167866e-09
|
609
|
+
ky: 12.023465682312212
|
610
|
+
9t: 1.9999999999519211
|
611
|
+
5h: 1.0
|
612
|
+
"37": 1.9603176940051223e-11
|
613
|
+
5m: 9.763001777468179e-08
|
614
|
+
4a: 5.296498146629297e-12
|
615
|
+
0d: 5.296498146629297e-12
|
616
|
+
b7: 5.296498146629297e-12
|
617
|
+
pq: 1.48280842321139e-07
|
618
|
+
xo: 6.890939609235134
|
619
|
+
"28": 1.0000000000942884
|
620
|
+
6f: 1.9999999999124822
|
621
|
+
dw: 3.9999999928448813
|
622
|
+
"40": 3.992491795891861
|
623
|
+
ml: 2.0089962171618767
|
624
|
+
kj: 0.0023443189665538077
|
625
|
+
uj: 1.0360852065446071
|
626
|
+
jj: 0.3634458661878616
|
627
|
+
fh: 2.999999996748001
|
628
|
+
wq: 0.9999999967480013
|
629
|
+
qa: 1.0000000051931932
|
630
|
+
s2: 8.630086936075712e-09
|
631
|
+
yg: 0.06547726580048648
|
632
|
+
gq: 4.178766222565354e-16
|
633
|
+
jp: 5.307536243681252e-07
|
634
|
+
cm: 3.7187126687279716e-08
|
635
|
+
xi: 2.9738487852111586
|
636
|
+
mj: 2.6964093493334534e-11
|
637
|
+
2e: 0.9527369027580822
|
638
|
+
0g: 0.9999999999976472
|
639
|
+
yd: 2.999999144840226
|
640
|
+
pz: 0.9999992189533287
|
641
|
+
"26": 1.0000169654590132
|
642
|
+
nz: 2.478627007060419
|
643
|
+
yk: 2.1988878148646925e-07
|
644
|
+
h2: 0.9999115430726739
|
645
|
+
bv: 0.9960572492315886
|
646
|
+
mx: 2.3211206801335058e-08
|
647
|
+
rh: 1.999828904757177
|
648
|
+
vu: 9.51204074492622e-14
|
649
|
+
"6 ": 5.127802887083151
|
650
|
+
mg: 3.9999991810016593
|
651
|
+
dz: 1.0002066201598452
|
652
|
+
jr: 0.9651692194607422
|
653
|
+
jm: 2.5194828605799476e-05
|
654
|
+
vc: 3.7897321148717194e-06
|
655
|
+
"44": 0.9999999998670529
|
656
|
+
"13": 2.948479755633822
|
657
|
+
fj: 1.2661357082474218e-08
|
658
|
+
hf: 1.2661357082474218e-08
|
659
|
+
sq: 1.0007781909308673
|
660
|
+
1a: 0.9999999999840391
|
661
|
+
jb: 3.928240203300932e-12
|
662
|
+
9s: 0.9999999944622239
|
663
|
+
bf: 3.9999723416001465
|
664
|
+
xl: 0.9999952387662464
|
665
|
+
pd: 1.9996772126418834
|
666
|
+
"31": 0.9999999979849735
|
667
|
+
"45": 0.9999999998157939
|
668
|
+
"62": 3.720604771059839e-12
|
669
|
+
"02": 4.758802613697835e-05
|
670
|
+
"03": 3.720604771059839e-12
|
671
|
+
yr: 9.009018652691617
|
672
|
+
hw: 4.000065139543827
|
673
|
+
kb: 3.049238395714813
|
674
|
+
"27": 2.9999982530962708
|
675
|
+
bz: 3.4893551277089633e-10
|
676
|
+
xs: 7.938921760884301e-07
|
677
|
+
vb: 0.9999999999998117
|
678
|
+
2s: 1.8212699648822679
|
679
|
+
wb: 4.525740018562945e-10
|
680
|
+
vh: 8.073811907039655e-30
|
681
|
+
hg: 1.614762381407931e-29
|
682
|
+
cg: 8.073811907039655e-30
|
683
|
+
bn: 0.9990761612418385
|
684
|
+
nm: 2.4993561873038708
|
685
|
+
"98": 5.281440698792788e-09
|
686
|
+
fv: 5.281440698792788e-09
|
687
|
+
y1: 1.9999998526785232
|
688
|
+
wg: 1.0
|
689
|
+
1d: 3.999999999685452
|
690
|
+
tz: 3.040542003172019
|
691
|
+
sv: 1.0028161034894187
|
692
|
+
2y: 4.217578724562261
|
693
|
+
s3: 4.217578724562261
|
694
|
+
fc: 0.9999999343579922
|
695
|
+
mc: 0.9983681495828752
|
696
|
+
"29": 0.999999991259502
|
697
|
+
gm: 6.144284460471394e-06
|
698
|
+
ax: 2.6259480033102776
|
699
|
+
g6: 1.0
|
700
|
+
o1: 0.99999999996248
|
701
|
+
xe: 1.182188675954448
|
702
|
+
rp: 6.204929654864583
|
703
|
+
2c: 1.9999999999864637
|
704
|
+
kg: 0.9996785797733472
|
705
|
+
nr: 1.1580790263355321e-06
|
706
|
+
vn: 1.2478135466692387e-09
|
707
|
+
zv: 1.1520036218733656e-06
|
708
|
+
uw: 1.2925623907854877
|
709
|
+
kw: 5.790899844577317
|
710
|
+
vl: 2.9979666021999654
|
711
|
+
dv: 5.015931997063145
|
712
|
+
jg: 1.4824424218073083e-07
|
713
|
+
3a: 5.2314442983217895e-17
|
714
|
+
yz: 1.1772598450812022e-07
|
715
|
+
7e: 5.2314442983217895e-17
|
716
|
+
7o: 5.2314442983217895e-17
|
717
|
+
7t: 3.999999689282758
|
718
|
+
1x: 2.7363554456488084e-06
|
719
|
+
eq: 3.2329816814822964e-13
|
720
|
+
xf: 1.9999999999985825
|
721
|
+
"14": 3.9284149545825358
|
722
|
+
" 6": 2.9999999999076765
|
723
|
+
0c: 6.856736785220701e-10
|
724
|
+
0w: 6.856736785220701e-10
|
725
|
+
b0: 6.856736785220701e-10
|
726
|
+
kh: 1.0645809845847607
|
727
|
+
js: 4.385715700363794e-05
|
728
|
+
"58": 9.430908190596796e-11
|
729
|
+
hp: 9.42882597286066e-11
|
730
|
+
"75": 0.9999982892374879
|
731
|
+
xr: 3.9999999997775584
|
732
|
+
qh: 0.00015832983446282647
|
733
|
+
2k: 1.9965578645864484e-10
|
734
|
+
zw: 2.599556209790808e-07
|
735
|
+
vj: 1.61603490755196e-08
|
736
|
+
hn: 3.724096458431469
|
737
|
+
bw: 1.999997644685077
|
738
|
+
"54": 2.082217736136303e-14
|
739
|
+
vs: 0.02140469489272505
|
740
|
+
d1: 3.731153676247495e-14
|
741
|
+
"78": 0.9951442039969495
|
742
|
+
c0: 0.9999999999999999
|
743
|
+
0k: 0.9999999999999999
|
744
|
+
"06": 0.9999999999999993
|
745
|
+
5t: 1.9999999999999987
|
746
|
+
vy: 1.9999995541489421
|
747
|
+
0s: 0.9999999648767134
|
748
|
+
qn: 2.3829064458344935e-15
|
749
|
+
"32": 0.9999999999998944
|
750
|
+
cq: 3.1497997696255218e-06
|
751
|
+
8p: 0.9999997146438738
|
752
|
+
"51": 3.620240328942642e-16
|
753
|
+
wc: 0.999999999550278
|
754
|
+
kz: 0.9999999962170019
|
755
|
+
"34": 0.00010893033367118252
|
756
|
+
n7: 1.51220500347037e-05
|
757
|
+
zd: 4.2324919010860166e-05
|
758
|
+
vq: 1.9028925101457136e-13
|
759
|
+
0o: 6.756187324111372e-19
|
760
|
+
r6: 3.2100361126417584e-27
|
761
|
+
o7: 3.2100361126417584e-27
|
762
|
+
yv: 0.9999999999995822
|
763
|
+
zs: 0.9999945150040211
|
764
|
+
"99": 1.9450189495284694e-15
|
765
|
+
hv: 7.954200973749341e-08
|
766
|
+
cj: 1.0
|
767
|
+
n2: 2.0
|
768
|
+
0t: 3.9999999921507836
|
769
|
+
2x: 0.0001187619205266887
|
770
|
+
"48": 5.866183229051868e-47
|
771
|
+
"71": 5.866183229051868e-47
|
772
|
+
f4: 2.4479757166593894e-06
|
773
|
+
"59": 2.4479757166593894e-06
|
774
|
+
cb: 0.999999999948284
|
775
|
+
df: 4.483945117970364e-24
|
776
|
+
hc: 1.4690737563516947e-08
|
777
|
+
lq: 5.266835851368125e-22
|
778
|
+
fk: 0.9999935679943353
|
779
|
+
jf: 5.142952762329964e-13
|
780
|
+
fz: 1.528922399689006e-12
|
781
|
+
0b: 1.0
|
782
|
+
fm: 1.9999957455422623
|
783
|
+
gz: 2.1120291093073424
|
784
|
+
xu: 5.4335231301876885e-06
|
785
|
+
5b: 0.9999999999964879
|
786
|
+
iw: 0.9861155748923495
|
787
|
+
"05": 0.9999794227033509
|
788
|
+
"61": 0.0002070953027330949
|
789
|
+
"57": 2.21154166696919e-06
|
790
|
+
4t: 5.5280504707509515e-21
|
791
|
+
3x: 0.9999999999312581
|
792
|
+
6t: 1.9999999999997922
|
793
|
+
2p: 0.9999999999999992
|
794
|
+
qi: 6.179256218051075e-17
|
795
|
+
bk: 7.304771555622378e-10
|
796
|
+
gc: 2.7106173617238758e-14
|
797
|
+
h6: 2.7106173617238758e-14
|
798
|
+
8v: 2.7106173617238758e-14
|
799
|
+
6m: 1.5916771067911588e-07
|
800
|
+
t1: 0.9999980853913163
|
801
|
+
"74": 1.0
|
802
|
+
"19": 0.9999999105296186
|
803
|
+
"91": 0.9999999105296186
|
804
|
+
9p: 0.9999999999998592
|
805
|
+
c3: 0.9999999999998592
|
806
|
+
"92": 2.0185169776650668e-09
|
807
|
+
7d: 2.0185169776650668e-09
|
808
|
+
bp: 1.3901126641574924e-10
|
809
|
+
3f: 1.0
|
810
|
+
4i: 1.0
|
811
|
+
qq: 0.9999928298893852
|
812
|
+
3n: 0.9999999563783719
|
813
|
+
1e: 1.999584690559459
|
814
|
+
1c: 1.1520320767040506e-11
|
815
|
+
8c: 1.1520320767040506e-11
|
816
|
+
fn: 3.576340451833604e-15
|
817
|
+
wp: 0.9999443161019247
|
818
|
+
sx: 0.9999999999990856
|
819
|
+
2t: 0.9999997586067089
|
820
|
+
r1: 1.1724168009596134e-23
|
821
|
+
r7: 0.9999999999999999
|
822
|
+
r3: 0.9999999038734949
|
823
|
+
qp: 6.313844602530975e-21
|
824
|
+
vz: 1.566025363224928e-08
|
825
|
+
"79": 0.9999987254343545
|
826
|
+
mz: 3.0028595851129703e-16
|
827
|
+
zp: 1.7355349879879828e-05
|
828
|
+
g2: 0.9999999960596488
|
829
|
+
wf: 1.9999983114198852
|
830
|
+
pg: 0.9999999998800323
|
831
|
+
3b: 0.9999999999999999
|
832
|
+
a3: 0.9999999999999999
|
833
|
+
pk: 1.571791757605959e-11
|
834
|
+
x1: 0.9999843407587914
|
835
|
+
- uh: 36.160233699708435
|
836
|
+
" t": 444.80916077865953
|
837
|
+
"a ": 1256.62627296125
|
838
|
+
ce: 86.1980103376242
|
839
|
+
rt: 332.3298617325534
|
840
|
+
is: 214.8912257575969
|
841
|
+
si: 102.21554136863166
|
842
|
+
mo: 188.41951895552316
|
843
|
+
" v": 327.9160579873857
|
844
|
+
ai: 146.14675010704994
|
845
|
+
" s": 538.4550095971471
|
846
|
+
er: 495.9926359837808
|
847
|
+
ud: 48.416565551746075
|
848
|
+
"o ": 1357.4774091486217
|
849
|
+
li: 213.00008746697947
|
850
|
+
nd: 239.17642678826934
|
851
|
+
em: 255.01263950826936
|
852
|
+
" j": 151.69796553518512
|
853
|
+
"p ": 130.38943059925293
|
854
|
+
eu: 184.41761499252686
|
855
|
+
"u ": 317.22180194516875
|
856
|
+
"d ": 314.4417857044039
|
857
|
+
th: 13.77349041079947
|
858
|
+
"e ": 1262.7172906661822
|
859
|
+
nt: 181.9941591367542
|
860
|
+
" a": 644.0934810842964
|
861
|
+
" d": 795.8058403988751
|
862
|
+
ay: 36.391562415908105
|
863
|
+
" b": 262.481978827594
|
864
|
+
ie: 161.25286594800244
|
865
|
+
be: 139.53174817684436
|
866
|
+
"r ": 548.0513370272472
|
867
|
+
wo: 21.333652418151598
|
868
|
+
re: 222.61790352791044
|
869
|
+
" i": 196.03814221011584
|
870
|
+
"m ": 423.4104392976206
|
871
|
+
im: 100.51202455868766
|
872
|
+
pr: 142.28967972015195
|
873
|
+
es: 296.1803900015744
|
874
|
+
se: 223.15204960848243
|
875
|
+
ha: 319.5134090878667
|
876
|
+
aa: 313.59743988593823
|
877
|
+
ah: 271.10880425610014
|
878
|
+
" ": 1118.6580823731438
|
879
|
+
sp: 47.48109878096846
|
880
|
+
"on": 239.28454976665552
|
881
|
+
di: 148.39214017051768
|
882
|
+
" p": 549.599146651135
|
883
|
+
ri: 129.55904587486427
|
884
|
+
ma: 352.69650781060136
|
885
|
+
ul: 39.184509339424196
|
886
|
+
yo: 23.667813118185048
|
887
|
+
ra: 365.9141849526996
|
888
|
+
le: 172.63421618153998
|
889
|
+
gl: 10.283359808691463
|
890
|
+
"s ": 717.3371963694964
|
891
|
+
or: 321.46410287461987
|
892
|
+
rm: 34.45636157442429
|
893
|
+
ss: 122.66789929646842
|
894
|
+
ju: 18.655644664900695
|
895
|
+
st: 176.7430822726594
|
896
|
+
" 5": 5.946363251751018
|
897
|
+
" m": 618.7578627419631
|
898
|
+
mi: 153.81928340647164
|
899
|
+
nu: 47.757016200050195
|
900
|
+
te: 401.3089438579691
|
901
|
+
to: 319.98983009464513
|
902
|
+
" g": 216.47323774890694
|
903
|
+
en: 631.3945752367409
|
904
|
+
ac: 90.1256253168493
|
905
|
+
"k ": 203.2867508195455
|
906
|
+
" w": 92.9774512269553
|
907
|
+
ki: 28.99823850785271
|
908
|
+
ng: 105.4834069563207
|
909
|
+
" h": 269.03142630675114
|
910
|
+
ar: 406.2859773406602
|
911
|
+
dr: 22.469899016774004
|
912
|
+
oo: 197.73947384289932
|
913
|
+
ll: 52.958118470321274
|
914
|
+
" o": 407.5661323436403
|
915
|
+
"n ": 605.3191182063952
|
916
|
+
"12": 6.633892751879006
|
917
|
+
"x ": 12.213760215567564
|
918
|
+
bu: 26.71289683556929
|
919
|
+
ny: 29.16497851173115
|
920
|
+
"i ": 334.56652087458826
|
921
|
+
ik: 106.18720669788505
|
922
|
+
" u": 129.1815695315472
|
923
|
+
ja: 141.93262706771503
|
924
|
+
nn: 34.91758707609897
|
925
|
+
" r": 175.4656186617371
|
926
|
+
"t ": 434.90543385407966
|
927
|
+
ih: 13.65717482350376
|
928
|
+
hh: 18.742630692380885
|
929
|
+
un: 89.44063947548639
|
930
|
+
yi: 6.990061092120065
|
931
|
+
pa: 200.8815017172317
|
932
|
+
tu: 61.10500775275138
|
933
|
+
wk: 4.999102467641486
|
934
|
+
" k": 152.58115957848668
|
935
|
+
ec: 70.52815180214674
|
936
|
+
il: 85.24868717246358
|
937
|
+
uk: 20.66660878242808
|
938
|
+
aq: 44.99653442904865
|
939
|
+
de: 413.68769566228707
|
940
|
+
ee: 192.96314089903137
|
941
|
+
ke: 81.3541393374781
|
942
|
+
" z": 75.28605633696161
|
943
|
+
je: 98.93965844378565
|
944
|
+
" 1": 36.0809499704827
|
945
|
+
"7 ": 5.0145583613574285
|
946
|
+
in: 428.8329674261984
|
947
|
+
" l": 219.6369551061311
|
948
|
+
t3: 8.290720025575393
|
949
|
+
" y": 62.9295749852614
|
950
|
+
el: 201.03036521408364
|
951
|
+
an: 358.54612834414627
|
952
|
+
au: 59.6343214295203
|
953
|
+
wi: 28.71144331836662
|
954
|
+
gr: 29.0727864188717
|
955
|
+
ea: 63.36238862886261
|
956
|
+
td: 7.215612806946339
|
957
|
+
rr: 50.32658772782787
|
958
|
+
"y ": 93.4626427183494
|
959
|
+
ks: 8.749926650597518
|
960
|
+
" f": 344.4842920945836
|
961
|
+
we: 81.27554453378697
|
962
|
+
et: 159.5366234828288
|
963
|
+
"g ": 112.83505525605551
|
964
|
+
nk: 17.998405678848254
|
965
|
+
"f ": 27.10199933720311
|
966
|
+
do: 373.96700283743525
|
967
|
+
lr: 2.116646208855775
|
968
|
+
dy: 4.390046599403877
|
969
|
+
as: 303.06021519631696
|
970
|
+
fo: 49.62451782334426
|
971
|
+
ow: 19.034617277339336
|
972
|
+
ne: 246.72060463738828
|
973
|
+
ut: 26.15579224924431
|
974
|
+
ta: 238.86844578561025
|
975
|
+
he: 125.39241842825335
|
976
|
+
ho: 141.87547780981507
|
977
|
+
ge: 148.89670376471886
|
978
|
+
ou: 138.0928784349584
|
979
|
+
of: 73.08663924604019
|
980
|
+
ed: 55.68963360593081
|
981
|
+
" n": 553.3263991127176
|
982
|
+
lu: 46.44446778863499
|
983
|
+
ck: 16.796435795575135
|
984
|
+
hi: 36.19479730940091
|
985
|
+
ti: 134.50255671590503
|
986
|
+
ts: 18.434670863320434
|
987
|
+
av: 48.75228042266268
|
988
|
+
da: 293.7666341745729
|
989
|
+
sh: 37.0537248920122
|
990
|
+
sm: 15.01172677383429
|
991
|
+
me: 323.4355482979023
|
992
|
+
rn: 24.84277619952628
|
993
|
+
sa: 264.95977905816284
|
994
|
+
id: 58.036153368623005
|
995
|
+
"no": 250.44490414373854
|
996
|
+
nc: 34.30805346662088
|
997
|
+
vo: 150.16308825143878
|
998
|
+
ic: 82.34737114486727
|
999
|
+
"5 ": 8.053175692858877
|
1000
|
+
ye: 28.554456562146054
|
1001
|
+
ok: 65.34661603856446
|
1002
|
+
"w ": 26.35463097823613
|
1003
|
+
ep: 24.362451218821914
|
1004
|
+
uy: 5.51831517470732
|
1005
|
+
" 3": 9.131458650864655
|
1006
|
+
rs: 55.907225617963135
|
1007
|
+
"h ": 100.57869366697206
|
1008
|
+
va: 138.10815857290598
|
1009
|
+
ca: 179.40080907516412
|
1010
|
+
ga: 97.46283928036839
|
1011
|
+
mp: 44.51213503798054
|
1012
|
+
" e": 509.60917925398627
|
1013
|
+
ii: 52.12068451310188
|
1014
|
+
" c": 351.20997689143155
|
1015
|
+
gu: 93.39289268523113
|
1016
|
+
tt: 34.07270552453623
|
1017
|
+
ur: 61.730988631535325
|
1018
|
+
am: 180.54516610578912
|
1019
|
+
cu: 89.04036366351988
|
1020
|
+
ey: 13.488106175703896
|
1021
|
+
ot: 44.82302219186315
|
1022
|
+
it: 109.89820831378981
|
1023
|
+
lo: 157.5778527473577
|
1024
|
+
eb: 57.34913756289894
|
1025
|
+
iv: 28.784244257196523
|
1026
|
+
ro: 211.57060598029506
|
1027
|
+
og: 53.11816679258078
|
1028
|
+
fa: 79.19216707865856
|
1029
|
+
al: 296.40025526679625
|
1030
|
+
eg: 90.95069537499437
|
1031
|
+
hm: 8.887425099534468
|
1032
|
+
kn: 6.985649004525349
|
1033
|
+
my: 4.682239340021529
|
1034
|
+
ad: 146.2211026685999
|
1035
|
+
um: 97.49522510889224
|
1036
|
+
gh: 4.43912218613675
|
1037
|
+
ak: 77.7890649085351
|
1038
|
+
po: 116.16914548903544
|
1039
|
+
od: 46.6307135111445
|
1040
|
+
ir: 124.5254861102999
|
1041
|
+
so: 129.9413269522341
|
1042
|
+
"70": 2.999999999998018
|
1043
|
+
"0 ": 23.75697324201678
|
1044
|
+
" q": 280.8235456224138
|
1045
|
+
ue: 306.52059342682946
|
1046
|
+
bo: 66.60760032837547
|
1047
|
+
ui: 133.1017116560693
|
1048
|
+
uu: 32.283230904152205
|
1049
|
+
ve: 138.17380671414773
|
1050
|
+
wa: 39.64411390934733
|
1051
|
+
yw: 3.8150595507906313e-13
|
1052
|
+
oz: 3.9963395115104245
|
1053
|
+
zy: 2.4896556180245524
|
1054
|
+
om: 180.83575487934866
|
1055
|
+
cr: 26.971116504150455
|
1056
|
+
ym: 0.0001012547709840739
|
1057
|
+
ux: 1.9928022139532506
|
1058
|
+
ly: 3.2234135423504475
|
1059
|
+
"l ": 183.62338872927566
|
1060
|
+
ig: 71.24563980800247
|
1061
|
+
oy: 9.138634523692367
|
1062
|
+
la: 219.16032365820897
|
1063
|
+
mm: 26.345342576594533
|
1064
|
+
yb: 1.0534483503623926
|
1065
|
+
us: 139.707321764768
|
1066
|
+
bi: 78.80758257306245
|
1067
|
+
ff: 28.234131026705185
|
1068
|
+
lc: 3.183703399900878
|
1069
|
+
pu: 27.557273415141772
|
1070
|
+
sc: 38.65864792041982
|
1071
|
+
ol: 108.44210787622855
|
1072
|
+
co: 329.75206958358683
|
1073
|
+
fe: 40.46875345168646
|
1074
|
+
if: 8.328371944234343
|
1075
|
+
ni: 99.93934546451453
|
1076
|
+
ag: 73.03286684764221
|
1077
|
+
cl: 23.49796183677115
|
1078
|
+
" 2": 21.17815966072542
|
1079
|
+
"72": 2.0878891399553684e-09
|
1080
|
+
09: 9.670173879360599e-08
|
1081
|
+
zo: 27.723835891077478
|
1082
|
+
ij: 89.2966566520424
|
1083
|
+
jo: 51.30296324807592
|
1084
|
+
go: 91.55980042853089
|
1085
|
+
ba: 92.36350196739161
|
1086
|
+
na: 193.0733611397102
|
1087
|
+
pe: 115.23316352546354
|
1088
|
+
pi: 42.794199803510985
|
1089
|
+
op: 48.82469526180861
|
1090
|
+
ph: 4.707932085862331
|
1091
|
+
iq: 4.00006845098156
|
1092
|
+
sk: 12.575468091450764
|
1093
|
+
tr: 77.11128671157824
|
1094
|
+
"b ": 31.830690395383634
|
1095
|
+
za: 30.041365329607327
|
1096
|
+
lt: 49.33366469143058
|
1097
|
+
hu: 46.12183651194061
|
1098
|
+
rk: 6.849235787259321
|
1099
|
+
"4 ": 6.539538532268955
|
1100
|
+
"21": 4.999910149410373
|
1101
|
+
"22": 1.9998954569743033
|
1102
|
+
l2: 0.9999106725313057
|
1103
|
+
"3 ": 14.13935322488576
|
1104
|
+
os: 146.20942793794228
|
1105
|
+
tc: 2.1403985092181865
|
1106
|
+
at: 138.98793769913365
|
1107
|
+
ch: 174.28014064134928
|
1108
|
+
ab: 74.25231479120536
|
1109
|
+
ld: 25.699995693172866
|
1110
|
+
ty: 1.1115928917287798
|
1111
|
+
xx: 2.2172643322436407
|
1112
|
+
fr: 15.39595164451957
|
1113
|
+
ci: 75.5129270670942
|
1114
|
+
ia: 119.02751773200772
|
1115
|
+
dh: 4.000207184213862
|
1116
|
+
"z ": 48.5712957621508
|
1117
|
+
mh: 2.6654247363924366
|
1118
|
+
pl: 16.054374099833236
|
1119
|
+
mu: 58.10616999101322
|
1120
|
+
ov: 20.479338175795796
|
1121
|
+
az: 54.93278655773319
|
1122
|
+
" x": 22.59433194220237
|
1123
|
+
uf: 6.658259776706018
|
1124
|
+
lw: 8.471252235421811e-08
|
1125
|
+
lv: 9.978584656364541
|
1126
|
+
lm: 31.657212173913685
|
1127
|
+
ao: 38.191141190575024
|
1128
|
+
br: 72.8949160607321
|
1129
|
+
tw: 22.92146020213449
|
1130
|
+
"10": 6.036539252048332
|
1131
|
+
kr: 5.95412647401364
|
1132
|
+
uc: 26.3284409016866
|
1133
|
+
rd: 64.48325324422302
|
1134
|
+
rl: 16.629480754206288
|
1135
|
+
hl: 2.7887694998179238
|
1136
|
+
ze: 57.43929004854869
|
1137
|
+
ko: 36.43935960833359
|
1138
|
+
ya: 71.98160113780114
|
1139
|
+
zn: 2.00135197530961
|
1140
|
+
yu: 9.546499507239991
|
1141
|
+
tm: 10.983718657519999
|
1142
|
+
xa: 7.970372119792561
|
1143
|
+
lh: 37.999990777303296
|
1144
|
+
qu: 331.75378376093437
|
1145
|
+
oa: 27.095660757128122
|
1146
|
+
"2 ": 22.12777422177145
|
1147
|
+
zk: 4.999998936159675
|
1148
|
+
1k: 1.9999997894260997
|
1149
|
+
lz: 2.0115699445327553
|
1150
|
+
aw: 9.50692937832963
|
1151
|
+
ww: 10.553360088841215
|
1152
|
+
vi: 73.92213784941619
|
1153
|
+
ht: 29.653743952469824
|
1154
|
+
ev: 80.97992708250614
|
1155
|
+
sw: 5.468162887997281
|
1156
|
+
ry: 8.713062197848268
|
1157
|
+
du: 31.55013735712594
|
1158
|
+
ib: 10.168598230714826
|
1159
|
+
bl: 42.45356621200007
|
1160
|
+
ei: 147.54881398370375
|
1161
|
+
ob: 26.37731565785465
|
1162
|
+
io: 71.94590510369974
|
1163
|
+
ys: 3.8765950394100397
|
1164
|
+
ek: 31.49973260942074
|
1165
|
+
ku: 22.992551878027697
|
1166
|
+
ft: 5.945082416655421
|
1167
|
+
rg: 24.114306268283226
|
1168
|
+
gg: 12.11285803609721
|
1169
|
+
w1: 4.568289913212612e-15
|
1170
|
+
3s: 4.568289913212612e-15
|
1171
|
+
af: 26.373169452747756
|
1172
|
+
hy: 1.0099154870588987
|
1173
|
+
gi: 33.66949966697526
|
1174
|
+
aj: 27.650284171084348
|
1175
|
+
vr: 23.999306257818777
|
1176
|
+
iz: 40.93847144166786
|
1177
|
+
wt: 1.0017147029905515
|
1178
|
+
ds: 8.928256441357576
|
1179
|
+
xp: 1.1109704679259886
|
1180
|
+
ef: 7.1127511864887465
|
1181
|
+
ms: 74.56048443548319
|
1182
|
+
gs: 4.291572439505757
|
1183
|
+
wn: 1.1572941127009173
|
1184
|
+
" 0": 5.968761042940301
|
1185
|
+
tp: 1.4264677309648596e-08
|
1186
|
+
ns: 69.440923830717
|
1187
|
+
up: 13.782558416570339
|
1188
|
+
mb: 48.93698279176171
|
1189
|
+
ex: 15.175265806374714
|
1190
|
+
"c ": 56.46987935749646
|
1191
|
+
tb: 15.701061984295084
|
1192
|
+
sn: 9.190118189776772
|
1193
|
+
oj: 14.800047040685572
|
1194
|
+
nh: 107.99999720492173
|
1195
|
+
"15": 3.129970215797232
|
1196
|
+
"38": 1.0
|
1197
|
+
"87": 3.0
|
1198
|
+
"63": 4.0
|
1199
|
+
"41": 3.421424444881702
|
1200
|
+
pt: 5.993430245216205
|
1201
|
+
fl: 63.70240265948355
|
1202
|
+
pc: 62.801275137418706
|
1203
|
+
nl: 63.29253171903547
|
1204
|
+
ru: 35.97926540426322
|
1205
|
+
ew: 9.768867046910367
|
1206
|
+
rc: 15.812225997841697
|
1207
|
+
fi: 87.92642355585335
|
1208
|
+
"30": 3.6835663210086023
|
1209
|
+
fu: 16.433239511548265
|
1210
|
+
oe: 57.10385054045834
|
1211
|
+
ae: 11.218454845539561
|
1212
|
+
rf: 2.8045127320757457
|
1213
|
+
bg: 2.99999673524456
|
1214
|
+
oh: 18.62557546551521
|
1215
|
+
2m: 1.000000182510547
|
1216
|
+
2h: 2.1856072360553993e-16
|
1217
|
+
" 4": 6.005191438036779
|
1218
|
+
hr: 2.992295391639047
|
1219
|
+
2d: 1.5713758009495623e-08
|
1220
|
+
su: 46.280648925794935
|
1221
|
+
vd: 4.9999913275762635
|
1222
|
+
eo: 11.701284414534243
|
1223
|
+
pp: 10.373522611969761
|
1224
|
+
tl: 6.109296299628705
|
1225
|
+
"1 ": 21.355573610943395
|
1226
|
+
" 9": 3.997989652163233
|
1227
|
+
rv: 4.876276083102385
|
1228
|
+
by: 3.343400054608476
|
1229
|
+
oc: 62.384621371182135
|
1230
|
+
mn: 18.825311662915603
|
1231
|
+
sb: 9.94595232716461
|
1232
|
+
zi: 41.81591269169355
|
1233
|
+
jn: 16.914170100215742
|
1234
|
+
nw: 1.9999994802378473
|
1235
|
+
nj: 3.99089584502582
|
1236
|
+
wr: 1.506870720545071
|
1237
|
+
hd: 6.5934592501086975
|
1238
|
+
1s: 4.614478611382671e-08
|
1239
|
+
wh: 10.360685948857384
|
1240
|
+
hs: 10.453656817243495
|
1241
|
+
zt: 2.999992086404205
|
1242
|
+
lb: 0.009735321540194759
|
1243
|
+
ua: 83.52767025850986
|
1244
|
+
xc: 0.6854111041756203
|
1245
|
+
mr: 7.578054567592654
|
1246
|
+
zu: 1.9999999999961449
|
1247
|
+
uv: 11.994288051301693
|
1248
|
+
"8 ": 2.5858877677397265
|
1249
|
+
fg: 2.5800511420894847
|
1250
|
+
ct: 9.38427613433976
|
1251
|
+
dt: 2.7801412808209065
|
1252
|
+
gt: 27.29917690844383
|
1253
|
+
kk: 214.29354973477666
|
1254
|
+
ug: 20.373900784129408
|
1255
|
+
eh: 19.434179844251272
|
1256
|
+
zl: 6.786217390179215
|
1257
|
+
dm: 10.764299106670936
|
1258
|
+
jk: 11.365757968523923
|
1259
|
+
oi: 75.28194019685738
|
1260
|
+
zc: 1.9999999405307534
|
1261
|
+
2n: 1.4140030610683994e-05
|
1262
|
+
ls: 7.569270907008195
|
1263
|
+
ap: 49.514137373234945
|
1264
|
+
mk: 1.0059560975918211
|
1265
|
+
ip: 17.156102453429302
|
1266
|
+
gw: 0.00011882317481100015
|
1267
|
+
sl: 16.506990266146946
|
1268
|
+
yp: 1.1795022214814066
|
1269
|
+
nf: 6.554787226731312
|
1270
|
+
ez: 27.844504246943988
|
1271
|
+
fy: 2.1746156752081513e-17
|
1272
|
+
lf: 3.6090490697256503
|
1273
|
+
3l: 9.730221879448146e-11
|
1274
|
+
yy: 1.747700748968872
|
1275
|
+
yl: 4.120065706764778
|
1276
|
+
rw: 2.1019249317574786
|
1277
|
+
ws: 2.002574442989668
|
1278
|
+
tv: 6.204122932661771
|
1279
|
+
bt: 6.0722761371399185
|
1280
|
+
gn: 6.616250321284803
|
1281
|
+
nx: 2.000369207033731
|
1282
|
+
uq: 3.9999934625162314
|
1283
|
+
dn: 3.7013500808685253
|
1284
|
+
dd: 8.039136572248461
|
1285
|
+
cs: 13.786303579898705
|
1286
|
+
dj: 9.405060955680225
|
1287
|
+
lg: 25.99999152277232
|
1288
|
+
ka: 84.46066601625554
|
1289
|
+
pf: 4.999999984697342
|
1290
|
+
"33": 30.946417861461317
|
1291
|
+
dl: 1.963979628454287
|
1292
|
+
"25": 3.09389347209256e-06
|
1293
|
+
"86": 4.603072923359572e-11
|
1294
|
+
ub: 25.75781829330642
|
1295
|
+
c2: 8.402808393303076e-07
|
1296
|
+
mt: 11.959715134205302
|
1297
|
+
mv: 2.9999999913649966
|
1298
|
+
dg: 5.167696890592032e-08
|
1299
|
+
sf: 5.999998317534318
|
1300
|
+
nb: 4.032863935430242
|
1301
|
+
hk: 1.0005712278091126
|
1302
|
+
lj: 0.9999999999228611
|
1303
|
+
jd: 3.116625140533076
|
1304
|
+
bb: 19.399902928291514
|
1305
|
+
dc: 2.7140353067455134
|
1306
|
+
dk: 1.0000000001271927
|
1307
|
+
"20": 7.9999769525302735
|
1308
|
+
ps: 9.553311450938786
|
1309
|
+
"j ": 49.345810538917
|
1310
|
+
sg: 3.116893387760168
|
1311
|
+
nv: 4.868771424094903
|
1312
|
+
cc: 2.6898395704721785
|
1313
|
+
"18": 0.985587041478893
|
1314
|
+
"9 ": 6.0018206221334705
|
1315
|
+
xy: 2.977300286418459e-06
|
1316
|
+
mf: 1.002031642216509
|
1317
|
+
ji: 14.999841397887128
|
1318
|
+
t7: 1.9997360655726948
|
1319
|
+
"11": 7.04866966823131
|
1320
|
+
"23": 2.0000031722018745
|
1321
|
+
kd: 4.574382599078532e-05
|
1322
|
+
sy: 4.500078643021389
|
1323
|
+
"42": 1.2706689548026072e-07
|
1324
|
+
sj: 4.921741875753784
|
1325
|
+
3d: 3.0086598670874567
|
1326
|
+
"50": 6.002516766845795
|
1327
|
+
xd: 7.566265639154718
|
1328
|
+
py: 1.2072593221236665
|
1329
|
+
rq: 6.999999999982828
|
1330
|
+
"80": 1.0000000001329472
|
1331
|
+
o2: 1.0
|
1332
|
+
"60": 2.000003685314471
|
1333
|
+
4e: 1.0
|
1334
|
+
yn: 2.997375487761609
|
1335
|
+
yc: 1.0047504788807118
|
1336
|
+
jt: 2.9999752983774863
|
1337
|
+
sd: 14.806752870218496
|
1338
|
+
tj: 16.999950754848705
|
1339
|
+
yf: 2.864145749095499
|
1340
|
+
gb: 1.9999169472990248
|
1341
|
+
"16": 3.7167698943133683e-06
|
1342
|
+
oq: 18.999965428057646
|
1343
|
+
kl: 12.072484766442459
|
1344
|
+
kt: 15.94101907172955
|
1345
|
+
np: 3.6800209599009426
|
1346
|
+
uz: 8.50529726414854
|
1347
|
+
xt: 10.329728073851596
|
1348
|
+
hb: 0.9598498304647146
|
1349
|
+
pj: 1.6314043357481745
|
1350
|
+
lk: 6.18072897339392
|
1351
|
+
bs: 14.887822482121127
|
1352
|
+
ox: 9.758724725181198
|
1353
|
+
7u: 1.0
|
1354
|
+
qo: 1.9998416701655373
|
1355
|
+
"q ": 25.669754939370417
|
1356
|
+
7a: 2.0
|
1357
|
+
" 7": 7.778598302648249
|
1358
|
+
jh: 3.132154515871127
|
1359
|
+
"v ": 13.753673717417787
|
1360
|
+
yt: 1.0152851054321712e-06
|
1361
|
+
"00": 11.18101480488832
|
1362
|
+
kp: 4.81158548562328
|
1363
|
+
sr: 7.761558453079423
|
1364
|
+
rj: 3.9992340147146885
|
1365
|
+
kf: 1.0098366871726672
|
1366
|
+
cy: 1.9283104009962675
|
1367
|
+
ix: 12.004706943430994
|
1368
|
+
bc: 0.0012565606131507473
|
1369
|
+
"24": 1.9981593145775924
|
1370
|
+
fs: 2.9999997396889917
|
1371
|
+
tf: 5.629585027322261e-06
|
1372
|
+
gy: 4.040418259274554
|
1373
|
+
jv: 6.999987689096603
|
1374
|
+
tg: 4.3907770532844514
|
1375
|
+
km: 6.9962859945845155
|
1376
|
+
iy: 8.843426162663151
|
1377
|
+
wy: 0.9025197712262166
|
1378
|
+
kc: 6.110999868410494
|
1379
|
+
yh: 1.614265855927527
|
1380
|
+
bd: 1.8707659149044538
|
1381
|
+
gk: 3.9999999370125368
|
1382
|
+
rz: 3.999338151876382
|
1383
|
+
fb: 1.0002855126146393
|
1384
|
+
cd: 1.1924855255886059e-10
|
1385
|
+
rb: 2.939292173936312
|
1386
|
+
pm: 2.427265087264434e-10
|
1387
|
+
7m: 1.900284065520078e-11
|
1388
|
+
pn: 1.9999989886413645
|
1389
|
+
zb: 1.0003277690082362
|
1390
|
+
lp: 5.067360832312049
|
1391
|
+
z3: 1.969310010022376e-07
|
1392
|
+
ln: 2.0000059150227627
|
1393
|
+
tn: 7.022968735344125
|
1394
|
+
4m: 4.450487313008875e-16
|
1395
|
+
"17": 2.00002851247586
|
1396
|
+
bh: 2.8795256174268786
|
1397
|
+
g3: 2.4923964875275505e-10
|
1398
|
+
" 8": 2.201813598936624
|
1399
|
+
"81": 5.3350071782506944e-11
|
1400
|
+
r8: 5.190663968060967e-10
|
1401
|
+
wl: 3.6800929709518853
|
1402
|
+
zz: 6.6655700024534115
|
1403
|
+
sz: 10.999971423524876
|
1404
|
+
tk: 4.999999999988497
|
1405
|
+
dp: 2.0000544079933054
|
1406
|
+
7p: 1.0
|
1407
|
+
"01": 2.990203036764262e-05
|
1408
|
+
hj: 4.999998614231489
|
1409
|
+
mw: 0.00023779951170744008
|
1410
|
+
bm: 8.890565195703376
|
1411
|
+
ej: 9.981563026341018
|
1412
|
+
qe: 7.999999998006979
|
1413
|
+
wu: 1.2667535108410753e-08
|
1414
|
+
md: 2.902969943308923
|
1415
|
+
gp: 1.0000000374201738
|
1416
|
+
nq: 3.9993723334620706
|
1417
|
+
uo: 2.9999900172006426
|
1418
|
+
bj: 4.9831790491590215
|
1419
|
+
fd: 6.999879994950049
|
1420
|
+
iu: 22.994307048667356
|
1421
|
+
gd: 4.9879596238460255
|
1422
|
+
jw: 0.9998472756747894
|
1423
|
+
wd: 2.913881302384796e-08
|
1424
|
+
hz: 2.771042731875906e-09
|
1425
|
+
"90": 1.0000004389522792
|
1426
|
+
"89": 0.9999999944484347
|
1427
|
+
7r: 0.9999999944484347
|
1428
|
+
"67": 0.9999999944484347
|
1429
|
+
ky: 1.9765343176877879
|
1430
|
+
9t: 4.807892733776273e-11
|
1431
|
+
5h: 9.628588267763966e-21
|
1432
|
+
"37": 0.9999999999803968
|
1433
|
+
5m: 0.9999999023699822
|
1434
|
+
4a: 0.9999999999947035
|
1435
|
+
0d: 0.9999999999947035
|
1436
|
+
b7: 0.9999999999947035
|
1437
|
+
pq: 3.9999998517191577
|
1438
|
+
xo: 9.109060390764865
|
1439
|
+
"28": 0.9999999999057118
|
1440
|
+
6f: 8.751778716250808e-11
|
1441
|
+
dw: 7.155118876007492e-09
|
1442
|
+
"40": 3.0075082041081393
|
1443
|
+
ml: 3.9910037828381233
|
1444
|
+
kj: 4.9976556810334465
|
1445
|
+
uj: 2.963914793455393
|
1446
|
+
jj: 1.6365541338121385
|
1447
|
+
fh: 3.251999341127977e-09
|
1448
|
+
wq: 3.251998755313526e-09
|
1449
|
+
qa: 0.9999999948068069
|
1450
|
+
s2: 2.999999991369913
|
1451
|
+
yg: 6.934522734199514
|
1452
|
+
gq: 0.9999999999999997
|
1453
|
+
jp: 1.9999994692463758
|
1454
|
+
cm: 6.999999962812874
|
1455
|
+
xi: 10.026151214788843
|
1456
|
+
mj: 0.9999999999730359
|
1457
|
+
2e: 1.0472630972419177
|
1458
|
+
0g: 2.3527922760595657e-12
|
1459
|
+
yd: 2.000000855159774
|
1460
|
+
pz: 7.810466712918516e-07
|
1461
|
+
"26": 0.9999830345409868
|
1462
|
+
nz: 7.52137299293958
|
1463
|
+
yk: 1.9999997801112186
|
1464
|
+
h2: 8.84569273260431e-05
|
1465
|
+
bv: 1.0039427507684113
|
1466
|
+
mx: 0.9999999767887932
|
1467
|
+
rh: 2.000171095242823
|
1468
|
+
vu: 4.999999999999905
|
1469
|
+
"6 ": 8.87219711291685
|
1470
|
+
mg: 8.189983403962499e-07
|
1471
|
+
dz: 4.999793379840155
|
1472
|
+
jr: 3.0348307805392576
|
1473
|
+
jm: 2.9999748051713944
|
1474
|
+
vc: 14.999996210267884
|
1475
|
+
"44": 1.3294723883736898e-10
|
1476
|
+
"13": 2.051520244366178
|
1477
|
+
fj: 0.9999999873386429
|
1478
|
+
hf: 0.9999999873386429
|
1479
|
+
sq: 7.999221809069132
|
1480
|
+
1a: 1.596102694153985e-11
|
1481
|
+
jb: 1.9999999999960718
|
1482
|
+
9s: 5.537776118863672e-09
|
1483
|
+
bf: 2.765839985345133e-05
|
1484
|
+
xl: 4.761233753509949e-06
|
1485
|
+
pd: 1.0003227873581164
|
1486
|
+
"31": 2.0000000020150264
|
1487
|
+
"45": 2.000000000184206
|
1488
|
+
"62": 0.9999999999962794
|
1489
|
+
"02": 2.999952411973863
|
1490
|
+
"03": 0.9999999999962794
|
1491
|
+
yr: 0.990981347308382
|
1492
|
+
hw: 0.9999348604561726
|
1493
|
+
kb: 3.950761604285187
|
1494
|
+
"27": 1.7469037294338933e-06
|
1495
|
+
bz: 0.9999999996510645
|
1496
|
+
xs: 0.999999206107824
|
1497
|
+
vb: 1.8823787278111055e-13
|
1498
|
+
2s: 0.17873003511773228
|
1499
|
+
wb: 1.999999999547426
|
1500
|
+
vh: 1.0
|
1501
|
+
hg: 2.0
|
1502
|
+
cg: 1.0
|
1503
|
+
bn: 3.0009238387581614
|
1504
|
+
nm: 5.500643812696129
|
1505
|
+
"98": 0.9999999947185594
|
1506
|
+
fv: 0.9999999947185594
|
1507
|
+
y1: 1.4732147691849585e-07
|
1508
|
+
wg: 2.7588310286208927e-25
|
1509
|
+
1d: 3.1454783782337923e-10
|
1510
|
+
tz: 1.9594579968279808
|
1511
|
+
sv: 1.997183896510581
|
1512
|
+
2y: 1.7824212754377384
|
1513
|
+
s3: 1.7824212754377384
|
1514
|
+
fc: 2.000000065642008
|
1515
|
+
mc: 1.0016318504171247
|
1516
|
+
"29": 8.74049799609155e-09
|
1517
|
+
gm: 1.9999938557155394
|
1518
|
+
ax: 8.374051996689722
|
1519
|
+
g6: 2.206142050720219e-18
|
1520
|
+
o1: 3.752001399613305e-11
|
1521
|
+
xe: 5.817811324045552
|
1522
|
+
rp: 5.795070345135415
|
1523
|
+
2c: 1.3536402764210866e-11
|
1524
|
+
kg: 1.0003214202266528
|
1525
|
+
nr: 2.9999988419209735
|
1526
|
+
vn: 1.9999999987521866
|
1527
|
+
zv: 1.9999988479963782
|
1528
|
+
uw: 4.707437609214512
|
1529
|
+
kw: 1.2091001554226828
|
1530
|
+
vl: 2.002033397800034
|
1531
|
+
dv: 0.9840680029368555
|
1532
|
+
jg: 1.9999998517557578
|
1533
|
+
3a: 1.0
|
1534
|
+
yz: 2.9999998822740155
|
1535
|
+
7e: 1.0
|
1536
|
+
7o: 1.0
|
1537
|
+
7t: 1.0000003107172424
|
1538
|
+
1x: 1.9999972636445542
|
1539
|
+
eq: 0.9999999999996767
|
1540
|
+
xf: 1.4175951078586786e-12
|
1541
|
+
"14": 3.0715850454174642
|
1542
|
+
" 6": 9.232350356027843e-11
|
1543
|
+
0c: 0.9999999993143263
|
1544
|
+
0w: 0.9999999993143263
|
1545
|
+
b0: 0.9999999993143263
|
1546
|
+
kh: 0.9354190154152393
|
1547
|
+
js: 6.999956142842997
|
1548
|
+
"58": 1.999999999905691
|
1549
|
+
hp: 0.9999999999057118
|
1550
|
+
"75": 1.000001710762512
|
1551
|
+
xr: 2.224413686941645e-10
|
1552
|
+
qh: 0.9998416701655372
|
1553
|
+
2k: 0.9999999998003443
|
1554
|
+
zw: 1.999999740044379
|
1555
|
+
vj: 0.9999999838396509
|
1556
|
+
hn: 3.2759035415685305
|
1557
|
+
bw: 2.355314923132183e-06
|
1558
|
+
"54": 1.9999999999999791
|
1559
|
+
vs: 1.9785953051072749
|
1560
|
+
d1: 0.9999999999999627
|
1561
|
+
"78": 1.0048557960030506
|
1562
|
+
c0: 8.928334789765799e-17
|
1563
|
+
0k: 8.928334789765799e-17
|
1564
|
+
"06": 7.348371697009329e-16
|
1565
|
+
5t: 1.3220976205135137e-15
|
1566
|
+
vy: 4.458510580601993e-07
|
1567
|
+
0s: 1.0000000351232865
|
1568
|
+
qn: 1.9999999999999978
|
1569
|
+
"32": 1.0564647877997115e-13
|
1570
|
+
cq: 0.9999968502002304
|
1571
|
+
8p: 2.8535612614240046e-07
|
1572
|
+
"51": 0.9999999999999997
|
1573
|
+
wc: 4.4972199659321057e-10
|
1574
|
+
kz: 3.782998211599556e-09
|
1575
|
+
"34": 0.9998910696663288
|
1576
|
+
n7: 0.9999848779499653
|
1577
|
+
zd: 2.999957675080989
|
1578
|
+
vq: 0.9999999999998097
|
1579
|
+
0o: 5.0
|
1580
|
+
r6: 1.0
|
1581
|
+
o7: 1.0
|
1582
|
+
yv: 1.0000000000004179
|
1583
|
+
zs: 5.484995978743817e-06
|
1584
|
+
"99": 0.9999999999999981
|
1585
|
+
hv: 0.9999999204579904
|
1586
|
+
cj: 1.9825382194692836e-18
|
1587
|
+
n2: 7.552545485559139e-17
|
1588
|
+
0t: 7.849216329859214e-09
|
1589
|
+
2x: 0.9998812380794733
|
1590
|
+
"48": 1.0
|
1591
|
+
"71": 1.0
|
1592
|
+
f4: 1.9999975520242832
|
1593
|
+
"59": 1.9999975520242832
|
1594
|
+
cb: 5.171589953614139e-11
|
1595
|
+
df: 1.0
|
1596
|
+
hc: 0.9999999853092624
|
1597
|
+
lq: 1.0
|
1598
|
+
fk: 6.432005664720224e-06
|
1599
|
+
jf: 0.9999999999994856
|
1600
|
+
fz: 0.9999999999984711
|
1601
|
+
0b: 1.4558952221513915e-18
|
1602
|
+
fm: 4.254457737711445e-06
|
1603
|
+
gz: 0.8879708906926577
|
1604
|
+
xu: 1.99999456647687
|
1605
|
+
5b: 3.512179931328953e-12
|
1606
|
+
iw: 1.0138844251076506
|
1607
|
+
"05": 2.057729664903071e-05
|
1608
|
+
"61": 0.9997929046972669
|
1609
|
+
"57": 0.9999977884583331
|
1610
|
+
4t: 1.0
|
1611
|
+
3x: 6.874185965494264e-11
|
1612
|
+
6t: 2.079257765115432e-13
|
1613
|
+
2p: 8.666056726010578e-16
|
1614
|
+
qi: 2.0
|
1615
|
+
bk: 0.9999999992695228
|
1616
|
+
gc: 0.9999999999999729
|
1617
|
+
h6: 0.9999999999999729
|
1618
|
+
8v: 0.9999999999999729
|
1619
|
+
6m: 0.9999998408322893
|
1620
|
+
t1: 1.9146086836224406e-06
|
1621
|
+
"74": 2.6239024965554892e-18
|
1622
|
+
"19": 8.94703814294082e-08
|
1623
|
+
"91": 8.94703814294082e-08
|
1624
|
+
9p: 1.4072740508983162e-13
|
1625
|
+
c3: 1.4072740508983162e-13
|
1626
|
+
"92": 0.9999999979814831
|
1627
|
+
7d: 0.9999999979814831
|
1628
|
+
bp: 2.9999999998609885
|
1629
|
+
3f: 4.481627247949338e-25
|
1630
|
+
4i: 4.481627247949338e-25
|
1631
|
+
qq: 7.170110614753974e-06
|
1632
|
+
3n: 4.3621628149769605e-08
|
1633
|
+
1e: 0.0004153094405409563
|
1634
|
+
1c: 0.9999999999884797
|
1635
|
+
8c: 0.9999999999884797
|
1636
|
+
fn: 1.9999999999999964
|
1637
|
+
wp: 5.568389807537242e-05
|
1638
|
+
sx: 9.143950130771982e-13
|
1639
|
+
2t: 2.4139329111036775e-07
|
1640
|
+
r1: 1.0
|
1641
|
+
r7: 1.0000000000000002
|
1642
|
+
r3: 9.61265050575552e-08
|
1643
|
+
qp: 1.0
|
1644
|
+
vz: 1.9999999843397465
|
1645
|
+
"79": 1.2745656455157893e-06
|
1646
|
+
mz: 0.9999999999999997
|
1647
|
+
zp: 0.9999826446501202
|
1648
|
+
g2: 3.940351123061227e-09
|
1649
|
+
wf: 1.6885801148770593e-06
|
1650
|
+
pg: 1.1996770991757878e-10
|
1651
|
+
3b: 1.525816937801942e-16
|
1652
|
+
a3: 1.525816937801942e-16
|
1653
|
+
pk: 0.999999999984282
|
1654
|
+
x1: 1.565924120857395e-05
|
1655
|
+
total_token_counts:
|
1656
|
+
- 77982.45532324244
|
1657
|
+
- 46948.54467676733
|
1658
|
+
ngram_size: 2
|